/* ═══════════════════════════════════════════════
   EPISÈRE — BARRIER SKINCARE
   CSS Design System v2.0 — Refactored
   구조: 01 Tokens · 02 Reset · 03 Header · 04 Search
         05 Buttons · 06 Hero · 07 Ticker · 08 Sections
         09 Product Cards · 10 Single Product · 11 Cart
         12 Checkout · 13 My Account · 14 Orders · 15 Forms
         16 Footer · 17 Animations · 18 Responsive
   ★ aurae-* 네임스페이스는 하단 Legacy Aliases 에서 ep-* 와 공유
═══════════════════════════════════════════════ */

@font-face {
  font-family: 'SangBleuEmpire';
  src: url('../fonts/SangBleuEmpire-RegularItalic-WebS.woff2') format('woff2');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'SangBleuEmpire';
  src: url('../fonts/SangBleuEmpire-Medium-WebS.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ══════════════════════════════════════
   01. TOKENS
══════════════════════════════════════ */
:root {
  --ep-white: #FFFFFF;
  --ep-off: #f9f9f9;
  --ep-cream: #f7f7f7;
  --ep-light: #ededed;
  --ep-rule: #eee;
  --ep-mid: #e2e2e2;
  --ep-muted: #8E8880;
  --ep-ink: #243953;
  --ep-dark: #243953;
  --ep-accent: #243953;
  --ep-accent-light: #4E7268;
  --ep-accent-faint: #EDF2F0;
  --ep-warm: #B5A99A;
  --ep-serif: 'SangBleuEmpire', Georgia, serif;
  --ep-mono: 'DM Mono', 'Courier New', monospace;
  --ep-sans: 'IBM Plex Sans KR', 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --ep-shell: min(1280px, calc(100% - 50px));
  --ep-shadow: 0 24px 64px rgba(30, 28, 26, 0.08);
  --ep-shadow-sm: 0 8px 24px rgba(30, 28, 26, 0.06);

  /* WooCommerce form overrides */
  --wc-form-color-background: var(--ep-off);
  --wc-form-border-width: 1px;
  --wc-form-border-color: var(--ep-rule);
  --wc-form-border-radius: 0px;
  --wc-form-color-text: var(--ep-ink);
}

/* ══════════════════════════════════════
   02. RESET & BASE
══════════════════════════════════════ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ep-white);
  color: var(--ep-ink);
  font-family: var(--ep-sans);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.56;
}

a {
  color: inherit;
  text-decoration: none;
  transition:
    color .5s cubic-bezier(.22, 1, .36, 1),
    opacity .5s cubic-bezier(.22, 1, .36, 1),
    border-color .5s cubic-bezier(.22, 1, .36, 1),
    background-color .5s cubic-bezier(.22, 1, .36, 1);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  transition: transform .65s cubic-bezier(.22, 1, .36, 1),
    opacity .5s cubic-bezier(.22, 1, .36, 1);
}

.ep-shell {
  width: var(--ep-shell);
  margin: 0 auto;
}

.ep-lock {
  overflow: hidden;
}

/* Grain overlay */
/* .ep-grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: .025;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
} */

/* Kicker */
.ep-kicker {
  /*font-family: var(--ep-mono);*/
  font-size: 9px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--ep-muted);
  margin: 0 0 16px;
  display: block;
}

/* body lock */
body.aurae-lock,
body.ep-lock,
body.search-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

/* ══════════════════════════════════════
   03. HEADER & NAVIGATION
══════════════════════════════════════ */
.ep-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 20px 0;
  transition: transform .45s cubic-bezier(.22, 1, .36, 1), padding .5s cubic-bezier(.22, 1, .36, 1);
  transform: translate3d(0, 0, 0);
  will-change: transform;
}


.ep-header.is-hidden {
  transform: translate3d(0, -110%, 0);
}

.ep-header.is-scrolled:not(.is-hidden) {
  transform: translate3d(0, 0, 0);
}

.ep-header__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 160px 1fr auto;
  align-items: center;
  gap: 24px;
}

/* Logo */
/* .ep-logo {
  font-family: var(--ep-serif);
  font-size: 26px;
  font-weight: 300;
  font-style: italic;
  letter-spacing: .02em;
  color: var(--ep-dark);
  line-height: 1;
  transition: color .45s cubic-bezier(.22, 1, .36, 1);
}

.ep-logo .ep-accent {
  color: var(--ep-accent);
}

.ep-logo--footer {
  font-size: 30px;
  color: var(--ep-white);
} */

/* Nav */
.ep-nav {
  display: flex;
  justify-content: center;
}

.ep-menu {
  display: flex;
  gap: 0;
  list-style: none;
  padding: 0;
  margin: 0;
}

.ep-menu li a {
  /*font-family: var(--ep-mono);*/
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ep-muted);
  padding: 8px 16px;
  display: block;
  position: relative;
  transition: color .2s;
}

.ep-menu li a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 16px;
  right: 16px;
  height: 1px;
  background: var(--ep-accent);
  transform: scaleX(0);
  transition: transform .3s cubic-bezier(.22, 1, .36, 1);
}

.ep-menu li a:hover {
  color: var(--ep-dark);
}

.ep-menu li a:hover::after {
  transform: scaleX(1);
}

.ep-menu li.current-menu-item a {
  color: var(--ep-accent);
}

.ep-menu li.current-menu-item a::after {
  transform: scaleX(1);
}

/* Header actions */
.ep-header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
}

.ep-icon-btn {
  width: 36px;
  height: 36px;
  border: 1px solid transparent;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--ep-ink);
  position: relative;
  flex-shrink: 0;
  transition: color .45s;
}

.ep-icon-btn:hover {
  background: transparent;
  border-color: transparent;
  transform: none;
}

/* CSS icon shapes */
.aurae-icon-search,
.aurae-icon-account,
.aurae-icon-bag {

  width: 24px;
  height: 24px;
  position: relative;
  display: inline-block;
  flex-shrink: 0;
}

/* 
.aurae-icon-search::before {
  content: '';
  position: absolute;
  inset: 1px 4px 4px 1px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
}

.aurae-icon-search::after {
  content: '';
  position: absolute;
  width: 6px;
  height: 1.5px;
  background: currentColor;
  right: 0;
  bottom: 1px;
  transform: rotate(45deg);
}

.aurae-icon-user::before {
  content: '';
  position: absolute;
  width: 7px;
  height: 7px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  left: 50%;
  top: 1px;
  transform: translateX(-50%);
}

.aurae-icon-user::after {
  content: '';
  position: absolute;
  width: 12px;
  height: 6px;
  border: 1.5px solid currentColor;
  border-bottom: 0;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}

.aurae-icon-bag::before {
  content: '';
  position: absolute;
  inset: 5px 2px 1px;
  border: 1.5px solid currentColor;
  border-radius: 2px;
}

.aurae-icon-bag::after {
  content: '';
  position: absolute;
  width: 8px;
  height: 5px;
  border: 1.5px solid currentColor;
  border-bottom: 0;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  left: 4px;
  top: 1px;
} */

/* Cart badge */
/* .ep-cart-count {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--ep-accent);
  color: white;
  font-size: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
} */

/* Header color: hero위 (흰색) */
/* .ep-header .ep-logo,
.ep-header .ep-menu li a,
.ep-header .ep-icon-btn,
.ep-header .ep-mobile-toggle {
  transition: color .45s cubic-bezier(.22, 1, .36, 1), background-color .45s, border-color .45s, opacity .45s;
} */


/* Mobile toggle */
.ep-mobile-toggle {
  appearance: none;
  border: 1px solid transparent;
  background: transparent;
  color: var(--ep-ink);
  display: inline-flex;
  width: 36px;
  height: 36px;
  padding: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-radius: 50%;
  transition: background .35s cubic-bezier(.22, 1, .36, 1), border-color .35s;
  cursor: pointer;
  flex-shrink: 0;
}

.ep-mobile-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  background: currentColor;
}

.ep-mobile-toggle:hover {
  background: rgba(255, 255, 255, .7);
  border-color: var(--ep-rule);
}



/* Mobile panel */
.ep-mobile-panel {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(30, 28, 26, .45);
  opacity: 0;
  pointer-events: none;
  transition: opacity .45s cubic-bezier(.22, 1, .36, 1);
}

.ep-mobile-panel.is-active {
  opacity: 1;
  pointer-events: auto;
}

.ep-mobile-panel__inner {
  width: min(560px, 100%);
  height: 100%;
  background: var(--ep-off);
  padding: 32px 28px;
  transform: translate3d(100%, 0, 0);
  transition: transform .6s cubic-bezier(.16, 1, .3, 1);
  box-shadow: -20px 0 60px rgba(30, 28, 26, .14);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  margin-left: auto;
  will-change: transform;
}

.ep-mobile-panel.is-active .ep-mobile-panel__inner {
  transform: translate3d(0, 0, 0);
}

@media (max-width: 640px) {
  .ep-mobile-panel__inner {
    width: 100%;
  }
}

.ep-mobile-panel__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--ep-rule);
  padding-bottom: 20px;
  margin-bottom: 32px;
}

.ep-mobile-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ep-mobile-menu li a {
  /*font-family: var(--ep-mono);*/
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ep-muted);
  padding: 16px 0;
  border-bottom: 1px solid var(--ep-rule);
  display: block;
  transition: color .2s;
}

.ep-mobile-menu li a:hover {
  color: var(--ep-accent);
}

/* Close buttons */
.ep-close-btn {
  appearance: none;
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: opacity .2s;
  flex-shrink: 0;
}

.ep-close-btn:hover {
  opacity: .55;
}

.ep-close-icon {
  display: block;
  width: 16px;
  height: 16px;
  object-fit: contain;
  filter: invert(15%) sepia(8%) saturate(400%) hue-rotate(10deg);
}

.ep-mobile-close,
.ep-search-close {
  appearance: none;
  border: none;
  background: transparent;
  padding: 6px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: opacity .2s;
}

.ep-mobile-close:hover,
.ep-search-close:hover {
  opacity: .55;
}

.ep-mobile-close.ep-close-btn,
.ep-mobile-close.ep-close-btn:hover {
  border: none;
}

.ep-mobile-close.ep-close-btn {
  margin-right: -10px;
  margin-top: -5px;
}

.ep-close-btn--box {
  border: 1px solid var(--ep-rule);
  width: 32px;
  height: 32px;
  padding: 7px;
  background: transparent;
  transition: border-color .2s, opacity .2s;
}

.ep-close-btn--box:hover {
  border-color: var(--ep-ink);
  opacity: 1;
}

.ep-close-btn--box .ep-close-icon {
  width: 14px;
  height: 14px;
}

/* Search overlay top alignment */
.ep-search-overlay__top {
  align-items: center;
  width: 100%;
}

.ep-search-close {
  position: relative;
  top: -7px;
  flex-shrink: 0;
}

/* ══════════════════════════════════════
   04. SEARCH OVERLAY
══════════════════════════════════════ */
.ep-search-overlay {
  position: fixed;
  inset: 0;
  z-index: 250;
  background: rgba(30, 28, 26, .45);
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s cubic-bezier(.22, 1, .36, 1);
}

.ep-search-overlay.is-active {
  opacity: 1;
  pointer-events: auto;
}

.ep-search-overlay__inner {
  position: absolute;
  top: 80px;
  left: 50%;
  width: min(720px, calc(100% - 48px));
  transform: translateX(-50%) translateY(-16px);
  background: rgba(247, 246, 244, .98);
  backdrop-filter: blur(16px);
  border: 1px solid var(--ep-rule);
  padding: 36px 40px;
  opacity: 0;
  transition: transform .5s cubic-bezier(.22, 1, .36, 1), opacity .45s cubic-bezier(.22, 1, .36, 1);
}

.ep-search-overlay.is-active .ep-search-overlay__inner {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.ep-search-overlay__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.ep-search-form {
  display: flex;
  gap: 12px;
  align-items: stretch;
  width: 100%;
  flex: 1;
}

.ep-search-form .search-field {
  background: none;
  border: none;
  border-bottom: 1px solid var(--ep-rule);
  /* font-family: var(--ep-serif);
  font-size: 22px;
  font-style: italic; */
  color: var(--ep-ink);
  padding: 8px 0;
  outline: none;
  transition: border-color .2s;
  flex: 1 1 0%;
  min-width: 0;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
}

.ep-search-form .search-field::-webkit-search-cancel-button,
.ep-search-form .search-field::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
  appearance: none;
  display: none;
}

.ep-search-form .search-field:focus {
  border-color: var(--ep-accent);
}

.ep-search-form .search-field::placeholder {
  color: var(--ep-mid);
}

.ep-search-form button[type="submit"] {
  /*font-family: var(--ep-mono);*/
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ep-white);
  background: var(--ep-accent);
  border: 1px solid var(--ep-accent);
  padding: 0 20px;
  cursor: pointer;
  transition: background .2s;
  flex: 0 0 auto;
  white-space: nowrap;
}

.ep-search-form button[type="submit"]:hover {
  background: var(--ep-accent-light);
}

[data-search-open] {
  cursor: pointer;
}

/* ══════════════════════════════════════
   05. BUTTONS
══════════════════════════════════════ */
.aurae-button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
#ep .button:not(.ep-close-btn):not(.ep-qty-btn):not(.ep-pw-toggle):not(.ep-ms-btn),
.woocommerce .button:not(.ep-close-btn):not(.ep-qty-btn):not(.ep-pw-toggle):not(.ep-ms-btn) {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  /*font-family: var(--ep-mono);*/
  /* font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ep-white); */
  background: var(--ep-accent);
  color: var(--ep-white);
  /* border: 1px solid var(--ep-accent); */
  padding: 14px 32px;
  min-height: 48px;
  border-radius: 0;
  line-height: 1;
  cursor: pointer;
  transition: background .45s cubic-bezier(.22, 1, .36, 1), border-color .45s, transform .45s, box-shadow .45s;
  font-weight: 500;
  letter-spacing: .5px;
  border-radius: 500px;
  font-size: 14px;
}

.aurae-button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover,
.button:not(.ep-close-btn):not(.ep-qty-btn):not(.ep-pw-toggle):not(.ep-ms-btn):hover {
  color: var(--ep-white);
  background: var(--ep-accent-light);
  border-color: var(--ep-accent-light);
  /* transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(61, 90, 82, .2); */
}

.aurae-button--ghost,
.woocommerce a.button.alt {
  background: transparent;
  color: var(--ep-ink);
  border-color: var(--ep-ink);
}

.aurae-button--ghost:hover,
.woocommerce a.button.alt:hover {
  background: var(--ep-ink);
  color: white;
  border-color: var(--ep-ink);
}

.aurae-button--dark-ghost {
  background: transparent;
  color: rgba(255, 255, 255, .6);
  border: 1px solid rgba(255, 255, 255, .18);
}

.aurae-button--dark-ghost:hover {
  color: white;
  border-color: rgba(255, 255, 255, .45);
  transform: translateY(-1px);
}

/* ══════════════════════════════════════
   06. HERO & MANIFESTO & SECTIONS
══════════════════════════════════════ */

/* ══════════════════════════════════════
   07. TICKER
══════════════════════════════════════ */


/* ══════════════════════════════════════
   08. PRODUCT CARDS
══════════════════════════════════════ */
.woocommerce ul.products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
  display: none;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  width: auto;
  float: none;
  margin: 0;
}

.aurae-product-card {
  background: var(--ep-white);
  border: 1px solid var(--ep-rule);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform .55s cubic-bezier(.22, 1, .36, 1), box-shadow .55s, border-color .55s;
}

.aurae-product-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--ep-shadow);
  border-color: transparent;
}

.aurae-product-card__media {
  aspect-ratio: 1/1;
  background: linear-gradient(180deg, var(--ep-light) 0%, var(--ep-cream) 100%);
  overflow: hidden;
}

.aurae-product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .75s cubic-bezier(.22, 1, .36, 1);
}

.aurae-product-card:hover .aurae-product-card__media img {
  transform: scale(1.04);
}

.aurae-product-card__body {
  padding: 24px 24px 16px;
  flex: 1;
  border-top: 1px solid var(--ep-rule);
}

/* .aurae-product-card .woocommerce-loop-product__title {
  font-family: var(--ep-serif);
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 300;
  font-style: italic;
  letter-spacing: -.01em;
  line-height: 1.08;
  color: var(--ep-dark);
  margin: 0 0 10px;
} */

.aurae-product-card .price {
  /*font-family: var(--ep-mono);*/
  font-size: 12px;
  letter-spacing: .08em;
  color: var(--ep-muted);
}

.aurae-product-card .price ins {
  text-decoration: none;
}

.aurae-product-card .price del {
  opacity: .45;
  margin-right: 6px;
}

.aurae-product-card__actions {
  padding: 0 24px 24px;
  margin-top: auto;
}

.woocommerce ul.products li.product .button {
  width: 100%;
  text-align: center;
  margin-top: 0;
}

/* Tiers */
.aurae-tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.aurae-tier-card {
  background: var(--ep-white);
  border: 1px solid var(--ep-rule);
  padding: 44px 36px;
  transition: transform .35s cubic-bezier(.22, 1, .36, 1), box-shadow .35s;
}

.aurae-tier-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--ep-shadow);
}

.aurae-tier-card--featured {
  background: var(--ep-dark);
  border-color: var(--ep-dark);
  transform: translateY(-10px);
  box-shadow: var(--ep-shadow);
}

.aurae-tier-card--featured:hover {
  transform: translateY(-14px);
}

.aurae-tier-card--featured .ep-kicker {
  color: var(--ep-accent-light);
}

.aurae-tier-card h3 {
  font-family: var(--ep-serif);
  font-size: 52px;
  font-weight: 300;
  line-height: 1;
  margin: 0 0 10px;
  color: var(--ep-dark);
}

.aurae-tier-card h3 span {
  /*font-family: var(--ep-mono);*/
  font-size: 14px;
  color: var(--ep-muted);
  margin-left: 4px;
}

.aurae-tier-card--featured h3 {
  color: var(--ep-white);
}

.aurae-tier-card--featured h3 span {
  color: rgba(255, 255, 255, .45);
}

.aurae-tier-card p:not(.ep-kicker) {
  color: var(--ep-muted);
  font-size: 13px;
  line-height: 1.8;
  margin-bottom: 24px;
}

.aurae-tier-card--featured p:not(.ep-kicker) {
  color: rgba(255, 255, 255, .45);
}

.aurae-tier-card .aurae-button {
  width: 100%;
  margin-top: 24px;
  justify-content: center;
}

.aurae-tier-card--featured .aurae-button {
  background: var(--ep-accent);
  border-color: var(--ep-accent);
}

/* Post grid */
.aurae-post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.aurae-post-card {
  background: var(--ep-white);
  border: 1px solid var(--ep-rule);
  padding: 28px;
  transition: transform .3s, box-shadow .3s;
}

.aurae-post-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--ep-shadow-sm);
}

/* ══════════════════════════════════════
   09. SINGLE PRODUCT
══════════════════════════════════════ */
.aurae-single-product-shell {
  padding-top: 40px;
}

.aurae-single-product {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  /* padding: 0 60px; */
  max-width: 1230px;
  margin: 0 auto;
}

.aurae-single-product__gallery {
  /* background: var(--ep-light);
  border: 1px solid var(--ep-rule);
  padding: 24px; */
  position: relative;
}

.ep-product-gallery-simple {
  width: 100%;
  pointer-events: none;
  user-select: none;
  -webkit-user-select: none;
}

.ep-product-gallery-simple__image {
  display: block;
  width: 100%;
  height: auto;
  cursor: default;
  pointer-events: none;
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
}

.ep-product-gallery-simple__placeholder {
  display: grid;
  place-items: center;
  min-height: 480px;
  background: var(--ep-off);
  color: var(--ep-muted);
  /*font-family: var(--ep-mono);*/
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

/* 
.aurae-single-product__summary {
  position: sticky;
  top: 100px;
  background: var(--ep-white);
  border: 1px solid var(--ep-rule);
  padding: 40px;
}

.woocommerce div.product .product_title {

  letter-spacing: -.02em;
  line-height: 1.0;
  font-size: clamp(36px, 5vw, 60px);
  color: var(--ep-dark);
  margin: 0 0 8px;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
  font-size: 20px;
  letter-spacing: .05em;
  color: var(--ep-ink);
  margin-bottom: 24px;
  display: block;
} */

/* .woocommerce-product-details__short-description {
  font-size: 13px;
  margin-bottom: 28px;
} */

.woocommerce div.product form.cart {
  display: grid;
  gap: 12px;
  margin-bottom: 20px;
}

.woocommerce div.product form.cart .button {
  width: 100%;
}

/* Tabs */
.woocommerce-tabs,
.woocommerce div.product .woocommerce-tabs {
  display: none;
}

#ep .woocommerce-tabs ul.tabs {
  padding: 0;
  list-style: none;
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--ep-rule);
  margin-bottom: 24px;
}

.woocommerce-tabs ul.tabs li {
  border: 0;
  background: transparent;
  border-radius: 0;
  padding: 0;
  margin: 0;
}

.woocommerce-tabs ul.tabs li a {
  /*font-family: var(--ep-mono);*/
  font-size: 9px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ep-muted);
  padding: 14px 20px;
  display: block;
  border-bottom: 2px solid transparent;
  transition: color .2s;
  margin-bottom: -1px;
}

.woocommerce-tabs ul.tabs li.active a {
  color: var(--ep-accent);
  border-bottom-color: var(--ep-accent);
}

.woocommerce-tabs ul.tabs li a:hover {
  color: var(--ep-ink);
}

.woocommerce-tabs .panel,
.woocommerce-Reviews {
  padding: 28px;
  background: var(--ep-off);
}

/* Product gallery: lightweight custom image only */
.woocommerce-product-gallery,
.woocommerce-product-gallery__trigger,
.woocommerce-product-gallery .zoomImg {
  display: none;
}

/* product_meta hide */
.product_meta,
.woocommerce div.product .product_meta {
  display: none;
}

/* Inline description / reviews */
.ep-product-description {
  font-size: 14px;
  line-height: 2;
  color: var(--ep-muted);
}

.ep-product-description ul,
.ep-product-description ol {
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ep-product-description ul li,
.ep-product-description ol li {
  padding: 10px 0;
  border-bottom: 1px solid var(--ep-rule);
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.ep-product-description ul li::before {
  content: '—';
  /*font-family: var(--ep-mono);*/
  font-size: 10px;
  color: var(--ep-accent);
  flex-shrink: 0;
  padding-top: 2px;
}

.ep-review-item {
  padding: 24px 0;
  border-bottom: 1px solid var(--ep-rule);
}

.ep-review-item__head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 10px;
}

.ep-review-item__author {
  /*font-family: var(--ep-mono);*/
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--ep-ink);
}

.ep-review-item__stars {
  color: var(--ep-accent);
  font-size: 12px;
  letter-spacing: .05em;
}

.ep-review-item__date {
  /*font-family: var(--ep-mono);*/
  font-size: 9px;
  color: var(--ep-mid);
  margin-left: auto;
}

.ep-review-item__body {
  font-size: 13px;
  line-height: 1.9;
  color: var(--ep-muted);
}

/* Quantity controls */
.woocommerce .quantity {
  display: inline-flex;
  align-items: stretch;
  border: 1px solid var(--ep-rule);
  background: var(--ep-off);
  width: fit-content;
  overflow: hidden;
  flex-shrink: 0;
}

.woocommerce .quantity .qty {
  width: 56px;
  min-height: 48px;
  border: none;
  border-left: 1px solid var(--ep-rule);
  border-right: 1px solid var(--ep-rule);
  background: transparent;
  /*font-family: var(--ep-mono);*/
  font-size: 13px;
  text-align: center;
  padding: 0;
  outline: none;
  -moz-appearance: textfield;
}

.woocommerce .quantity .qty::-webkit-outer-spin-button,
.woocommerce .quantity .qty::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

#ep .ep-qty-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  /*font-family: var(--ep-mono);*/
  font-size: 18px;
  font-weight: 300;
  color: var(--ep-ink);
  cursor: pointer;
  transition: background .2s, opacity .2s;
  line-height: 1;
  padding: 0;
  flex-shrink: 0;
}

.ep-qty-btn:hover:not(:disabled) {
  background: rgba(30, 28, 26, .06);
}

.ep-qty-btn--minus:disabled,
.ep-qty-btn--minus[disabled] {
  opacity: .3;
  cursor: not-allowed;
  pointer-events: none;
}

/* Variation multi-select UI */
.ep-ms-wrap {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ep-ms-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--ep-rule);
}

.ep-ms-list:empty {
  border: none;
}

.ep-ms-row {
  padding: 14px 16px;
  background: var(--ep-white);
  border-bottom: 1px solid var(--ep-rule);
}

.ep-ms-row:last-child {
  border-bottom: none;
}

.ep-ms-row__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 10px;
}

.ep-ms-row__label {
  font-family: var(--ep-sans);
  font-size: 13px;
  color: var(--ep-ink);
  line-height: 1.4;
  flex: 1;
}

.ep-ms-row__del {
  flex-shrink: 0;
  align-self: flex-start;
}

.ep-ms-row__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.ep-ms-qwrap {
  display: flex;
  align-items: center;
  border: 1px solid var(--ep-rule);
  background: var(--ep-white);
  width: fit-content;
}

.ep-ms-qbtn {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  font-size: 20px;
  font-weight: 300;
  color: var(--ep-ink);
  cursor: pointer;
  padding: 0;
  line-height: 1;
  transition: background .15s, opacity .2s;
  flex-shrink: 0;
}

.ep-ms-qbtn:hover:not([disabled]) {
  background: var(--ep-off);
}

.ep-ms-qbtn[disabled],
.ep-ms-qbtn:disabled {
  opacity: .3;
  cursor: not-allowed;
  pointer-events: none;
}

.ep-ms-qval {
  /*font-family: var(--ep-mono);*/
  font-size: 14px;
  color: var(--ep-ink);
  min-width: 48px;
  text-align: center;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid var(--ep-rule);
  border-right: 1px solid var(--ep-rule);
}

.ep-ms-row__price {
  font-family: var(--ep-sans);
  font-size: 16px;
  font-weight: 700;
  color: var(--ep-dark);
  letter-spacing: -.02em;
  white-space: nowrap;
}

.ep-ms-total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 16px;
  border: 1px solid var(--ep-rule);
  border-top: none;
  background: var(--ep-off);
  margin-bottom: 12px;
}

.ep-ms-total__label {
  /*font-family: var(--ep-mono);*/
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ep-muted);
}

.ep-ms-total__right {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.ep-ms-total__price {
  font-family: var(--ep-sans);
  font-size: 22px;
  font-weight: 700;
  color: var(--ep-dark);
  letter-spacing: -.03em;
}

.ep-ms-total__count {
  /*font-family: var(--ep-mono);*/
  font-size: 11px;
  color: var(--ep-muted);
}

.ep-ms-actions {
  display: flex;
  gap: 8px;
}

.ep-ms-btn {
  flex: 1;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  /*font-family: var(--ep-mono);*/
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  padding: 0 16px;
  transition: background .25s, transform .2s, opacity .2s;
}

.ep-ms-btn:disabled {
  opacity: .55;
  cursor: not-allowed;
}

.ep-ms-btn--cart {
  background: var(--ep-accent);
  border-color: var(--ep-accent);
  color: var(--ep-white);
}

.ep-ms-btn--cart:hover:not(:disabled) {
  background: var(--ep-accent-light);
  border-color: var(--ep-accent-light);
  transform: translateY(-1px);
}

.ep-ms-btn--buy {
  background: var(--ep-dark);
  border-color: var(--ep-dark);
  color: var(--ep-white);
}

.ep-ms-btn--buy:hover:not(:disabled) {
  background: #2a2826;
  border-color: #2a2826;
  transform: translateY(-1px);
}

.ep-buy-trigger {
  display: block;
  width: 100%;
  min-height: 52px;
  /*font-family: var(--ep-mono);*/
  /* font-size: 10px;
  letter-spacing: .18em; */
  text-transform: uppercase;
  background: var(--ep-dark);
  color: var(--ep-white);
  border: 1px solid var(--ep-dark);
  cursor: pointer;
  padding: 0 16px;
  transition: background .25s, transform .2s;
  position: relative;
}

.ep-buy-trigger:hover {
  background: #2a2826;
  border-color: #2a2826;
  transform: translateY(-1px);
}

.ep-simple-actions {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}

.ep-simple-actions .single_add_to_cart_button {
  flex: 1;
  min-height: 52px;
}

.ep-simple-buynow-btn {
  flex: 1;
}

.ep-ms-feedback {
  /*font-family: var(--ep-mono);*/
  font-size: 10px;
  letter-spacing: .1em;
  color: var(--ep-accent);
  margin-top: 8px;
  min-height: 16px;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity .3s, transform .3s;
}

.ep-ms-feedback.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.ep-wc-hidden,
.variations_form .reset_variations,
.variations_form .woocommerce-variation-add-to-cart {
  display: none;
}

.variations select.ep-select-disabled,
.variations select:disabled {
  opacity: .4;
  cursor: not-allowed;
  pointer-events: none;
  background: var(--ep-light);
}

/* disabled select 클릭 감지를 위한 wrapper */

.variations select,
.ep-variation-highlight select {
  padding-right: 36px;
  background-position: right 12px center;
}

/* ══════════════════════════════════════
   10. CART
══════════════════════════════════════ */
/* Layout */
.ep-cart-layout .woocommerce {
  display: contents;
}

.ep-cart-layout .woocommerce::before,
.ep-cart-layout .woocommerce::after {
  content: none;
  display: none;
}

.ep-cart-layout .ep-cart-main {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
}

.ep-cart-layout .ep-cart-body {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 40px;
  width: 100%;
}

.ep-cart-layout .ep-cart-body .ep-cart-left {
  flex: 1;
  min-width: 0;
}

.ep-cart-layout .ep-cart-body .ep-cart-right {
  flex-shrink: 0;
  width: 360px;
  /* position: sticky;
  top: 96px; */
  background: var(--ep-off);
    border-radius: 10px;
    padding: 24px;
}

@media (max-width: 991px) {
  .ep-cart-layout .ep-cart-body {
    flex-direction: column;
  }


  .aurae-single-product {
    grid-template-columns: 1fr;
  }



  .aurae-single-product {
    gap: 0;
    /* padding:0; */
  }

  .ep-cart-layout .ep-cart-body .ep-cart-left,
  .ep-cart-layout .ep-cart-body .ep-cart-right {
    width: 100%;
  }
}

/* Cart items */
/* .ep-cart-items {
  border: 1px solid var(--ep-rule);
  border-bottom: 0;
  margin-bottom: 32px;
} */

.ep-cart-item {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 0 20px;
  padding: 20px 0;
  position: relative;
  align-items: flex-start;
  border-bottom: 1px solid var(--ep-rule);
}

.ep-cart-item:last-child {
  border-bottom: 0;
}

.ep-cart-item__remove {
  position: absolute;
  top: 20px;
  right: 0;
}

.ep-cart-item__remove a,
.ep-cart-item__remove button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1px solid var(--ep-rule);
  /* color: var(--ep-muted); */
  background: var(--ep-off);
  cursor: pointer;
  transition: color .2s, border-color .2s;
  text-decoration: none;
  padding: 0;
  appearance: none;
  border-radius: 100%;
}

.ep-cart-item__remove a:hover,
.ep-cart-item__remove button:hover {
  color: var(--ep-ink);
  border-color: var(--ep-ink);
}

.ep-cart-item__remove a .ep-close-icon,
.ep-cart-item__remove button .ep-close-icon {
  width: 12px;
  height: 12px;
}

/* WC a.remove red override */
body a.remove,
#ep .woocommerce a.remove,
.ep-cart-item__remove a,
.ep-cart-item__remove a:hover {
  color: var(--ep-muted);
}

.ep-cart-item__image {
  grid-column: 1;
  grid-row: 1;
  position: relative;
}

.ep-cart-item__image .wc-item-meta,
.ep-cart-item__image>.ep-info-icon,
.ep-cart-item__image>[class*="product-info"],
.ep-cart-item>a[class*="info"],
.ep-cart-item>[class*="wishlist"]>a[style*="position:absolute"],
.ep-cart-item>[class*="notice"] {
  display: none;
}

.ep-cart-item__image img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  display: block;
  border: 1px solid var(--ep-rule);
}

.ep-cart-item__info {
  grid-column: 2;
  padding-right: 36px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ep-cart-item__name a {
  /* font-family: var(--ep-serif); */
  /* font-size: 15px; */
  font-weight: 500;
  /* color: var(--ep-ink);
  text-decoration: none;
  word-break: keep-all; */
}

/* 장바구니 배리에이션 옵션 표시 — 원본 스타일 기반 */
/* 장바구니 선택 옵션 표시 — wc_get_formatted_cart_item_data() */
/* dl.variation,
.ep-cart-item__name dl.variation {
  display: block !important;
  margin: 6px 0 0 !important;
  padding: 0 !important;
  border: none !important;
  background: none !important;
}

dl.variation dt,
.ep-cart-item__name dl.variation dt {
  display: inline !important;
  float: none !important;
  clear: none !important;
  width: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  font-family: var(--ep-mono) !important;
  font-size: 9px !important;
  letter-spacing: .08em !important;
  color: var(--ep-muted) !important;
  font-weight: 400 !important;
}


dl.variation dd,
.ep-cart-item__name dl.variation dd {
  display: inline !important;
  float: none !important;
  margin: 0 8px 0 0 !important;
  padding: 0 !important;
  font-family: var(--ep-mono) !important;
  font-size: 9px !important;
  letter-spacing: .08em !important;
  color: var(--ep-muted) !important;
}

dl.variation dt::after {
  content: ': ';
}

dl.variation dd p {
  display: inline !important;
  margin: 0 !important;
} */


dl.variation {
  display: flex;
  justify-content: flex-start;
  font-size: 13px;
}

dl.variation dt::after {
  content: ': ';
}

dl.variation dd {
  margin-left: 3px;
  margin-right: 10px;
  /* font-weight: 500; */
}

/* 인라인 배리에이션 드롭다운 제거됨 */

.ep-cart-item__price-label,
.ep-cart-item__qty-label,
.ep-cart-item__subtotal-label {
  /*font-family: var(--ep-mono);*/
  font-size: 8px;
  /* letter-spacing: .18em; */
  /* text-transform: uppercase; */
  color: var(--ep-muted);
  display: inline;
  margin-right: 6px;
}




.ep-cart-item__price {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 10px;
  /*font-family: var(--ep-mono);*/
  font-size: 13px;
  /* letter-spacing: .05em; */
  /* color: var(--ep-muted); */
  border-top: 1px solid var(--ep-rule);
  padding-top: 17px;
}

.ep-cart-item__qty-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  flex-wrap: wrap;
}

.ep-cart-item__qty-group,
.ep-cart-item__subtotal-group {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.ep-cart-item__qty {
  display: flex;
  border: 1px solid var(--ep-rule);
  background: var(--ep-off);
  overflow: hidden;
}

.ep-cart-item__qty .ep-qty-btn {
  width: 28px;
  height: 28px;
  min-height: 28px;
  font-size: 14px;
}

.ep-cart-item__qty input.qty {
  min-height: 28px;
  height: 28px;
  width: 40px;
  font-size: 12px;
  padding: 0 4px;
  border: none;
  border-left: 1px solid var(--ep-rule);
  border-right: 1px solid var(--ep-rule);
  background: transparent;
  /*font-family: var(--ep-mono);*/
  text-align: center;
  outline: none;
  -moz-appearance: textfield;
}

.ep-cart-item__qty input.qty::-webkit-outer-spin-button,
.ep-cart-item__qty input.qty::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.ep-cart-item__subtotal {
  /*font-family: var(--ep-mono);*/
  font-size: 13px;
  letter-spacing: .06em;
  color: var(--ep-ink);
  line-height: 28px;
}

.ep-cart-actions {
  padding: 16px 20px;
  display: flex;
  justify-content: flex-end;
}

.ep-cart-spinner {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  background: rgba(247, 246, 244, .55);
}

.ep-cart-spinner::after {
  content: "";
  position: fixed;
  top: 50%;
  left: 50%;
  width: 32px;
  height: 32px;
  transform: translate(-50%, -50%);
  border: 2px solid var(--ep-rule);
  border-top-color: var(--ep-accent);
  border-radius: 50%;
  /* background: var(--ep-white); */
  box-shadow: 0 2px 8px rgba(0, 0, 0, .08);
  animation: ep-spin-centered .7s linear infinite;
}

.ep-cart-spinner.is-active {
  display: block;
}

.ep-cart-items.is-updating {
  opacity: .5;
  transition: opacity .15s;
  pointer-events: none;
}

/* ── WC blockUI 기본 스피너 전면 대체 ── */
.blockUI.blockOverlay {
  background: rgba(247, 246, 244, .55) !important;
  opacity: 1 !important;
  cursor: default !important;
}

/* WooCommerce 기본 로더/스피너 전부 숨김 */
.blockUI.blockMsg,
.blockUI.blockOverlay::before,
.blockUI.blockOverlay::after,
.wc-block-components-spinner,
.wc-block-components-loading-mask,
.woocommerce .blockUI.blockOverlay::before,
.woocommerce-page .blockUI.blockOverlay::before,
.woocommerce a.button.loading::after,
.woocommerce button.button.loading::after,
.woocommerce input.button.loading::after,
.woocommerce #respond input#submit.loading::after,
.woocommerce .cart .button.loading::after,
.woocommerce .checkout-button.loading::after,
.woocommerce .loader::before,
.woocommerce .processing::before,
.woocommerce-checkout-payment .blockUI.blockMsg {
  display: none !important;
  content: none !important;
}

/* blockOverlay에 우리 스피너를 ::after로 주입 */
.blockUI.blockOverlay.ep-use-spinner::after,
.blockUI.blockOverlay[data-ep-spinner='1']::after {
  content: '' !important;
  position: fixed;
  top: 50%;
  left: 50%;
  width: 32px;
  height: 32px;
  transform: translate(-50%, -50%);
  border: 2px solid var(--ep-rule);
  border-top-color: var(--ep-accent);
  border-radius: 50%;
  animation: ep-spin-centered .7s linear infinite;
  background: var(--ep-white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, .08);
  z-index: 99999;
}


.ep-checkout-payment-heading {
  margin: 0 0 24px;

}

.ep-checkout-kicker {
  margin: 0 0 10px;
  /*font-family: var(--ep-mono);*/
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--ep-muted);
}

.ep-checkout-title {
  margin: 0;
  /* font-family: var(--ep-serif); */
  font-size: 20px;
  /* font-weight: 300; */
  /* font-style: italic; */
  line-height: 1.05;
  /* color: var(--ep-ink); */
  margin: 0 0 18px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--ep-rule);
}

@media (max-width: 900px) {
  .ep-checkout-payment-heading {
    margin-top: 32px;
  }

  .ep-checkout-title {
    font-size: 19px;
  }
}

/* Cart totals box */
/* Override WC default float: right / width: 48% via higher specificity */
#ep .cart-collaterals .cart_totals,
#ep .woocommerce .cart-collaterals .cart_totals,
#ep .woocommerce-page .cart-collaterals .cart_totals,
.woocommerce #ep .cart-collaterals .cart_totals {
  float: none;
  width: 100%;
}

/* .cart-collaterals .cart_totals,
.ep-order-summary {
  background: var(--ep-dark);
  border: none;
  padding: 48px 40px;
} */

/* .cart_totals h2,
.ep-order-summary h2 {
  font-family: var(--ep-serif);
  font-size: 28px;
  font-weight: 300;
  font-style: italic;
  color: var(--ep-white);
  margin: 0 0 32px;
} */

.cart_totals table.shop_table {
  border: none;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, .08);
  margin-bottom: 0;
}

.cart_totals table.shop_table th,
.cart_totals table.shop_table td {
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  border-top: none;
}

.cart_totals table.shop_table th {
  /*font-family: var(--ep-mono);*/
  font-size: 9px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .35);
  font-weight: 400;
  width: 40%;
}

.cart_totals table.shop_table td {
  /*font-family: var(--ep-mono);*/
  font-size: 13px;
  letter-spacing: .05em;
  /* color: rgba(255, 255, 255, .7); */
  text-align: right;
}

.cart_totals table.shop_table .order-total td {
  border-bottom: none;
}

.cart_totals table.shop_table .order-total td strong {
  font-family: var(--ep-serif);
  font-size: 26px;
  font-weight: 300;
  font-style: italic;
  /* color: var(--ep-white); */
}



.cart_totals .wc-proceed-to-checkout .button {
  width: 100%;
  justify-content: center;
}

/* 기존 카트 좌측 쿠폰폼 — order summary로 이동했으므로 숨김 */
.ep-cart-coupon {
  display: none !important;
}

/* 체크아웃 기본 WC 쿠폰 toggle 숨김 */
.woocommerce-form-coupon-toggle,
.ep-checkout-layout .checkout_coupon,
#ep form.checkout_coupon.woocommerce-form-coupon {
  display: none !important;
}

/* ── Order Summary 인라인 쿠폰 공통 스타일 ── */
/* 카트 totals 쿠폰 래퍼 */
.ep-coupon-row-in-totals {
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

/* 체크아웃 review totals 쿠폰 행 */
.ep-order-review__totals-row--coupon {
  flex-direction: column;
  gap: 0;
  padding: 14px 0;
  border-bottom: 1px solid var(--ep-rule);
}

.ep-order-review__totals-row--coupon .ep-order-review__totals-label {
  width: 100%;
}

/* 쿠폰 토글 버튼 */
.ep-coupon-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  /*font-family: var(--ep-mono);*/
  font-size: 9px;
  letter-spacing: .16em;
  text-transform: uppercase;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  color: rgba(255, 255, 255, .5);
  transition: color .2s;
}

.ep-checkout-layout .ep-coupon-toggle {
  color: var(--ep-muted);
}

.ep-coupon-toggle:hover {
  color: rgba(255, 255, 255, .9);
}

.ep-checkout-layout .ep-coupon-toggle:hover {
  color: var(--ep-ink);
}

.ep-coupon-toggle__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 12px;
  line-height: 1;
  transition: transform .25s;
}

.ep-coupon-toggle[aria-expanded="true"] .ep-coupon-toggle__icon {
  transform: rotate(45deg);
}

/* 쿠폰 인라인 필드 */
.ep-coupon-inline {
  overflow: hidden;
  max-height: 0;
  transition: max-height .3s cubic-bezier(.4, 0, .2, 1), opacity .25s;
  opacity: 0;
}

.ep-coupon-inline.is-open {
  max-height: 120px;
  opacity: 1;
}

.ep-coupon-inline__field {
  display: flex;
  gap: 0;
  margin-top: 12px;
  width: 100%;
}

.ep-coupon-input {
  flex: 1;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, .15);
  border-right: none;
  background: rgba(255, 255, 255, .06);
  padding: 0 14px;
  /*font-family: var(--ep-mono);*/
  font-size: 10px;
  letter-spacing: .06em;
  color: var(--ep-white);
  outline: none;
  border-radius: 0;
  transition: border-color .2s;
}

.ep-checkout-layout .ep-coupon-input {
  background: var(--ep-white);
  border: 1px solid var(--ep-rule);
  border-right: none;
  color: var(--ep-ink);
}

.ep-coupon-input::placeholder {
  color: rgba(255, 255, 255, .3);
}

.ep-checkout-layout .ep-coupon-input::placeholder {
  color: var(--ep-muted);
}

.ep-coupon-input:focus {
  border-color: rgba(255, 255, 255, .4);
}

.ep-checkout-layout .ep-coupon-input:focus {
  border-color: var(--ep-accent);
}

.ep-coupon-apply {
  height: 40px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, .15);
  background: rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .8);
  /*font-family: var(--ep-mono);*/
  font-size: 9px;
  letter-spacing: .14em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s;
  border-radius: 0;
}

.ep-checkout-layout .ep-coupon-apply {
  background: var(--ep-accent);
  border-color: var(--ep-accent);
  color: var(--ep-white);
}

.ep-coupon-apply:hover {
  background: rgba(255, 255, 255, .18);
}

.ep-checkout-layout .ep-coupon-apply:hover {
  background: var(--ep-accent-light);
}

.ep-coupon-msg {
  /*font-family: var(--ep-mono);*/
  font-size: 9px;
  letter-spacing: .06em;
  margin-top: 8px;
  min-height: 14px;
  color: #c9534f;
}

.ep-coupon-msg.is-success {
  color: #5a9a74;
}

/* WooCommerce notice focus override */
/* WooCommerce 전역 focus-visible 제거 (마우스 클릭시 아웃라인 없음) */
*:focus:not(:focus-visible) {
  outline: none !important;
  box-shadow: none !important;
}

.woocommerce-message:focus-visible,
.woocommerce-info:focus-visible,
.woocommerce-error:focus-visible,
.woocommerce-notices-wrapper *:focus-visible {
  outline: none !important;
  box-shadow: none !important;
}

/* WC 기본 focus outline 전역 제거 */
.woocommerce a:focus,
.woocommerce button:focus,
.woocommerce input:focus,
.woocommerce select:focus,
.woocommerce textarea:focus,
.woocommerce-page a:focus,
.woocommerce-page button:focus,
.woocommerce-page input:focus,
.woocommerce-page select:focus,
.woocommerce-page textarea:focus {
  outline: none;
  box-shadow: none;
}

/* ── WooCommerce Notice — minimal redesign ── */
.woocommerce-notices-wrapper {
  pointer-events: none;
}

.woocommerce-notices-wrapper>* {
  pointer-events: auto;
}

#ep .woocommerce-error,
#ep .woocommerce-info,
#ep .woocommerce-message,
.woocommerce-notices-wrapper .woocommerce-error,
.woocommerce-notices-wrapper .woocommerce-info,
.woocommerce-notices-wrapper .woocommerce-message,
.woocommerce .woocommerce-message {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  max-width: 500px;
  background: var(--ep-off);
  border: none;
  border-radius: 6px;
  color: var(--ep-muted);
  font-size: .8125rem;
  line-height: 1.6;
  letter-spacing: .01em;
  padding: 20px 24px;
  position: relative;
  box-shadow: none;
  list-style: none;
  margin: 0 0 8px;
}

/* 노티스 내 링크 밑줄 */
#ep .woocommerce-error a,
#ep .woocommerce-info a,
#ep .woocommerce-message a,
.woocommerce-notices-wrapper .woocommerce-error a,
.woocommerce-notices-wrapper .woocommerce-info a,
.woocommerce-notices-wrapper .woocommerce-message a,
.woocommerce .woocommerce-message a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* 상단 선 제거 */
#ep .woocommerce-message::after,
.woocommerce-notices-wrapper .woocommerce-message::after,
.woocommerce .woocommerce-message::after,
#ep .woocommerce-info::after,
.woocommerce-notices-wrapper .woocommerce-info::after,
#ep .woocommerce-error::after,
.woocommerce-notices-wrapper .woocommerce-error::after {
  display: none;
  content: none;
}

/* error 배경 */
#ep .woocommerce-error,
.woocommerce-notices-wrapper .woocommerce-error {
  background: #f9f3f3;
  color: var(--ep-muted);
  border: none;
}

/* ::before — SVG 아이콘으로 교체 */
.woocommerce-info::before,
.woocommerce-message::before {
  content: '';
  display: block;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  /* margin-top: 2px; */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='currentColor' stroke-width='1' stroke-linecap='round' stroke-linejoin='round' d='m14.5,8c0,3.59-2.91,6.5-6.5,6.5S1.5,11.59,1.5,8,4.41,1.5,8,1.5s6.5,2.91,6.5,6.5Zm-6.5-1v4m0-6h0'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  position: static;
  transform: none;
  top: auto;
  left: auto;
}

/* error 아이콘 — info 뒤집기 (! 느낌표 형태) */
.woocommerce-error::before {
  display: block;
  content: '';
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%238E8880' stroke-width='1' stroke-linecap='round' stroke-linejoin='round' d='m14.5,8c0,3.59-2.91,6.5-6.5,6.5S1.5,11.59,1.5,8,4.41,1.5,8,1.5s6.5,2.91,6.5,6.5Zm-6.5-1v-4m0,6h0'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  position: static;
  transform: none;
}

.woocommerce-message .button.wc-forward {
  display: none;
}

/* 닫기 버튼 */
.ep-notice-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--ep-muted);
  flex-shrink: 0;
  transition: color .18s, opacity .18s;
  padding: 0;
  appearance: none;
  margin-left: auto;
  margin-top: 1px;
  opacity: .45;
}

.ep-notice-close:hover {
  color: var(--ep-ink);
  opacity: 1;
}

/* ══════════════════════════════════════
   11. CHECKOUT
══════════════════════════════════════ */

/* ── 체크아웃 전용 헤더 ── */
.ep-checkout-header {
  position: relative;
  width: 100%;
  background: var(--ep-off);
  border-bottom: 1px solid var(--ep-rule);
}

/* 헤더 inner — 로고 중앙, 돌아가기 절대위치 왼쪽 */
.ep-checkout-header__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 72px;
  padding: 0 24px;
}

/* topbar는 inner 안에 포함 — 절대위치로 왼쪽 배치 */
.ep-checkout-header__topbar {
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
}

.ep-checkout-back--header {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  /*font-family: var(--ep-mono);*/
  font-size: 7px;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: var(--ep-muted);
  text-decoration: none;
  transition: color .2s;
  white-space: nowrap;
  max-width: 140px;
}

.ep-checkout-back--header:hover {
  color: var(--ep-ink);
}

.ep-checkout-back--header svg {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
}

/* 텍스트 숨기고 아이콘만 — 로고 밀림 방지 */
@media (max-width: 480px) {
  .ep-checkout-back--header span {
    display: none;
  }
}

.ep-checkout-header__logo {
  text-decoration: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}


/* 체크아웃 배너 — full-width 다크 바 */
.ep-checkout-banner {
  width: 100%;
  background: var(--ep-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 11px 24px;
  /*font-family: var(--ep-mono);*/
  font-size: 9px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .65);
}

.ep-checkout-banner__item {
  display: flex;
  align-items: center;
  gap: 7px;
}

.ep-checkout-banner__item svg {
  opacity: .7;
  flex-shrink: 0;
}

.ep-checkout-banner__sep {
  color: rgba(255, 255, 255, .2);
  font-size: 12px;
}

/* 체크아웃 페이지 top padding 조정 */
.woocommerce-checkout .aurae-site-main {
  padding-top: 0;
}

/* ── 체크아웃 페이지 ── */
.ep-checkout-page-wrap {
  padding: 0;
}

.ep-checkout-page-wrap .woocommerce,
.ep-checkout-page-wrap .woocommerce>form {
  float: none;
  width: 100%;
  max-width: none;
}

.ep-checkout-page-wrap .woocommerce::before,
.ep-checkout-page-wrap .woocommerce::after {
  display: none;
  content: none;
}

/* ep-checkout-grid — form-checkout.php 내 2컬럼 */

/* 좌: 주문내역 */
.ep-checkout-col--summary {
  border-right: 1px solid var(--ep-rule);
  padding: 40px 48px 80px 0;
}

/* 우: 배송지 + 결제수단 */
.ep-checkout-col--fields {
  position: sticky;
  top: 24px;
}

.ep-checkout-col--fields form.woocommerce-checkout {
  display: block;
  width: 100%;
  float: none;
}

.ep-checkout-col--fields #customer_details,
.ep-checkout-col--fields .col2-set,
.ep-checkout-col--fields .col2-set .col-1,
.ep-checkout-col--fields .col2-set .col-2 {
  float: none;
  width: 100%;
}

/* #order_review 더미 숨김 */
.ep-checkout-col--fields #order_review_heading,
.ep-checkout-col--fields #order_review {
  display: none !important;
}

/* 결제수단 */
.ep-checkout-payment-section {
  /* margin-top: 32px; */
  margin: 40px auto 80px;
}

.ep-checkout-page-wrap .woocommerce-notices-wrapper {
  width: 100%;
}

/* billing/shipping h3 */

.woocommerce-billing-fields>h3 {
  display: none;
}

/* 모바일 */
@media (max-width: 991px) {

  /* 토글 */
  .ep-summary-toggle-cb {
    display: none;
  }

  .ep-checkout-summary-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: var(--ep-off);
    border: 1px solid var(--ep-rule);
    cursor: pointer;
    padding: 13px 16px;
    margin-bottom: 0;
    /*font-family: var(--ep-mono);*/
    font-size: 9px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--ep-ink);
  }

  .ep-checkout-summary-toggle .ep-toggle-icon {
    position: relative;
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    background: var(--ep-accent);
    color: var(--ep-white);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
  }

  .ep-checkout-summary-toggle .ep-toggle-icon__line {
    position: absolute;
    display: block;
    width: 10px;
    height: 1px;
    background: currentColor;
    transition: opacity .2s, transform .2s;
  }

  .ep-checkout-summary-toggle .ep-toggle-icon__line--v {
    transform: rotate(90deg);
  }

  .ep-summary-toggle-cb:checked~.ep-checkout-summary-toggle {
    border-bottom: none;
  }

  .ep-summary-toggle-cb:checked~.ep-checkout-summary-toggle .ep-toggle-icon {
    background: var(--ep-muted);
  }

  .ep-summary-toggle-cb:checked~.ep-checkout-summary-toggle .ep-toggle-icon__line--v {
    opacity: 0;
  }

  .ep-checkout-summary-body {
    overflow: hidden;
    max-height: 0;
    transition: max-height .45s cubic-bezier(.4, 0, .2, 1);
    border: 0;
  }

  .ep-summary-toggle-cb:checked~.ep-checkout-summary-body {
    max-height: 3000px;
    padding: 0 0 16px;
  }
}

@media (min-width: 992px) {

  .ep-summary-toggle-cb,
  .ep-checkout-summary-toggle {
    display: none;
  }

  .ep-checkout-summary-body {
    max-height: none !important;
    overflow: visible;
  }
}

/* Checkout headings */
/* .woocommerce-billing-fields h3,
.woocommerce-shipping-fields h3,
.woocommerce-checkout h3#order_review_heading {
  font-family: var(--ep-serif);
  font-size: 20px;
  font-weight: 300;
  font-style: italic;
  color: var(--ep-dark);
  margin: 0 0 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--ep-rule);
} */

.woocommerce-additional-fields h3 {
  display: none;
}

.woocommerce-checkout .form-row {
  margin-bottom: 12px;
}

.woocommerce-checkout #order_comments_field {
  margin-top: 16px;
  margin-bottom: 16px;
}

.woocommerce-checkout #order_comments_field textarea {
  padding: 14px 16px;
  min-height: 80px;
}

/* Payment */

.ep-checkout-payment-section #payment {
  background: transparent;
}

.woocommerce-checkout #payment ul.payment_methods {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  border-bottom: 0;
}

.woocommerce-checkout #payment ul.payment_methods li {
  padding: 16px 0;
  border-bottom: 1px solid var(--ep-rule);
}

.woocommerce-checkout #payment ul.payment_methods li:first-child {
  padding-top: 0;
}

.woocommerce-checkout #payment ul.payment_methods li:last-child {
  border-bottom: none;
}


.woocommerce-checkout #payment ul.payment_methods label {
  /*font-family: var(--ep-mono);*/
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ep-ink);
  cursor: pointer;
  display: inline;
}

.woocommerce-checkout #payment div.payment_box {
  background: var(--ep-off);
  border-left: 2px solid var(--ep-accent);
  padding: 16px 20px;
  margin-top: 12px;
  font-size: 12px;
  color: var(--ep-muted);
  border-radius: 0;
}

.woocommerce-checkout #payment div.payment_box p {
  margin-top: 0;
}

.woocommerce-checkout #payment div.payment_box::before {
  display: none;
}

/* 16. Reset payment_box p:last-child (WC default removed) */
#add_payment_method #payment div.payment_box p:last-child,
.woocommerce-cart #payment div.payment_box p:last-child {
  margin-bottom: 0;
}

/* 17. Remove padding from checkout #payment div.form-row */
.woocommerce-checkout #payment div.form-row {
  padding: 0;
}

.woocommerce #payment #place_order,
.woocommerce-page #payment #place_order {
  width: 100%;
  display: block;
  box-sizing: border-box;
}

/* Postcode button */
#billing_country_field,
#billing_postcode_field {
  display: none !important;
}

/* .postcode-button {
  font-size: 9px;
  letter-spacing: .18em;
  text-transform: uppercase;
  background: var(--ep-accent);
  color: var(--ep-white);
  border: none;
  cursor: pointer;
  height: 48px;
  width: 100%;
  transition: background .3s;
  margin-bottom: 8px;
}

.postcode-button:hover {
  background: var(--ep-accent-light);
} */
/* 
input.postcode-button[style],
button.postcode-button[style] {
  background: var(--ep-accent);
  color: var(--ep-white);
  font-size: 9px;
  letter-spacing: .18em;
  text-transform: uppercase;
  height: 48px;
}

input.postcode-button[style]:hover,
button.postcode-button[style]:hover {
  background: var(--ep-accent-light);
} */

/* #billing_address_1 {
  cursor: pointer;
}

#billing_address_1:focus {
  border-color: var(--ep-accent);
  background: var(--ep-white);
} */
/* 
.postcode_search_button,
input[name="billing_postcode_search"],
input[name="shipping_postcode_search"] {
  display: block;
  width: 100%;
  max-width: 150px;
  min-height: 48px;
  background: var(--ep-accent);
  color: var(--ep-white);
  border: 1px solid var(--ep-accent);
  border-radius: 0;
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
  cursor: pointer;
  margin-bottom: 8px;
  transition: background .2s;
}

input[name="billing_postcode_search"]:hover,
input[name="shipping_postcode_search"]:hover {
  background: var(--ep-accent-light);
  border-color: var(--ep-accent-light);
} */

#shipping_postcode_field {
  display: none;
}

/* Daum postcode popup */
.daum_postcode_overlay,
[id^="daum_postcode_"],
.layer_postcode,
div[id*="daumwrap"],
div[id*="postcode"],
div[id*="Postcode"],
div[id*="daum"],
#fancybox-wrap,
.fancybox-wrap {
  z-index: 99999;
}

div[id*="postcode"] *,
div[id*="daum"] * {
  transition: none;
  animation: none;
}

/* Terms checkbox */
.ep-terms-wrap {
  margin: 20px auto;
  padding: 16px;
  border: 1px solid var(--ep-rule);
  background: var(--ep-off);
}

#ep .ep-terms-label {
  display: flex;
  align-items: flex-start;
  cursor: pointer;
  letter-spacing: 0;
  margin: 0;
}

.ep-terms-label input[type="checkbox"] {
  flex-shrink: 0;
  margin-top: 2px;
}

.ep-terms-text {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
  gap: .2em;
  flex: 1 1 auto;
  min-width: 0;
  font-size: 13px;
  color: var(--ep-ink);
  line-height: 1.6;
}

.ep-terms-text a {
  color: var(--ep-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.ep-terms-error {
  margin: 10px 0 0;
  font-size: 12px;
  color: #c9534f;
  font-family: var(--ep-sans);
}

/* Checkout order review div-based (review-order.php) */
/* ── Order Review — 체크아웃 좌측 패널 ── */
/* .ep-order-review {
  padding: 32px 0;
} */

.ep-order-review__heading {
  margin-bottom: 20px;
}


/* 상품 목록 */
.ep-order-review__items {
  display: flex;
  flex-direction: column;
}

.ep-order-review__item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 0 18px;
  align-items: start;
  padding: 20px 0;
  border-bottom: 1px solid var(--ep-rule);
}

.ep-order-review__item-img {
  width: 64px;
  height: 64px;
  overflow: hidden;
  background: var(--ep-off);
  flex-shrink: 0;
  border: 1px solid var(--ep-rule);
}

.ep-order-review__item-img img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  display: block;
}

.ep-order-review__item-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 2px;
}

.ep-order-review__item-name {
  /* font-family: var(--ep-sans); */
  font-size: 14px;
  font-weight: 500;
  color: var(--ep-ink);
  margin: 0;
  word-break: keep-all;
  line-height: 1.5;
}

/* 배리에이션 옵션 텍스트 */
.ep-order-review__item-name dl.variation {
  margin: 4px 0 0 !important;
}

#ep .woocommerce form .form-row.woocommerce-validated input.input-text,
#ep .woocommerce form .form-row.woocommerce-validated select {
  border-color: var(--ep-rule);
}

.ep-order-review__item-qty {
  /*font-family: var(--ep-mono);*/
  font-size: 13px;
  /* letter-spacing: .1em;
  color: var(--ep-muted); */
  margin: 0;
}

.ep-order-review__item-qty-label {
  margin-right: 4px;
}

.ep-order-review__item-price {
  /*font-family: var(--ep-mono);*/
  font-size: 12px;
  letter-spacing: .04em;
  color: var(--ep-ink);
  white-space: nowrap;
  text-align: right;
  padding-top: 4px;
}

/* 합계 섹션 */


.ep-order-review__totals-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 11px 0;
  border-bottom: 1px solid var(--ep-rule);
  /*font-family: var(--ep-mono);*/
  font-size: 12px;
  letter-spacing: .5px;
  /* color: var(--ep-ink); */
}

.ep-order-review__totals-label {
  color: var(--ep-muted);
}

.ep-order-review__totals-row:last-child {
  border-bottom: none;
  padding: 12px 0 50px;
  /* margin-top: 12px;
  border-top: 1px solid var(--ep-rule); */
}


.ep-order-review__totals-row--total .ep-order-review__totals-label {
  /* font-size: 9px; */
  letter-spacing: .18em;
  /* text-transform: uppercase; */
  /* color: var(--ep-muted); */
}

/* 배송비 무료 */
.ep-order-review__totals-row--shipping .ep-order-review__totals-value {
  color: var(--ep-accent);
}

.cart_totals .shipping .amount {
  color: var(--ep-accent-light) !important;
}

/* 총계 금액 */
.ep-order-review__totals-value--total {
  font-family: var(--ep-serif);
  font-size: 24px;
  font-weight: 300;
  font-style: italic;
  color: var(--ep-dark);
  letter-spacing: -.01em;
}

/* WC 기본 테이블 숨김 */
table.woocommerce-checkout-review-order-table {
  display: none !important;
}

.woocommerce-checkout h3#order_review_heading {
  display: none;
}

/* Payment 섹션 — order review 아래 */


/* ══════════════════════════════════════
   12. MY ACCOUNT
══════════════════════════════════════ */
/* WC 기본 래퍼 무력화 — 원본과 동일하게 !important 필요 */
/* .woocommerce-account .woocommerce,
.ep-account-layout .woocommerce,
.ep-account-wrap {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  box-shadow: none !important;
}

.ep-account-layout>.woocommerce {
  display: contents !important;
} */

.ep-account-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: 100vh;
  align-items: start;
  /* padding-top: 100px; */
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 80px;
}

.ep-account-nav {
  background: var(--ep-dark);
  padding: 72px 32px 40px;
  position: sticky;
  top: 80px;
  min-height: calc(100vh - 80px);
  align-self: start;
}

.ep-account-nav__brand {
  color: var(--ep-white);
  margin-bottom: 6px;
  display: inline-flex;
  align-items: center;
}


.ep-account-nav__sub {
  /*font-family: var(--ep-mono);*/
  font-size: 8px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ep-accent-light);
  margin-bottom: 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.ep-account-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ep-account-nav ul li {
  list-style: none;
  padding: 0;
  margin: 0;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.ep-account-nav ul li::before,
.ep-account-nav ul li::marker {
  display: none;
  content: none;
}

.ep-account-nav ul li a {
  /*font-family: var(--ep-mono);*/
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .4);
  padding: 15px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color .3s;
}

.ep-account-nav ul li a::after {
  content: '→';
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity .3s, transform .3s;
}

.ep-account-nav ul li a:hover,
.ep-account-nav ul li.woocommerce-MyAccount-navigation-link--is-active a {
  color: var(--ep-white);
}

.ep-account-nav ul li a:hover::after,
.ep-account-nav ul li.woocommerce-MyAccount-navigation-link--is-active a::after {
  opacity: 1;
  transform: translateX(0);
}

.ep-account-content {
  background: var(--ep-off);
  border: 1px solid var(--ep-rule);
  padding: 60px 56px 60px;
  min-height: 100vh;
  min-width: 0;
  overflow-x: hidden;
  box-sizing: border-box;
}

/* 
.ep-account-content h2,
.ep-account-content h3 {

  letter-spacing: -.01em;
  line-height: 1.1;
  color: var(--ep-dark);
  margin: 0 0 32px;
} */

.ep-account-content h2 {
  font-size: clamp(28px, 2.5vw, 36px);
}

.ep-account-content h3 {
  font-size: clamp(20px, 2.5vw, 30px);
}

.ep-account-content p {
  /* font-size: 13px; */
  line-height: 1.9;
  /* color: var(--ep-muted); */
  margin-bottom: 16px;
}

.ep-account-content ul,
.ep-account-content ol {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ep-account-content ul li,
.ep-account-content ol li {
  font-size: 13px;
  color: var(--ep-muted);
  padding: 14px 0;
  border-bottom: 1px solid var(--ep-rule);
  display: flex;
  align-items: center;
  gap: 12px;
}

.ep-account-content ul li::before {
  content: '—';
  /*font-family: var(--ep-mono);*/
  font-size: 10px;
  color: var(--ep-accent);
  flex-shrink: 0;
}

.ep-account-content ul li a {
  color: var(--ep-accent);
}

.ep-account-content ul li a:hover {
  color: var(--ep-accent-light);
}

.ep-dashboard-link {
  color: var(--ep-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: color .2s;
}

.ep-dashboard-link:hover {
  color: var(--ep-accent-light);
}

/* Address change shortcut link */
.ep-account-address-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  /*font-family: var(--ep-mono);*/
  font-size: 9px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ep-muted);
  text-decoration: none;
  border-bottom: 1px solid var(--ep-rule);
  padding-bottom: 2px;
  transition: color .25s, border-color .25s;
}

.ep-account-address-link::after {
  content: '→';
  font-family: inherit;
  font-size: 11px;
  transition: transform .25s;
}

.ep-account-address-link:hover {
  color: var(--ep-accent);
  border-color: var(--ep-accent);
}

.ep-account-address-link:hover::after {
  transform: translateX(3px);
}

/* Dashboard cards */
.ep-dashboard-name {
  /* 
  font-size: clamp(28px, 4vw, 48px);
  letter-spacing: -.02em;
  color: var(--ep-dark); */
  margin: 0 0 8px;
}

.ep-dashboard-desc {
  font-size: 13px;
  color: var(--ep-muted);
  margin: 0 0 40px;
}

.ep-dashboard-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 48px;
}

.ep-dashboard-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px 24px;
  border: 1px solid var(--ep-rule);
  background: var(--ep-white);
  text-decoration: none;
  transition: box-shadow .25s, border-color .25s;
}

.ep-dashboard-card:hover {
  border-color: var(--ep-accent);
  box-shadow: 0 4px 20px rgba(61, 90, 82, .08);
}

.ep-dashboard-card--logout:hover {
  border-color: #c9534f;
  box-shadow: 0 4px 20px rgba(201, 83, 79, .06);
}

.ep-dashboard-card__icon {
  color: var(--ep-accent);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ep-rule);
}

.ep-dashboard-card--logout .ep-dashboard-card__icon {
  color: var(--ep-muted);
}

.ep-dashboard-card__label {
  /*font-family: var(--ep-mono);*/
  /* font-size: 10px;
  letter-spacing: .2em; */
  text-transform: uppercase;
  color: var(--ep-ink);
  margin: 0;
  font-weight: 500;
  border-bottom: 1px solid #eee;
  padding-bottom: 1em;
}

.ep-dashboard-card__desc {
  font-size: 13px;
  color: var(--ep-muted);
  margin: 0;
  line-height: 1.6;
}

/* Auth page */
.ep-auth-wrap {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 80px;
}

.ep-auth-left {
  background: var(--ep-dark);
  padding: 80px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: sticky;
  top: 0;
  height: calc(100svh - 80px);
  overflow: hidden;
}

.ep-auth-left::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(61, 90, 82, .22), transparent 60%);
  top: -100px;
  right: -100px;
  pointer-events: none;
}

.ep-auth-left__eyebrow {
  /*font-family: var(--ep-mono);*/
  font-size: 9px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--ep-accent-light);
  margin-bottom: 32px;
}

.ep-auth-left__heading {
  font-family: var(--ep-serif);
  font-size: clamp(38px, 4.5vw, 58px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -.02em;
  color: var(--ep-white);
  margin-bottom: 24px;
}

.ep-auth-left__heading em {
  font-style: italic;
  color: var(--ep-warm);
}

.ep-auth-left__desc {
  font-size: 13px;
  line-height: 1.9;
  color: rgba(255, 255, 255, .4);
  max-width: 340px;
  margin-bottom: 48px;
}

.ep-auth-perks {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.ep-auth-perk {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.ep-auth-perk__num {
  /*font-family: var(--ep-mono);*/
  font-size: 9px;
  color: var(--ep-accent-light);
  padding-top: 2px;
}

.ep-auth-perk__text {
  font-size: 12px;
  color: rgba(255, 255, 255, .5);
  line-height: 1.6;
}

.ep-auth-perk__text strong {
  color: rgba(255, 255, 255, .85);
  font-weight: 400;
}

.ep-auth-right {
  background: var(--ep-white);
  padding: 80px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ep-auth-right .ep-form-label {
  /*font-family: var(--ep-mono);*/
  font-size: 9px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ep-accent);
  margin-bottom: 36px;
  display: block;
}

body.ep-auth-page .ep-auth-wrap {
  padding-top: 0;
}

body.ep-auth-page .ep-auth-left {
  height: 100svh;
  top: 0;
}

/* WC login/register form reset */
.woocommerce-form-login,
.woocommerce-form-register {
  background: transparent;
  border: none;
  padding: 0;
  box-shadow: none;
}

.woocommerce-form-login p,
.woocommerce-form-register p {
  margin-bottom: 20px;
}

.woocommerce-form-login .form-row input.input-text,
.woocommerce-form-register .form-row input.input-text,
.woocommerce-form-login input[type="text"],
.woocommerce-form-login input[type="password"],
.woocommerce-form-login input[type="email"],
.woocommerce-form-register input[type="text"],
.woocommerce-form-register input[type="password"],
.woocommerce-form-register input[type="email"] {
  background: var(--ep-off);
  border: 1px solid var(--ep-rule);
  border-radius: 0;
  height: 52px;
  padding: 0 18px;
  font-family: var(--ep-sans);
  font-size: 14px;
  font-weight: 300;
  color: var(--ep-ink);
  transition: border-color .3s, background .3s;
}

.woocommerce-form-login input:focus,
.woocommerce-form-register input:focus {
  border-color: var(--ep-accent);
  background: var(--ep-white);
  outline: none;
}

.woocommerce-form-login label,
.woocommerce-form-register label {
  /*font-family: var(--ep-mono);*/
  font-size: 9px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ep-muted);
  margin-bottom: 8px;
}

.woocommerce-form-login__submit,
.woocommerce-form-register__submit {
  width: 100%;
  justify-content: center;
}

.woocommerce-form-login__rememberme {
  /*font-family: var(--ep-mono);*/
  font-size: 10px;
  letter-spacing: .1em;
  color: var(--ep-muted);
}

.woocommerce-privacy-policy-text {
  display: none;
}

.woocommerce-LostPassword a,
.woocommerce-form-login .lost_password a {
  /*font-family: var(--ep-mono);*/
  font-size: 9px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--ep-accent);
}

/* Edit account form */
.ep-field-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3px;
  margin-bottom: 28px;
}

.ep-field-row label {
  /*font-family: var(--ep-mono);*/
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ep-muted);
}

.ep-field-input {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--ep-rule);
  background: var(--ep-off);
  padding: 0 16px;
  font-family: var(--ep-sans);
  font-size: 14px;
  font-weight: 300;
  color: var(--ep-ink);
  outline: none;
  border-radius: 0;
  transition: border-color .2s;
  box-sizing: border-box;
}

.ep-field-input:focus {
  border-color: var(--ep-accent);
  background: var(--ep-white);
}

.ep-pw-display {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 14px 16px;
  border: 1px solid var(--ep-rule);
  background: var(--ep-off);
}

.ep-pw-display__dots {
  /*font-family: var(--ep-mono);*/
  font-size: 16px;
  letter-spacing: .15em;
  color: var(--ep-muted);
  flex: 1;
}

.ep-pw-change-toggle {
  /*font-family: var(--ep-mono);*/
  font-size: 8px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ep-accent);
  background: transparent;
  border: 1px solid var(--ep-accent);
  padding: 8px 16px;
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s, color .2s;
  appearance: none;
  flex-shrink: 0;
}

.ep-pw-change-toggle:hover {
  background: var(--ep-accent);
  color: var(--ep-white);
}

.ep-pw-fieldset {
  margin-top: 16px;
  border: 1px solid var(--ep-rule);
  padding: 24px;
}

.ep-pw-fieldset__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--ep-rule);
}

.ep-pw-fieldset__msg {
  font-size: 12px;
  color: var(--ep-muted);
  margin: 0;
}

.ep-pw-change-cancel {
  /*font-family: var(--ep-mono);*/
  font-size: 8px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ep-muted);
  background: transparent;
  border: 1px solid var(--ep-rule);
  padding: 7px 14px;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: color .2s, border-color .2s;
  appearance: none;
}

.ep-pw-change-cancel:hover {
  color: var(--ep-ink);
  border-color: var(--ep-ink);
}

.ep-form-actions {
  margin-top: 32px;
}

/* Password eye toggle */
.ep-pw-wrap {
  position: relative;
  display: block;
  width: 100%;
}

.ep-pw-wrap .input-text,
.ep-pw-wrap input[type="password"],
.ep-pw-wrap input[type="text"] {
  width: 100%;
  padding-right: 48px;
}

#ep .ep-pw-toggle {
  position: absolute;
  right: 0;
  top: 0;
  height: 48px;
  width: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: opacity .2s;
}

.ep-pw-toggle:hover {
  opacity: .55;
}

.ep-eye-icon {
  width: 18px;
  height: 18px;
  display: block;
  opacity: .45;
  transition: opacity .2s;
}

.ep-pw-toggle.is-visible .ep-eye-icon,
.ep-pw-toggle[aria-pressed="true"] .ep-eye-icon {
  opacity: 1;
  filter: invert(28%) sepia(30%) saturate(600%) hue-rotate(120deg);
}

/* Password strength */
.woocommerce-password-strength {
  /*font-family: var(--ep-mono);*/
  font-size: 9px;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: 8px 12px;
  margin-top: 8px;
  border: 1px solid var(--ep-rule);
  background: var(--ep-off);
  color: var(--ep-muted);
}

.woocommerce-password-strength.strong {
  border-color: var(--ep-accent);
  color: var(--ep-accent);
  background: var(--ep-accent-faint);
}

.woocommerce-password-strength.short,
.woocommerce-password-strength.bad {
  border-color: #c9534f;
  color: #c9534f;
}

/* Inline password error */
.ep-pw-inline-error {
  display: none;
  background: #fef3f2;
  border: 1px solid #f5c6c4;
  border-left: 3px solid #c9534f;
  color: #8b3a3a;
  font-family: var(--ep-sans);
  font-size: 13px;
  padding: 12px 16px;
  margin-bottom: 16px;
}

/* Address pages */
.woocommerce-Addresses {
  width: 100%;
}

#ep .woocommerce-Addresses .u-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.woocommerce-Address-title {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  width: 100%;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--ep-rule);
}

.woocommerce-Address-title h3 {
  font-family: var(--ep-serif);
  font-size: 22px;
  font-weight: 300;
  font-style: italic;
  color: var(--ep-dark);
  margin: 0;
  flex: 1;
  text-align: left;
}

.woocommerce-Address-title .edit {
  margin-left: auto;
  flex-shrink: 0;
}

#ep .woocommerce-Addresses .woocommerce-Address {
  border: 1px solid var(--ep-rule);
  padding: 28px;
  background: var(--ep-white);
  height: 100%;
}

.woocommerce-Addresses .woocommerce-Address-title .edit {
  /*font-family: var(--ep-mono);*/
  font-size: 8px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ep-white);
  background: var(--ep-accent);
  border: 1px solid var(--ep-accent);
  padding: 8px 16px;
  display: inline-flex;
  align-items: center;
  height: 36px;
  text-decoration: none;
  transition: background .25s, border-color .25s;
  white-space: nowrap;
}

.woocommerce-Addresses .woocommerce-Address-title .edit:hover {
  background: var(--ep-accent-light);
  border-color: var(--ep-accent-light);
}

.woocommerce-Addresses .u-columns {
  gap: 32px;
}

address {
  font-style: normal;
  font-size: 13px;
  line-height: 1.9;
  color: var(--ep-ink);
}

/* ══════════════════════════════════════
   13. ORDERS & ORDER DETAIL
══════════════════════════════════════ */
/* Order list cards */
.ep-orders-title {

  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -.02em;
  color: var(--ep-dark);
  margin: 0 0 40px;
}

.ep-orders-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ep-order-card {
  border: 1px solid var(--ep-rule);
  background: var(--ep-white);
  padding: 24px 28px;
  transition: box-shadow .25s;
}

.ep-order-card:hover {
  box-shadow: 0 4px 24px rgba(30, 28, 26, .06);
}

.ep-order-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--ep-rule);
}

.ep-order-card__meta {
  display: flex;
  align-items: center;
  gap: 20px;
}

.ep-order-card__number a {
  font-family: var(--ep-serif);
  font-size: 18px;
  font-weight: 300;
  font-style: italic;
  color: var(--ep-dark);
  text-decoration: none;
}

.ep-order-card__number a:hover {
  color: var(--ep-accent);
}

.ep-order-card__date {
  /*font-family: var(--ep-mono);*/
  font-size: 9px;
  letter-spacing: .15em;
  color: var(--ep-muted);
  text-transform: uppercase;
}

.ep-order-card__body {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.ep-order-card__thumb {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  border: 1px solid var(--ep-rule);
  overflow: hidden;
}

.ep-order-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ep-order-card__info {
  display: flex;
  flex: 1;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}

.ep-order-card__product {
  font-family: var(--ep-sans);
  font-size: 13px;
  color: var(--ep-muted);
  word-break: keep-all;
}

.ep-order-card__total {
  /*font-family: var(--ep-mono);*/
  font-size: 14px;
  letter-spacing: .06em;
  color: var(--ep-ink);
  white-space: nowrap;
}

.ep-order-card__footer {
  display: flex;
  justify-content: flex-end;
}

.ep-order-card__action {
  /*font-family: var(--ep-mono);*/
  font-size: 9px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ep-ink);
  text-decoration: none;
  border: 1px solid var(--ep-ink);
  padding: 10px 20px;
  transition: background .2s, color .2s;
  white-space: nowrap;
}

.ep-order-card__action:hover {
  background: var(--ep-ink);
  color: var(--ep-white);
}

/* Orders pagination */
.ep-orders-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 32px;
}

.ep-page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  border: 1px solid var(--ep-rule);
  background: var(--ep-white);
  /*font-family: var(--ep-mono);*/
  font-size: 10px;
  letter-spacing: .08em;
  color: var(--ep-muted);
  text-decoration: none;
  transition: all .2s;
  cursor: pointer;
}

.ep-page-btn:hover {
  border-color: var(--ep-accent);
  color: var(--ep-accent);
}

.ep-page-btn--active {
  background: var(--ep-accent);
  border-color: var(--ep-accent);
  color: var(--ep-white);
  cursor: default;
}


.ep-order-status {
  /*font-family: var(--ep-mono);*/
  font-size: 8px;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 6px 12px;
  border: 1px solid var(--ep-rule);
  color: var(--ep-muted);
}

.ep-order-status--processing {
  border-color: var(--ep-accent);
  color: var(--ep-accent);
}

.ep-order-status--completed {
  border-color: var(--ep-ink);
  color: var(--ep-ink);
}

.ep-order-status--cancelled {
  border-color: #c9534f;
  color: #c9534f;
}

.ep-order-status--pending {
  border-color: var(--ep-muted);
  color: var(--ep-muted);
}

.ep-orders-empty {
  padding: 60px 0;
  text-align: center;
  border: 1px solid var(--ep-rule);
}

.ep-orders-empty__msg {
  font-family: var(--ep-serif);
  font-style: italic;
  font-size: 22px;
  font-weight: 300;
  color: var(--ep-dark);
  margin-bottom: 28px;
}

/* Order detail */
.ep-order-detail__title {

  font-size: clamp(24px, 3.5vw, 40px);
  letter-spacing: -.02em;
  color: var(--ep-dark);
  margin: 0 0 8px;
}

.ep-order-detail__meta {
  /*font-family: var(--ep-mono);*/
  font-size: 9px;
  letter-spacing: .15em;
  color: var(--ep-muted);
  margin-bottom: 36px;
}

.ep-order-meta-card {
  border: 1px solid var(--ep-rule);
  margin-bottom: 40px;
  background: var(--ep-off);
}

.ep-order-meta-card__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 16px 24px;
  border-bottom: 1px solid var(--ep-rule);
}

.ep-order-meta-card__row:last-child {
  border-bottom: 0;
}

.ep-order-meta-card__label {
  /*font-family: var(--ep-mono);*/
  font-size: 9px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ep-muted);
  flex-shrink: 0;
  margin-right: 16px;
}

.ep-order-meta-card__val {
  font-family: var(--ep-sans);
  font-size: 13px;
  color: var(--ep-ink);
  text-align: right;
}

.ep-order-meta-card__val--total {
  font-family: var(--ep-serif);
  font-size: 20px;
  font-weight: 300;
  font-style: italic;
  color: var(--ep-dark);
}

/* Order items div-based */
.ep-order-items {
  margin-bottom: 0;
  border: 1px solid var(--ep-rule);
}

.ep-order-items__header {
  display: flex;
  justify-content: space-between;
  padding: 12px 20px;
  background: var(--ep-off);
  border-bottom: 1px solid var(--ep-rule);
  /*font-family: var(--ep-mono);*/
  font-size: 9px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ep-muted);
}

.ep-order-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  border-bottom: 1px solid var(--ep-rule);
}

.ep-order-item:last-of-type {
  border-bottom: 0;
}

.ep-order-item__img {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
}

.ep-order-item__img img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  display: block;
  border: 1px solid var(--ep-rule);
}

.ep-order-item-img--placeholder {
  width: 72px;
  height: 72px;
  background: var(--ep-off);
  border: 1px solid var(--ep-rule);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ep-order-item__info {
  flex: 1;
  min-width: 0;
}

.ep-order-item__name {
  font-family: var(--ep-serif);
  font-size: 15px;
  font-weight: 300;
  color: var(--ep-dark);
  word-break: keep-all;
  margin: 0 0 4px;
}

.ep-order-item__meta {
  font-size: 11px;
  color: var(--ep-muted);
  margin: 0 0 4px;
}

.ep-order-item__qty {
  /*font-family: var(--ep-mono);*/
  font-size: 9px;
  letter-spacing: .15em;
  color: var(--ep-muted);
  margin: 0;
}

.ep-order-item__price {
  /*font-family: var(--ep-mono);*/
  font-size: 13px;
  letter-spacing: .06em;
  color: var(--ep-ink);
  white-space: nowrap;
  flex-shrink: 0;
  padding-top: 2px;
}

.ep-order-totals {
  border-top: 1px solid var(--ep-rule);
}

.ep-order-totals__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 12px 20px;
  border-bottom: 1px solid var(--ep-rule);
  /*font-family: var(--ep-mono);*/
  font-size: 11px;
  letter-spacing: .05em;
  color: var(--ep-muted);
}

.ep-order-totals__row:last-child {
  border-bottom: 0;
}

.ep-order-totals__row--discount {
  color: var(--ep-accent);
}

.ep-order-totals__row--total {
  font-family: var(--ep-serif);
  font-size: 18px;
  font-weight: 300;
  font-style: italic;
  color: var(--ep-dark);
  padding: 16px 20px;
  letter-spacing: -.01em;
}

.ep-order-totals__row--total span:last-child {
  font-size: 20px;
}

/* Order address */
.ep-order-address-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--ep-rule);
}

.ep-order-addr-block__title {
  /*font-family: var(--ep-mono);*/
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ep-muted);
  font-weight: 400;
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--ep-rule);
}

.ep-order-addr-block__body {
  font-style: normal;
  font-size: 13px;
  line-height: 1.85;
  color: var(--ep-ink);
  font-family: var(--ep-sans);
}

.ep-order-addr-block__detail {
  display: block;
  font-family: var(--ep-sans);
  font-size: 12px;
  color: var(--ep-muted);
  margin-top: 2px;
}

/* Thank you 페이지 */
.ep-thankyou-layout {
  max-width: 760px;
  margin: 0 auto;
  padding: 60px 0 100px;
}

.ep-thankyou-title {
  margin: 10px 0 28px;
  font-family: var(--ep-serif);
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.1;
  letter-spacing: -.02em;
  font-weight: 300;
  font-style: italic;
  color: var(--ep-dark);
}

.ep-thankyou-layout .woocommerce-order {
  width: 100%;
}

/* 완료 알림 박스 */
.ep-thankyou-layout .woocommerce-notice--success,
.ep-thankyou-layout p.woocommerce-thankyou-order-received {
  font-family: var(--ep-serif);
  font-size: 18px;
  font-weight: 300;
  font-style: italic;
  color: var(--ep-dark);
  margin: 0 0 40px;
  line-height: 1.6;
  padding: 24px 28px;
  border: 1px solid var(--ep-rule);
  background: var(--ep-accent-faint);
  border-left: 3px solid var(--ep-accent);
}

/* 주문 개요 리스트 */
.ep-thankyou-layout ul.woocommerce-thankyou-order-details,
.ep-thankyou-layout .woocommerce-thankyou-order-details {
  list-style: none;
  padding: 0;
  margin: 0 0 44px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--ep-rule);
  background: var(--ep-off);
}

.ep-thankyou-layout ul.woocommerce-thankyou-order-details>li,
.ep-thankyou-layout .woocommerce-thankyou-order-details li {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 8px;
  min-width: 0;
  padding: 18px 24px;
  border-bottom: 1px solid var(--ep-rule);
  border-right: 1px solid var(--ep-rule);
  /*font-family: var(--ep-mono);*/
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ep-muted);
}

.ep-thankyou-layout ul.woocommerce-thankyou-order-details>li:nth-child(2n),
.ep-thankyou-layout .woocommerce-thankyou-order-details li:nth-child(2n) {
  border-right: 0;
}

.ep-thankyou-layout ul.woocommerce-thankyou-order-details>li:nth-last-child(-n+2),
.ep-thankyou-layout .woocommerce-thankyou-order-details li:nth-last-child(-n+2) {
  border-bottom: 0;
}

.ep-thankyou-layout .woocommerce-thankyou-order-details li::before,
.ep-thankyou-layout .woocommerce-thankyou-order-details li::marker {
  display: none;
  content: none;
}

.ep-thankyou-layout .woocommerce-thankyou-order-details li strong,
.ep-thankyou-layout .woocommerce-order-overview li strong {
  display: block;
  margin: 0;
  font-family: var(--ep-serif);
  font-size: 20px;
  font-weight: 300;
  font-style: italic;
  letter-spacing: -.01em;
  text-transform: none;
  color: var(--ep-dark);
  word-break: break-word;
}

.ep-thankyou-layout .woocommerce-order-overview__email strong {
  /*font-family: var(--ep-mono);*/
  font-size: 12px;
  font-style: normal;
  letter-spacing: .06em;
  text-transform: none;
}

/* 주문 상세 테이블 */
.ep-thankyou-layout .woocommerce-order-details {
  margin-top: 44px;
}

.ep-thankyou-layout .woocommerce-order-details__title,
.ep-thankyou-layout .woocommerce-column__title,
.ep-thankyou-layout h2.woocommerce-order-details__title,
.ep-thankyou-layout h2.woocommerce-column__title {
  display: block;
  font-family: var(--ep-serif);
  font-size: 20px;
  font-weight: 300;
  font-style: italic;
  color: var(--ep-dark);
  margin: 0 0 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--ep-rule);
}

.ep-thankyou-layout .woocommerce-table.woocommerce-table--order-details {
  border: 1px solid var(--ep-rule);
  width: 100%;
  border-collapse: collapse;
}

.ep-thankyou-layout .woocommerce-table--order-details th,
.ep-thankyou-layout .woocommerce-table--order-details td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--ep-rule);
  /*font-family: var(--ep-mono);*/
  font-size: 11px;
  letter-spacing: .04em;
  text-align: left;
  vertical-align: top;
}

.ep-thankyou-layout .woocommerce-table--order-details tfoot tr:last-child td,
.ep-thankyou-layout .woocommerce-table--order-details tfoot tr:last-child th {
  border-bottom: 0;
}

.ep-thankyou-layout .woocommerce-table--order-details tfoot th {
  color: var(--ep-muted);
  font-size: 9px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

/* 배송/청구지 주소 컬럼 */
.ep-thankyou-layout .woocommerce-columns--addresses {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 40px;
}

.ep-thankyou-layout address {
  font-style: normal;
  font-size: 13px;
  line-height: 1.85;
  color: var(--ep-ink);
  font-family: var(--ep-sans);
}

@media (max-width: 600px) {
  .ep-thankyou-layout {
    padding-top: 42px;
  }

  .ep-thankyou-title {
    margin-bottom: 22px;
    font-size: 38px;
  }

  .ep-thankyou-layout .woocommerce-thankyou-order-details {
    grid-template-columns: 1fr;
  }

  .ep-thankyou-layout .woocommerce-thankyou-order-details li {
    border-right: 0;
    border-bottom: 1px solid var(--ep-rule);
  }

  .ep-thankyou-layout .woocommerce-thankyou-order-details li:last-child {
    border-bottom: 0;
  }

  .ep-thankyou-layout .woocommerce-columns--addresses {
    grid-template-columns: 1fr;
  }
}

/* WooCommerce order table (legacy fallback) */
/* #ep .woocommerce table.shop_table {
  border: 1px solid var(--ep-rule);
  border-collapse: collapse;
}

#ep .woocommerce table.shop_table th,
#ep .woocommerce table.shop_table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--ep-rule);
  font-size: 11px;
  letter-spacing: .05em;
}

.woocommerce table.shop_table th {
  text-transform: uppercase;
  font-size: 9px;
  letter-spacing: .18em;
  color: var(--ep-muted);
} */

/* #ep .woocommerce .cart_totals h2,
#ep .woocommerce-checkout-review-order h3,
#ep .woocommerce-billing-fields h3,
#ep .woocommerce-account h2,
#ep .woocommerce-order h2 {

  letter-spacing: -.01em;
} */

/* Order status badges */
.woocommerce-order-status {
  display: inline-block;
  /*font-family: var(--ep-mono);*/
  font-size: 8px;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 5px 10px;
  border: 1px solid currentColor;
  line-height: 1;
}

.woocommerce-order-status--processing {
  color: var(--ep-accent);
}

.woocommerce-order-status--completed {
  color: var(--ep-muted);
}

.woocommerce-order-status--on-hold {
  color: #b08d57;
}

.woocommerce-order-status--cancelled {
  color: #c9534f;
}

.woocommerce-order-status--pending {
  color: var(--ep-mid);
}

.woocommerce-order-status--refunded {
  color: var(--ep-muted);
}

/* ══════════════════════════════════════
   14. FORMS & INPUTS (Global)
══════════════════════════════════════ */
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.woocommerce form .form-row .input-text,
.input-text,
select,
textarea {
  min-height: 48px;
  height: auto;
  border: 1px solid var(--ep-rule);
  background: var(--ep-off);
  padding: 12px 16px;
  /* font-family: var(--ep-sans); */
  font-size: 14px;
  /* font-weight: 300; */
  /* color: var(--ep-ink); */
  outline: none;
  border-radius: 0;
  transition: border-color .2s;
  box-sizing: border-box;
  line-height: normal;
  letter-spacing: normal;
  width: 100%;
  margin: 0;
}

textarea,
.woocommerce form .form-row textarea,
.woocommerce-checkout textarea {
  min-height: 120px;
  padding: 14px 16px;
  line-height: 1.6;
  vertical-align: top;
  resize: vertical;
}

textarea::placeholder {
  padding: 0;
  line-height: inherit;
}

.woocommerce form .form-row .input-text,
.input-text {
  padding-top: 12px;
  padding-bottom: 12px;
  line-height: normal;
}

select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 36px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath fill='none' stroke='%238E8880' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round' d='M2 4l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 12px;
  cursor: pointer;
}

.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row .input-text:focus,
.input-text:focus {
  border-color: var(--ep-rule);
  background: var(--ep-white);
}

.woocommerce-address-fields input:focus,
.woocommerce-address-fields select:focus,
.woocommerce-EditAccountForm input:focus {
  border-color: var(--ep-rule);
  outline: none;
}

label {
  /*font-family: var(--ep-mono);*/
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ep-muted);
  display: block;
  margin-bottom: 6px;
}

/* Radio */
.woocommerce-checkout input[type="radio"],
.woocommerce input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--ep-mid);
  border-radius: 50%;
  background: var(--ep-white);
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
  transition: border-color .25s;
  vertical-align: middle;
  margin-right: 8px;
}

.woocommerce-checkout input[type="radio"]:checked,
.woocommerce input[type="radio"]:checked {
  border-color: var(--ep-accent);
  background: var(--ep-white);
}

.woocommerce-checkout input[type="radio"]:checked::after,
.woocommerce input[type="radio"]:checked::after {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--ep-accent);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Checkbox */
#ep input[type="checkbox"],
input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--ep-mid);
  border-radius: 0;
  background: var(--ep-white);
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
  transition: border-color .25s, background .25s;
  vertical-align: middle;
  margin-right: 8px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 11px 11px;
}

#ep input[type="checkbox"]:checked,
.woocommerce input[type="checkbox"]:checked,
input[type="checkbox"]:checked,
.ep-terms-label input[type="checkbox"]:checked {
  border-color: var(--ep-accent);
  background-color: var(--ep-accent);
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxMiAxMiI+PHBvbHlnb24gZmlsbD0id2hpdGUiIHBvaW50cz0iNC4xNzcsMTAuNTQzIDAuNDM0LDYuOCAxLjU2Niw1LjY2OCA0LjE3Nyw4LjI3OSAxMC40MzUsMi4wMjMgMTEuNTY1LDMuMTU1Ii8+PC9zdmc+");
}

input[type="checkbox"]:focus {
  outline: none;
  border-color: var(--ep-accent);
  box-shadow: 0 0 0 2px rgba(61, 90, 82, .15);
}

/* Spellcheck suppress */
.woocommerce input[type="text"],
.woocommerce input[type="email"],
.woocommerce input[type="tel"],
.woocommerce input[type="password"],
.woocommerce input[type="number"],
.woocommerce input[type="search"],
.woocommerce textarea,
.input-text,
.woocommerce-Input {
  -webkit-text-decoration: none;
}

/* WC misc form containers */
#ep .woocommerce-Reviews,
#ep .woocommerce-order,
#ep .woocommerce form.login,
#ep .woocommerce form.register {
  background: var(--ep-white);
  border: 1px solid var(--ep-rule);
  padding: 36px;
}

/* .woocommerce form.checkout {
  background: var(--ep-white);
  border: 1px solid var(--ep-rule);
  padding: 36px 64px;
} */


.woocommerce form.checkout {
  /* background: var(--ep-white); */
  /* border: 1px solid var(--ep-rule); */
  padding: 0 60px;
}

/* Pagination */
.woocommerce nav.woocommerce-pagination ul {
  border: 0;
  display: flex;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 24px auto;
  justify-content: center;
}

.woocommerce nav.woocommerce-pagination ul li {
  border: 0;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
  border: 1px solid var(--ep-rule);
  min-width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  /*font-family: var(--ep-mono);*/
  font-size: 10px;
  /* letter-spacing: .08em; */
  color: var(--ep-muted);
  transition: all .2s;
}

.woocommerce nav.woocommerce-pagination ul li a:hover {
  border-color: var(--ep-accent);
  color: var(--ep-accent);
  background-color: var(--ep-white);
}

.woocommerce nav.woocommerce-pagination ul li span.current {
  background: var(--ep-accent);
  border-color: var(--ep-accent);
  color: white;
}

.star-rating span::before,
.star-rating::before {
  color: var(--ep-accent);
}

/* ══════════════════════════════════════
   15. FOOTER
══════════════════════════════════════ */
.aurae-footer {
  background: var(--ep-off);
  /* color: var(--ep-dark); */
  padding: 70px 25px 55px;
}

.site-footer-info {
  font-size: 13px;
  text-align: center;
}

/* 
.aurae-logo--footer,
.ep-logo--footer {
  font-size: 30px;
  color: var(--ep-white) !important;
}

.aurae-footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.aurae-footer__brand p {
  font-family: var(--ep-serif);
  font-style: italic;
  font-size: 13px;
  color: rgba(255, 255, 255, .35);
  max-width: 280px;
  margin-top: 12px;
  line-height: 1.7;
}

.aurae-footer h4 {
  font-size: 8px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--ep-accent-light);
  margin: 0 0 20px;
}

.aurae-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.aurae-footer ul li a {
  font-size: 12px;
  color: rgba(248, 246, 244, .5);
  transition: color .2s;
}

.aurae-footer ul li a:hover {
  color: rgba(248, 246, 244, .85);
}

.aurae-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(248, 246, 244, .2);
} */

/* ══════════════════════════════════════
   16. ANIMATIONS & REVEAL
══════════════════════════════════════ */
.aurae-reveal {
  opacity: 0;
  transform: translateY(22px);
  animation: ep-reveal .85s cubic-bezier(.22, 1, .36, 1) forwards;
  transition: opacity .7s cubic-bezier(.22, 1, .36, 1), transform .7s cubic-bezier(.22, 1, .36, 1);
}

.aurae-reveal-group .aurae-reveal:nth-child(2) {
  animation-delay: .09s;
}

.aurae-reveal-group .aurae-reveal:nth-child(3) {
  animation-delay: .18s;
}

.aurae-reveal-group .aurae-reveal:nth-child(4) {
  animation-delay: .27s;
}

@keyframes ep-reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ep-fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ep-fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes ep-glow-pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: .55;
    transform: scale(1.1);
  }
}

@keyframes ep-glow-drift {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(-12px, 16px);
  }
}


@keyframes ep-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes ep-spin-centered {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes ep-wiggle {

  0%,
  100% {
    transform: translateX(0);
  }

  20% {
    transform: translateX(-6px);
  }

  40% {
    transform: translateX(6px);
  }

  60% {
    transform: translateX(-4px);
  }

  80% {
    transform: translateX(4px);
  }
}

.ep-wiggle {
  animation: ep-wiggle .4s ease;
}

/* ══════════════════════════════════════
   17. RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1024px) {
  .ep-header__inner {
    grid-template-columns: 120px 1fr auto;
  }

  .ep-nav {
    display: none;
  }


  .aurae-story-grid {
    grid-template-columns: 1fr;
  }

  .woocommerce ul.products {
    grid-template-columns: repeat(2, 1fr);
  }

  .aurae-tier-grid {
    grid-template-columns: 1fr;
  }

  .aurae-tier-card--featured {
    transform: none;
  }

  /* .aurae-single-product__summary {
    position: static;
  } */

  .aurae-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .aurae-post-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 960px) {
  .ep-account-layout {
    grid-template-columns: 200px 1fr;
    padding-top: 88px;
  }

  .ep-account-nav {
    padding: 36px 24px;
  }

  .ep-account-content {
    padding: 40px 32px;
  }

  .ep-auth-wrap {
    grid-template-columns: 1fr;
  }

  .ep-auth-left {
    display: none;
  }

  .ep-auth-right {
    padding: 40px 24px;
  }
}

@media (max-width: 768px) {
  .ep-shell {
    width: min(100% - 32px, 1280px);
  }

  .aurae-shell {
    width: min(100% - 32px, 1280px);
  }

  .ep-header {
    padding: 14px 0;
  }

  .ep-header__inner {
    grid-template-columns: auto 1fr auto;
    gap: 10px;
  }

  .ep-logo {
    font-size: 22px;
  }


  .aurae-hero {
    padding: 100px 24px 56px;
  }

  .aurae-hero h1 {
    font-size: clamp(46px, 14vw, 72px);
  }

  .aurae-hero__cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .aurae-manifesto {
    padding: 90px 0;
  }

  .aurae-manifesto h2 {
    font-size: clamp(36px, 9vw, 54px);
  }

  .aurae-section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .woocommerce ul.products {
    grid-template-columns: 1fr;
  }

  .aurae-story-card {
    padding: 36px 28px;
  }

  .aurae-story-card h3 {
    font-size: 28px;
  }

  /* 
  .aurae-footer__grid {
    grid-template-columns: 1fr;
  }

  .aurae-footer__bottom {
    flex-direction: column;
    gap: 12px;
  } */

  .ep-search-overlay__inner {
    top: 70px;
    padding: 24px;
  }

  .aurae-post-grid {
    grid-template-columns: 1fr;
  }

  .ep-account-layout {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 56px 0 60px;
  }

  .ep-account-nav {
    position: static;
    padding: 12px 16px;
    min-height: auto;
  }

  .ep-account-nav__brand,
  .ep-account-nav__sub {
    display: none;
  }

  .ep-account-nav ul {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .ep-account-nav ul li {
    border-bottom: none;
    border-right: 1px solid rgba(255, 255, 255, .07);
  }

  .ep-account-nav ul li a {
    padding: 10px 12px;
    font-size: 8px;
  }

  .ep-account-nav ul li a::after {
    display: none;
  }

  .ep-account-content {
    border-left: none;
    border-right: none;
    padding: 24px 16px;
    min-height: auto;
  }

  .ep-dashboard-grid {
    grid-template-columns: 1fr;
  }

  .woocommerce-Addresses .u-columns {
    grid-template-columns: 1fr;
  }

  .ep-order-address-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 640px) {
  .ep-cart-item {
    grid-template-columns: 160px 1fr;
    gap: 0 14px;
    padding: 16px 0;
  }

  .ep-cart-item__image img {
    width: 160px;
    height: 160px;
  }

  .ep-cart-item__qty-wrap {
    flex-direction: column;
    gap: 10px;
  }

  /* .ep-cart-items {
    border-left: none;
    border-right: none;
  } */

  .ep-simple-actions {
    flex-direction: column;
  }

  .ep-ms-actions {
    flex-direction: column;
  }

  .ep-ms-qbtn {
    width: 38px;
    height: 38px;
  }

  .ep-ms-qval {
    min-width: 38px;
    height: 38px;
  }
}

@media (max-width: 600px) {
  .ep-dashboard-cards {
    grid-template-columns: 1fr;
  }

  .ep-auth-left {
    display: none;
  }

  .ep-auth-right {
    padding: 48px 24px;
  }
}

@media (max-width: 480px) {
  .ep-account-content {
    padding: 20px 16px;
  }
}

/* ══════════════════════════════════════
   18. LEGACY ALIASES  (aurae-* → ep-*)
   순서 중요: 마지막에 위치해야 specificity 유지
══════════════════════════════════════ */
/* Shell / lock */
.aurae-shell {
  width: var(--ep-shell);
  margin: 0 auto;
}

.aurae-lock {
  overflow: hidden;
}


.aurae-kicker {
  /*font-family: var(--ep-mono);*/
  font-size: 9px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--ep-muted);
  margin: 0 0 16px;
  display: block;
}

/* Header */
.aurae-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 42px 55px;
  /* transition: transform .45s cubic-bezier(.22, 1, .36, 1), padding .5s cubic-bezier(.22, 1, .36, 1); */
  transition: transform .45s cubic-bezier(.22, 1, .36, 1), background-color .3s ease;
  background-color: transparent;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.aurae-header__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(247, 246, 244, .95);
  opacity: 0;
  transition: opacity .45s cubic-bezier(.22, 1, .36, 1), box-shadow .45s cubic-bezier(.22, 1, .36, 1);
  box-shadow: 0 1px 0 rgba(216, 212, 206, 0);
}


/* .aurae-header.is-hidden {
  transform: translate3d(0, -110%, 0);
} */

.aurae-header.is-scrolled {
  transform: translate3d(0, -110%, 0);
  background-color: rgba(255, 255, 255, 0.5);
}

.aurae-header:hover {
  background-color: rgba(255, 255, 255, 0.5);
}


.aurae-logo {
  color: var(--ep-dark);
  line-height: 1;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: color .45s cubic-bezier(.22, 1, .36, 1), opacity .45s cubic-bezier(.22, 1, .36, 1);
}


.aurae-nav {
  display: flex;
  justify-content: center;
}

.aurae-menu {
  display: flex;
  gap: 0;
  list-style: none;
  padding: 0;
  margin: 0;
}

.aurae-header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
}

.aurae-icon-link {
  width: 36px;
  height: 36px;
  border: 0;
  /* border-radius: 50%; */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--ep-ink);
  position: relative;
  flex-shrink: 0;
  /* transition: color .45s; */
}

/* 
.aurae-icon-link:hover {
  background: transparent;
  border-color: transparent;
  transform: none;
} */

.aurae-cart-count {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--ep-accent);
  color: white;
  /*font-family: var(--ep-mono);*/
  font-size: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.aurae-mobile-toggle {
  appearance: none;
  border: 1px solid transparent;
  background: transparent;
  color: var(--ep-ink);
  display: inline-flex;
  width: 36px;
  height: 36px;
  padding: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border-radius: 50%;
  cursor: pointer;
  flex-shrink: 0;
}

.aurae-mobile-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  background: currentColor;
}

.aurae-mobile-toggle:hover {
  background: transparent;
  border-color: transparent;
}

/* aurae-header color states — delegate to ep-header via shared class if possible,
   else re-declare for aurae-header selectors */
.aurae-header .aurae-logo,
.aurae-header .aurae-menu li a,
.aurae-header .aurae-icon-link,
.aurae-header .aurae-mobile-toggle {
  transition: color .45s cubic-bezier(.22, 1, .36, 1), background-color .45s, border-color .45s, opacity .45s;
}


.aurae-menu li a {
  /*font-family: var(--ep-mono);*/
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ep-muted);
  padding: 8px 16px;
  display: block;
  position: relative;
  transition: color .2s;
}

.aurae-menu li a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 16px;
  right: 16px;
  height: 1px;
  background: var(--ep-accent);
  transform: scaleX(0);
  transition: transform .3s cubic-bezier(.22, 1, .36, 1);
}

.aurae-menu li a:hover {
  color: var(--ep-dark);
}

.aurae-menu li a:hover::after {
  transform: scaleX(1);
}

.aurae-menu li.current-menu-item a {
  color: var(--ep-accent);
}

.aurae-menu li.current-menu-item a::after {
  transform: scaleX(1);
}

/* Mobile panel (aurae) */
.aurae-mobile-panel {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(30, 28, 26, .45);
  opacity: 0;
  pointer-events: none;
  transition: opacity .45s cubic-bezier(.22, 1, .36, 1);
}

.aurae-mobile-panel.is-active {
  opacity: 1;
  pointer-events: auto;
}

.aurae-mobile-panel__inner {
  width: min(560px, 100%);
  height: 100%;
  background: var(--ep-off);
  padding: 32px 28px;
  transform: translate3d(100%, 0, 0);
  transition: transform .6s cubic-bezier(.16, 1, .3, 1);
  box-shadow: -20px 0 60px rgba(30, 28, 26, .14);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  margin-left: auto;
  will-change: transform;
}

.aurae-mobile-panel.is-active .aurae-mobile-panel__inner {
  transform: translate3d(0, 0, 0);
}

.aurae-mobile-panel__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  margin-bottom: 32px;
}

.aurae-mobile-menu li a {
  /*font-family: var(--ep-mono);*/
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ep-muted);
  padding: 16px 0;
  border-bottom: 1px solid var(--ep-rule);
  display: block;
  transition: color .2s;
}

.aurae-mobile-menu li a:hover {
  color: var(--ep-accent);
}

.aurae-mobile-close {
  appearance: none;
  border: none;
  background: transparent;
  padding: 6px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: opacity .2s;
  margin-right: -10px;
  margin-top: -5px;
}

.aurae-mobile-close:hover {
  opacity: .55;
}


/* Search overlay (aurae) */
.aurae-search-overlay {
  position: fixed;
  inset: 0;
  z-index: 250;
  background: rgba(30, 28, 26, .45);
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s cubic-bezier(.22, 1, .36, 1);
}

.aurae-search-overlay.is-active {
  opacity: 1;
  pointer-events: auto;
}

.aurae-search-overlay__inner {
  position: absolute;
  top: 80px;
  left: 50%;
  width: min(720px, calc(100% - 48px));
  transform: translateX(-50%) translateY(-16px);
  background: rgba(247, 246, 244, .98);
  backdrop-filter: blur(16px);
  border: 1px solid var(--ep-rule);
  padding: 36px 40px;
  opacity: 0;
  transition: transform .5s cubic-bezier(.22, 1, .36, 1), opacity .45s cubic-bezier(.22, 1, .36, 1);
}

.aurae-search-overlay.is-active .aurae-search-overlay__inner {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.aurae-search-overlay__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  width: 100%;
}

.aurae-search-close {
  position: relative;
  top: -7px;
  flex-shrink: 0;
  appearance: none;
  border: none;
  background: transparent;
  padding: 6px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: opacity .2s;
}

.aurae-search-close:hover {
  opacity: .55;
}

.aurae-search-form {
  display: flex;
  gap: 0;
  align-items: stretch;
  width: 100%;
  flex: 1;
}

.aurae-search-form .search-field {
  background: none;
  border: none;
  border-bottom: 1px solid var(--ep-rule);
  font-family: var(--ep-serif);
  font-size: 22px;
  font-style: italic;
  color: var(--ep-ink);
  padding: 8px 0;
  outline: none;
  transition: border-color .2s;
  flex: 1 1 0%;
  min-width: 0;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
}

.aurae-search-form .search-field::-webkit-search-cancel-button,
.aurae-search-form .search-field::-webkit-search-decoration {
  -webkit-appearance: none;
  appearance: none;
  display: none;
}

.aurae-search-form .search-field:focus {
  border-color: var(--ep-accent);
}

.aurae-search-form .search-field::placeholder {
  color: var(--ep-mid);
}

.aurae-search-form button[type="submit"] {
  /*font-family: var(--ep-mono);*/
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ep-white);
  background: var(--ep-accent);
  border: 1px solid var(--ep-accent);
  padding: 0;
  width: 80px;
  flex: 0 0 80px;
  cursor: pointer;
  transition: background .2s;
  white-space: nowrap;
}

.aurae-search-form button[type="submit"]:hover {
  background: var(--ep-accent-light);
}























/* ── 무료 배송 badge ── */
.ep-free-badge {
  /*font-family: var(--ep-mono);*/
  /* font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ep-accent);
  font-weight: 400; */
  font-weight: 500;
  font-size: 13px;
}

/* 
.ep-shipping-free .ep-order-review__totals-value,
.ep-order-review__totals-row--shipping .ep-shipping-free {
  color: var(--ep-accent);
} */

/* ── 체크아웃 aurae-shell 패딩 제거 ── */
/* .woocommerce-checkout .aurae-site-main {
  padding-top: 0 !important;
} */


/* v5 checkout/cart/search fixes */
.ep-search-form {
  display: flex;
  gap: 12px;
  align-items: flex-end;
}

.ep-search-form label {
  margin-bottom: 0;
  flex: 1 1 auto;
  min-width: 0;
}

.ep-search-form .search-field {
  width: 100%;
  max-width: 100%;
}

.ep-search-form button[type=submit] {
  flex: 0 0 80px;
  width: 80px;
}

.woocommerce ul.products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.woocommerce ul.products li.product {
  width: 100%;
  min-width: 0;
  max-width: none;
}

.woocommerce ul.products li.product .woocommerce-LoopProduct-link {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-width: 0;
}

.ep-checkout-page-wrap .woocommerce>form.checkout.woocommerce-checkout,
form.checkout.woocommerce-checkout {
  float: none;
  width: 100%;
  max-width: none;
}

.ep-checkout-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 64px;
  align-items: start;
}

.ep-checkout-col--summary,
.ep-checkout-col--fields {
  min-width: 0;
}


.ep-checkout-col--fields #payment .place-order {
  padding-bottom: 0;
}



.ep-checkout-customer-details .col2-set,
.ep-checkout-customer-details .col2-set .col-1 {
  float: none;
  width: 100%;
}

.ep-checkout-customer-details .col2-set .col-2 {
  display: none !important;
}

#customer_details .woocommerce-billing-fields>h3 {
  margin: 0 0 28px;
}

/* 
.ep-checkout-col--fields #order_review_heading,
.ep-checkout-col--fields #order_review {
  display: block !important;
} */

.ep-order-review.woocommerce-checkout-review-order-table {
  display: block;
}

/* 
.ep-checkout-summary-body #order_review,
.ep-checkout-summary-body .ep-order-review {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
} */

.ep-cart-option-label {
  margin: 4px 0 0;
  font-size: 12px;
  color: var(--ep-muted);
}



@media (max-width: 1100px) {
  .ep-checkout-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ep-checkout-col--fields {
    order: 2;
    position: static;
  }

  .ep-checkout-col--summary {
    order: 1;
    border-right: 0;
    padding: 0;
  }

}


/* === v7 checkout layout fix (keep v5 option logic) === */
.ep-checkout-col--summary {
  display: block;
}

.ep-checkout-summary-body {
  display: block;
}






@media (max-width:960px) {
  .ep-checkout-summary-body {
    margin-bottom: 0;
  }


}


/* v9: shop/search product grid width hard-fix */
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  width: 100% !important;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.aurae-product-card,
.woocommerce ul.products li.product.aurae-product-card {
  width: 100%;
  min-width: 0;
}

.aurae-product-card>.woocommerce-LoopProduct-link,
.aurae-product-card>.woocommerce-loop-product__link {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-width: 0;
  flex: 1 1 auto;
}

.aurae-product-card__body {
  min-width: 0;
}

.aurae-product-card .woocommerce-loop-product__title {
  word-break: keep-all;
  overflow-wrap: anywhere;
}

@media (max-width: 900px) {

  body.woocommerce ul.products,
  body.woocommerce-page ul.products,
  body.search ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 14px;
  }

  .aurae-product-card__body {
    padding: 16px 14px 12px;
  }

  .aurae-product-card .woocommerce-loop-product__title {
    font-size: clamp(18px, 4.8vw, 24px);
    line-height: 1.22;
  }

  .aurae-product-card__actions {
    padding: 0 14px 14px;
  }
}

@media (max-width: 767px) {

  .aurae-single-product__summary {
    padding: 0 24px;
  }


  .ep-thankyou-layout {
    padding: 36px 0 72px;
  }

  .ep-thankyou-title {
    display: block !important;
    font-size: 34px;
    line-height: 1.12;
    margin: 12px 0 22px;
  }

  .ep-thankyou-layout .woocommerce-order-details__title,
  .ep-thankyou-layout .woocommerce-column__title,
  .ep-thankyou-layout h2.woocommerce-order-details__title,
  .ep-thankyou-layout h2.woocommerce-column__title {
    display: block !important;
    font-size: 18px;
    line-height: 1.25;
  }
}


.ep-thankyou-layout ul.woocommerce-thankyou-order-details,
.ep-thankyou-layout .woocommerce-thankyou-order-details,
.ep-thankyou-layout ul.woocommerce-thankyou-order-details>li,
.ep-thankyou-layout .woocommerce-thankyou-order-details li {
  float: none !important;
  width: auto !important;
  margin: 0 !important;
}

.single-product .blockUI.blockOverlay.ep-use-spinner::after,
.single-product .blockUI.blockOverlay[data-ep-spinner='1']::after {
  display: none !important;
  content: none !important;
}


/* v18 fixes */
@media (max-width: 960px) {
  .ep-checkout-summary-body {
    max-height: 0 !important;
    overflow: hidden !important;
    display: block !important;
    padding: 0 !important;
  }

  .ep-summary-toggle-cb:checked~.ep-checkout-summary-body {
    max-height: 3000px !important;
    padding: 0 0 16px !important;
    overflow: visible !important;
  }
}

@media (max-width: 820px) {

  .ep-thankyou-layout ul.woocommerce-thankyou-order-details,
  .ep-thankyou-layout .woocommerce-thankyou-order-details {
    display: grid !important;
    grid-template-columns: 1fr !important;
  }

  .ep-thankyou-layout ul.woocommerce-thankyou-order-details>li,
  .ep-thankyou-layout .woocommerce-thankyou-order-details li {
    width: 100% !important;
    border-right: 0 !important;
    border-bottom: 1px solid var(--ep-rule) !important;
    padding: 18px 20px !important;
  }

  .ep-thankyou-layout ul.woocommerce-thankyou-order-details>li:last-child,
  .ep-thankyou-layout .woocommerce-thankyou-order-details li:last-child {
    border-bottom: 0 !important;
  }

  .ep-thankyou-layout .woocommerce-thankyou-order-details li strong,
  .ep-thankyou-layout .woocommerce-order-overview li strong {
    width: 100%;
    margin-top: 6px;
  }
}


/* v19 fixes */
.ep-thankyou-layout .woocommerce-order-overview,
.ep-thankyou-layout ul.woocommerce-order-overview,
.ep-thankyou-layout ul.woocommerce-thankyou-order-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

@media (max-width: 820px) {

  .ep-thankyou-layout .woocommerce-order-overview,
  .ep-thankyou-layout ul.woocommerce-order-overview,
  .ep-thankyou-layout ul.woocommerce-thankyou-order-details {
    display: flex !important;
    flex-direction: column !important;
  }

  .ep-thankyou-layout .woocommerce-order-overview li,
  .ep-thankyou-layout ul.woocommerce-order-overview>li,
  .ep-thankyou-layout ul.woocommerce-thankyou-order-details>li,
  .ep-thankyou-layout .woocommerce-thankyou-order-details li {
    width: 100% !important;
    max-width: none !important;
    flex: none !important;
    border-right: 0 !important;
    border-bottom: 1px solid var(--ep-rule) !important;
  }

  .ep-thankyou-layout .woocommerce-order-overview li:last-child,
  .ep-thankyou-layout ul.woocommerce-order-overview>li:last-child,
  .ep-thankyou-layout ul.woocommerce-thankyou-order-details>li:last-child,
  .ep-thankyou-layout .woocommerce-thankyou-order-details li:last-child {
    border-bottom: 0 !important;
  }
}

/* v21 tweaks */
.ep-orders-pagination {
  width: 100%;
  justify-content: center !important;
  margin-left: auto;
  margin-right: auto;
}

.ep-orders-pagination .ep-page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.woocommerce-checkout #payment ul.payment_methods li:last-child,
.woocommerce-checkout #payment ul.payment_methods>li:last-child {
  border-bottom: none !important;
  padding-bottom: 0 !important;
}

.woocommerce-checkout #payment ul.payment_methods {
  margin-bottom: 0;
}

/* @media (max-width:960px) {

  .ep-checkout-summary-toggle,
  .ep-checkout-summary-body {
    border: none !important;
  }
} */

/* .ep-checkout-col--summary .ep-order-review,
.ep-checkout-col--summary .ep-checkout-summary-body,
.ep-checkout-col--summary #order_review {
  border: none !important;
  box-shadow: none !important;
} */

/* 로고변경 */
.hh-logo {
  position: relative;
  display: block;
  line-height: 1;
  text-decoration: none;
}

.hh-logo .logo-svg,
.hh-logo .hh-logo-svg {
  display: inline-block;
  line-height: 1;
  vertical-align: middle;
}



.hh-logo--header,
.hh-logo--checkout,
.hh-logo--account,
.hh-logo--hamburger {
  color: currentColor;
}

.hh-logo--footer {
  color: var(--ep-white);
}

.aurae-branding,
.ep-checkout-header__logo,
.ep-account-nav__brand,
.aurae-logo--footer,
.aurae-mobile-panel__top .hh-logo--hamburger {
  line-height: 1;
}

.aurae-header .aurae-logo.hh-logo,
.aurae-header .aurae-logo.hh-logo:visited,
.aurae-header .aurae-logo.hh-logo:hover,
.aurae-header .aurae-logo.hh-logo:focus,
.aurae-branding .hh-logo {
  color: var(--ep-dark);
}

.ep-checkout-header__logo.hh-logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  margin-top: 0;
}

.ep-account-nav__brand.hh-logo {
  margin-bottom: 14px;
}

.aurae-logo--footer.hh-logo {
  margin-bottom: 18px;
}

.aurae-mobile-panel__top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.aurae-mobile-panel__top .hh-logo--hamburger {
  position: static;
  transform: none;
  color: var(--ep-dark);
  pointer-events: auto;
  margin-right: auto;
}

.aurae-mobile-panel__top .aurae-mobile-close,
.aurae-mobile-panel__top .ep-close-btn {
  margin-left: auto;
  margin-right: 0;
  flex: 0 0 auto;
}

.aurae-mobile-panel__top .hh-logo--hamburger .logo-svg,
.aurae-mobile-panel__top .hh-logo--hamburger svg {
  display: block;
}

/* Xonte 로고 사이즈 반영 */

.hh-logo svg {
  display: inline-block;
  vertical-align: middle;
  width: 130px;
  height: auto;
  max-width: 100%;
  fill: currentColor;
}

.ep-checkout-header .hh-logo svg {
  max-width: 120px;
  margin-top: -3px;
}

@media (max-width: 1199px) {

  .hh-logo svg {
    width: 120px;
  }
}

@media (max-width: 767px) {

  .hh-logo svg {
    width: 110px;
  }
}


.aurae-header__actions .aurae-cart-link .aurae-cart-count,
.aurae-header__actions .aurae-cart-link .ep-cart-count {
  top: 9px;
  right: 2px;
  width: 6px;
  height: 6px;
  min-width: 6px;
  min-height: 6px;
  padding: 0;
  border-radius: 100px;
  background: var(--ep-ink);
  color: transparent;
  font-size: 0;
  line-height: 0;
  text-indent: -9999px;
  overflow: hidden;
}


/* ===== XONTE 폰트 이식 ===== */
body,
button,
input,
select,
textarea {
  font-family: var(--ep-sans);
}

h1,
h2,
h3,
h4,
h5,
h6,
bdi,
b,
strong {
  font-weight: 500;
}

/* 
h1,
h2,
h3,
h4,
h5,
h6,
.ep-logo,
.ep-logo--footer,
.aurae-logo,
.hh-logo,
.ep-section-title,
.ep-hero__title,
.ep-product-card__title,
.woocommerce-loop-product__title,
.product_title,
.ep-account-brand {
  font-family: var(--ep-serif);
  font-style: normal;
} */

/* 헤더배치변경 / 햄버거좌측오픈 / 푸터로고색상수정 */
.hh-logo--footer {
  color: var(--ep-dark);
}

.aurae-header__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  width: 100%;
  box-sizing: border-box;
}


.aurae-header__left,
.aurae-header__actions--right {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
}

.aurae-header__left {
  justify-content: flex-start;
}

.aurae-header__actions--right {
  justify-content: flex-end;
}

.aurae-branding--center {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.aurae-branding--center .hh-logo {
  margin: 0 auto;
}

.aurae-header .aurae-mobile-toggle {
  order: 1;
}

.aurae-header .aurae-header__left .aurae-icon-link {
  order: 2;
}

.aurae-mobile-panel__inner {
  margin-left: 0;
  margin-right: auto;
  transform: translate3d(-100%, 0, 0);
  box-shadow: 20px 0 60px rgba(30, 28, 26, .14);
}

.aurae-mobile-panel.is-active .aurae-mobile-panel__inner {
  transform: translate3d(0, 0, 0);
}



/* unified header icon system */
.aurae-icon-link svg {
  width: 24px;
  height: 24px;
  display: block;
  flex-shrink: 0;
  fill: currentColor;
}

.aurae-products,
.aurae-membership,
.aurae-generic-page,
.aurae-wrap,
.aurae-shop-head,
.aurae-cart-page,
.aurae-checkout-page {
  padding: 120px 60px 180px;
}



@media (max-width: 640px) {
  .aurae-mobile-panel__inner {
    width: 100%;
  }
}

@media (max-width: 1199px) {


  .aurae-header {
    padding: 22px 30px;
  }

  /* .aurae-single-product {
    padding: 0 45px;
  } */

  #header-search,
  #header-account {
    display: none;
  }


  .aurae-products,
  .aurae-membership,
  .aurae-generic-page,
  .aurae-wrap,
  .aurae-shop-head,
  .aurae-cart-page,
  .aurae-checkout-page {
    padding: 80px 25px 120px;
  }
}

@media (max-width: 767px) {

  body {
    font-size: 14px;
  }

  .aurae-header {
    padding: 12px 15px;
  }

  .aurae-header__inner {
    grid-template-columns: auto 1fr auto;
    gap: 0;
  }


  .aurae-header__left,
  .aurae-header__actions--right {
    gap: 2px;
  }

  button.aurae-mobile-toggle {
    margin-left: -4px;
  }

  .aurae-products,
  .aurae-membership,
  .aurae-generic-page,
  .aurae-wrap,
  .aurae-shop-head,
  .aurae-cart-page,
  .aurae-checkout-page {
    padding: 60px 0 120px;
  }

  .aurae-search-overlay__inner {
    top: 70px;
    padding: 24px;
  }

  .site-footer-info {
    text-align: left;
  }

  .aurae-footer {
    padding: 60px 25px 55px;
  }


}


#header-search {
  margin-left: 10px;
}

#header-account {
  margin-right: 3px;
}