/* ================================================
   WE WANT WEEKEND — Apple Store-inspired Design
   ================================================ */

@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.min.css');

/* ─── Design Tokens ─────────────────────────────── */
:root {
  /* Colors */
  --white:    #FFFFFF;
  --bg:       #F5F5F7;
  --black:    #1D1D1F;
  --gray-1:   #F5F5F7;
  --gray-2:   #E8E8ED;
  --gray-3:   #D2D2D7;
  --gray-4:   #86868B;
  --gray-5:   #6E6E73;
  --blue:     #0071E3;
  --blue-hov: #0077ED;
  --brand:    #1A6B3C;
  --brand-hov:#15572F;
  --brand-lt: #EBF5EF;
  --red:      #FF3B30;
  --red-bg:   #FFF2F1;

  /* Typography */
  --font: 'Pretendard', -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Helvetica Neue', Arial, sans-serif;
  --font-display: 'Pretendard', -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Helvetica Neue', Arial, sans-serif;

  /* Sizes */
  --nav-h:    48px;
  --sub-h:    44px;
  --radius:   12px;
  --radius-sm: 8px;
  --radius-pill: 980px;

  /* Shadows */
  --shadow-xs: 0 1px 3px rgba(0,0,0,.06);
  --shadow-sm: 0 2px 12px rgba(0,0,0,.08);
  --shadow-md: 0 4px 24px rgba(0,0,0,.10);
  --shadow-lg: 0 8px 40px rgba(0,0,0,.14);

  --t: all 0.25s ease;
}

/* ─── Reset ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--font);
  background: var(--white);
  color: var(--black);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }
input, select, textarea { font-family: inherit; }

/* ─── HEADER / NAV ──────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(255,255,255,0.85);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(0,0,0,.08);
  transition: var(--t);
}
.site-header.dark-header {
  background: rgba(29,29,31,0.88);
  border-bottom-color: rgba(255,255,255,.1);
}
.site-header.dark-header .nav-link { color: rgba(255,255,255,.8); }
.site-header.dark-header .nav-link:hover { color: #fff; }
.site-header.dark-header .logo { color: #fff; }
.site-header.dark-header .nav-icon svg { stroke: rgba(255,255,255,.8); }

.header-wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.logo {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--black);
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-center {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  flex-direction: column;
  padding: 8px 20px 12px;
  gap: 0;
  border-bottom: 1px solid var(--gray-2);
  z-index: 999;
}
.nav-center.open { display: flex; }
.nav-center .nav-link { color: var(--black) !important; opacity: 1; }
.nav-link {
  width: 100%;
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-2);
  font-size: 17px;
  font-weight: 400;
  color: var(--black);
  opacity: .88;
  transition: var(--t);
  padding: 4px 0;
}
.nav-link:hover { opacity: 1; }
.nav-link.active { opacity: 1; font-weight: 500; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 8px;
}
.lang-btn {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-5);
  padding: 4px 8px;
  border: 1px solid var(--gray-3);
  border-radius: var(--radius-pill);
  transition: var(--t);
  cursor: pointer;
  background: none;
  white-space: nowrap;
}
.lang-btn:hover { color: var(--black); border-color: var(--black); }
.site-header.dark-header .lang-btn { color: rgba(255,255,255,0.7); border-color: rgba(255,255,255,0.3); }
.site-header.dark-header .lang-btn:hover { color: white; border-color: white; }
.nav-icon {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  transition: var(--t);
  position: relative;
  color: var(--black);
}
.nav-icon:hover { background: rgba(0,0,0,.06); }
.nav-icon svg { stroke: var(--black); }

.cart-count {
  position: absolute;
  top: 2px; right: 2px;
  background: var(--brand);
  color: white;
  font-size: 9px;
  font-weight: 700;
  min-width: 14px; height: 14px;
  border-radius: var(--radius-pill);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
}
.cart-count.visible { display: flex; }

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 8px;
  border-radius: 6px;
}
.hamburger span {
  width: 20px; height: 1.5px;
  background: var(--black);
  display: block;
  transition: var(--t);
}

/* ─── MAIN CONTENT ──────────────────────────────── */
.main-content {
  padding-top: var(--nav-h);
}

/* ─── CATEGORY CAROUSEL (Apple-style) ───────────── */
.cat-carousel-section {
  background: var(--white);
  border-bottom: 1px solid var(--gray-2);
  padding: 28px 0 24px;
  position: sticky;
  top: var(--nav-h);
  z-index: 90;
}
.cat-carousel-outer {
  max-width: 1080px;
  margin: 0 auto;
  overflow: hidden;
}
.cat-carousel {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  padding: 0 0 0 24px;
}
.cat-carousel::-webkit-scrollbar { display: none; }

.cat-carousel-item {
  flex-shrink: 0;
  width: 96px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  padding: 10px 8px;
  border-radius: 12px;
  transition: background 0.2s ease;
  scroll-snap-align: start;
}
.cat-carousel-item:hover { background: var(--bg); }
.cat-carousel-item.active .cat-carousel-img { border: 2px solid var(--black); }
.cat-carousel-item.active .cat-carousel-name { font-weight: 700; color: var(--black); }

.cat-carousel-img {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 2px solid transparent;
  transition: var(--t);
  flex-shrink: 0;
}
.cat-carousel-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.cat-carousel-name {
  font-size: 12px;
  font-weight: 500;
  color: var(--black);
  text-align: center;
  white-space: nowrap;
  line-height: 1.3;
}


/* ─── PRODUCT FILTER BAR (inline, above grid) ───── */
.product-filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.filter-tab {
  padding: 7px 18px;
  border: 1px solid var(--gray-3);
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-5);
  background: var(--white);
  transition: var(--t);
  cursor: pointer;
}
.filter-tab:hover { border-color: var(--black); color: var(--black); }
.filter-tab.active { background: var(--black); border-color: var(--black); color: var(--white); }

/* ─── PROMOTIONAL HERO PANELS ───────────────────── */
.promo-hero {
  position: relative;
  min-height: 620px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  text-align: center;
  overflow: hidden;
  background: var(--black);
  padding-bottom: 80px;
}
.promo-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.5;
  transform: scale(1.03);
  transition: transform 8s ease;
}
.promo-hero:hover .promo-hero-bg { transform: scale(1); }
.promo-hero-content {
  position: relative;
  z-index: 2;
  color: white;
  padding: 0 24px;
  max-width: 700px;
}
.promo-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-bottom: 12px;
}
.promo-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 7vw, 80px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.promo-sub {
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 300;
  opacity: 0.82;
  margin-bottom: 32px;
  line-height: 1.5;
}
.promo-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}
.btn-promo-primary {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  background: white;
  color: var(--black);
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-pill);
  transition: var(--t);
}
.btn-promo-primary:hover { background: var(--bg); transform: scale(1.02); }
.btn-promo-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  border-bottom: 1px solid rgba(255,255,255,0.4);
  padding-bottom: 2px;
  transition: var(--t);
}
.btn-promo-link:hover { color: white; border-bottom-color: white; }

/* Split promo tiles */
.promo-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.promo-tile {
  position: relative;
  min-height: 440px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  text-align: center;
  overflow: hidden;
  background: var(--black);
  padding-bottom: 56px;
}
.promo-tile-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.45;
  transition: transform 0.5s ease, opacity 0.5s ease;
}
.promo-tile:hover .promo-tile-bg { transform: scale(1.04); opacity: 0.55; }
.promo-tile-content {
  position: relative;
  z-index: 2;
  color: white;
}
.promo-tile-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 8px;
}
.promo-tile-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}
.promo-tile-links {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-tile-primary {
  padding: 10px 22px;
  background: white;
  color: var(--black);
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--radius-pill);
  transition: var(--t);
}
.btn-tile-primary:hover { background: var(--bg); }
.btn-tile-link {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  border-bottom: 1px solid rgba(255,255,255,0.35);
  padding-bottom: 2px;
  transition: var(--t);
}
.btn-tile-link:hover { color: white; border-bottom-color: white; }

/* ─── BENEFITS STRIP ────────────────────────────── */
.benefits-strip {
  background: var(--white);
  border-top: 1px solid var(--gray-2);
  border-bottom: 1px solid var(--gray-2);
}
.benefits-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 24px;
  border-right: 1px solid var(--gray-2);
  transition: var(--t);
}
.benefit-item:last-child { border-right: none; }
.benefit-icon {
  font-size: 28px;
  flex-shrink: 0;
}
.benefit-title { font-size: 13px; font-weight: 600; margin-bottom: 2px; }
.benefit-desc { font-size: 12px; color: var(--gray-5); }

/* ─── STORE SECTIONS ────────────────────────────── */
.store-section {
  background: var(--bg);
  padding: 48px 0 80px;
}
.store-section .product-grid {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}
.store-section.bg-alt {
  max-width: 100%;
  background: var(--bg);
  padding: 80px 0;
}
.store-section.bg-alt .section-body {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 16px;
  flex-wrap: wrap;
}
.section-head-left {}
.section-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 6px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--black);
}
.section-see-all {
  font-size: 14px;
  font-weight: 500;
  color: var(--blue);
  white-space: nowrap;
  flex-shrink: 0;
  transition: var(--t);
}
.section-see-all:hover { color: var(--blue-hov); }

/* ─── PRODUCT TILES ─────────────────────────────── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.product-grid.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.product-tile {
  background: var(--white);
  border-radius: 18px;
  padding: 20px 20px 16px;
  display: flex;
  flex-direction: column;
  aspect-ratio: 5 / 6;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  transition: transform 0.35s cubic-bezier(0.34,1.4,0.64,1), box-shadow 0.35s ease;
  cursor: pointer;
  will-change: transform;
}
.product-tile:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 24px 56px rgba(0,0,0,0.13), 0 8px 20px rgba(0,0,0,0.07);
}

.tile-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
  line-height: 1.25;
  margin-bottom: 0;
}
.tile-name a { color: inherit; text-decoration: none; }

.tile-img-link {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 12px 0;
}
.tile-img-box {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.tile-img-box img {
  width: 100%;
  max-height: 180px;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: transform 0.4s ease;
}
.product-tile:hover .tile-img-box img { transform: scale(1.05); }

.tile-badge {
  position: absolute;
  top: 0; left: 0;
  background: var(--black);
  color: white;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 3px 9px;
  border-radius: var(--radius-pill);
}
.tile-badge.new { background: var(--brand); }
.tile-badge.sale { background: var(--red); }

.tile-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--gray-2);
}
.tile-price-group { display: flex; flex-direction: column; gap: 1px; }
.tile-price { font-size: 13px; font-weight: 500; color: var(--black); }
.tile-orig { font-size: 11px; color: var(--gray-4); text-decoration: line-through; }

.tile-buy-btn {
  flex-shrink: 0;
  padding: 7px 16px;
  background: var(--blue);
  color: white;
  font-size: 13px;
  font-weight: 500;
  border-radius: var(--radius-pill);
  transition: background 0.2s ease;
  white-space: nowrap;
}
.tile-buy-btn:hover { background: var(--blue-hov); }

/* ─── PRODUCT DETAIL ────────────────────────────── */
.pdp-breadcrumb {
  max-width: 1080px;
  margin: 0 auto;
  padding: 20px 24px 0;
  font-size: 13px;
  color: var(--gray-5);
  display: flex;
  align-items: center;
  gap: 6px;
}
.pdp-breadcrumb a { transition: var(--t); }
.pdp-breadcrumb a:hover { color: var(--blue); }
.pdp-breadcrumb-sep { opacity: 0.4; }

.pdp-wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 32px 24px 80px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: start;
}
.pdp-gallery { position: sticky; top: calc(var(--nav-h) + var(--sub-h) + 24px); }
.pdp-main-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius);
  background: var(--bg);
  margin-bottom: 10px;
}
.pdp-thumbs {
  display: flex;
  gap: 8px;
}
.pdp-thumbs:has(img:only-child) {
  display: none;
}
.pdp-thumb {
  width: 72px; height: 72px;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  opacity: 0.55;
  transition: var(--t);
  background: var(--bg);
}
.pdp-thumb.active, .pdp-thumb:hover { opacity: 1; border-color: var(--black); }

.pdp-info {}
.pdp-cat {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 8px;
}
.pdp-name {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 10px;
}
.pdp-price-row { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.pdp-price { font-size: 24px; font-weight: 700; }
.pdp-price-orig { font-size: 16px; color: var(--gray-4); text-decoration: line-through; }
.pdp-discount { font-size: 14px; font-weight: 700; color: var(--red); }

.pdp-desc {
  font-size: 15px;
  color: var(--gray-5);
  line-height: 1.8;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--gray-2);
}
/* ── PDP Spec Table ────────────────────────────── */
.pdp-spec-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 28px;
  font-size: 13px;
}
.pdp-spec-table th,
.pdp-spec-table td {
  padding: 11px 14px;
  border-bottom: 1px solid var(--gray-2);
  text-align: left;
  vertical-align: top;
  line-height: 1.5;
}
.pdp-spec-table th {
  width: 28%;
  color: var(--gray-4);
  font-weight: 500;
  white-space: nowrap;
  background: var(--bg);
}
.pdp-spec-table td {
  color: var(--black);
}
.pdp-spec-table tr:last-child th,
.pdp-spec-table tr:last-child td {
  border-bottom: none;
}

.pdp-features { margin-bottom: 28px; }
.pdp-features li {
  font-size: 14px;
  color: var(--gray-5);
  padding: 9px 0;
  border-bottom: 1px solid var(--gray-2);
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1.4;
}
.pdp-features li::before { content: '✓'; color: var(--brand); font-weight: 700; flex-shrink: 0; }

.pdp-qty-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.pdp-qty-label { font-size: 14px; font-weight: 500; min-width: 36px; }
.pdp-qty-ctrl {
  display: flex;
  align-items: center;
  border: 1px solid var(--gray-3);
  border-radius: var(--radius-pill);
  overflow: hidden;
}
.pdp-qty-btn {
  width: 38px; height: 38px;
  font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  transition: var(--t);
  color: var(--black);
}
.pdp-qty-btn:hover { background: var(--bg); }
.pdp-qty-input {
  width: 44px; height: 38px;
  text-align: center;
  border: none;
  border-left: 1px solid var(--gray-3);
  border-right: 1px solid var(--gray-3);
  font-size: 14px; font-weight: 600;
  outline: none;
  background: transparent;
}

.pdp-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 20px; }
.btn-pdp-cart {
  padding: 14px;
  border: 1.5px solid var(--black);
  border-radius: var(--radius-pill);
  font-size: 14px; font-weight: 600;
  color: var(--black); background: white;
  transition: var(--t);
}
.btn-pdp-cart:hover { background: var(--black); color: white; }
.btn-pdp-buy {
  padding: 14px;
  background: var(--brand);
  border-radius: var(--radius-pill);
  font-size: 14px; font-weight: 600;
  color: white;
  transition: var(--t);
}
.btn-pdp-buy:hover { background: var(--brand-hov); }

.pdp-note { font-size: 12px; color: var(--gray-4); line-height: 1.6; }

/* ─── PDP ACCORDION (배송/환불 정보) ─────────────── */
.pdp-accordion {
  margin-top: 32px;
  border-top: 1px solid var(--gray-2);
}
.pdp-accordion-item {
  border-bottom: 1px solid var(--gray-2);
}
.pdp-accordion-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
  text-align: left;
  gap: 8px;
}
.pdp-accordion-btn .acc-icon {
  flex-shrink: 0;
  font-size: 18px;
  color: var(--gray-4);
  transition: transform 0.25s ease;
  line-height: 1;
}
.pdp-accordion-item.open .acc-icon {
  transform: rotate(45deg);
}
.pdp-accordion-body {
  display: none;
  padding: 0 0 20px;
}
.pdp-accordion-item.open .pdp-accordion-body {
  display: block;
}
.pdp-accordion-body ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pdp-accordion-body ul li {
  font-size: 13px;
  color: var(--gray-5);
  line-height: 1.65;
  padding-left: 14px;
  position: relative;
}
.pdp-accordion-body ul li::before {
  content: '-';
  position: absolute;
  left: 0;
  color: var(--gray-4);
}

/* ─── ABOUT PAGE ────────────────────────────────── */
.about-hero {
  position: relative;
  min-height: 560px;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  background: var(--black);
  overflow: hidden;
}
.about-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.4;
}
.about-hero-content {
  position: relative; z-index: 2;
  color: white;
  padding: 0 24px;
  max-width: 660px;
}
.about-hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.65;
  margin-bottom: 14px;
}
.about-hero-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 68px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 16px;
}
.about-hero-sub {
  font-size: 19px;
  opacity: 0.78;
  font-weight: 300;
}

/* Alternating editorial sections */
.editorial-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}
.editorial-section.reverse { direction: rtl; }
.editorial-section.reverse > * { direction: ltr; }
.editorial-img {
  background: var(--bg);
  overflow: hidden;
}
.editorial-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.editorial-section:hover .editorial-img img { transform: scale(1.03); }
.editorial-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px 56px;
  background: var(--white);
}
.editorial-section.bg-dark .editorial-text { background: var(--black); color: white; }
.editorial-section.bg-alt .editorial-text { background: var(--bg); }
.editorial-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 12px;
}
.editorial-section.bg-dark .editorial-eyebrow { color: rgba(255,255,255,0.55); }
.editorial-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 18px;
}
.editorial-section.bg-dark .editorial-title { color: white; }
.editorial-body {
  font-size: 15px;
  color: var(--gray-5);
  line-height: 1.85;
}
.editorial-section.bg-dark .editorial-body { color: rgba(255,255,255,0.65); }
.editorial-body p + p { margin-top: 12px; }

/* Values grid */
.values-wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 80px 24px;
  text-align: center;
}
.values-heading {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 48px;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--gray-2);
  border-radius: var(--radius);
  overflow: hidden;
}
.value-item {
  background: var(--white);
  padding: 40px 32px;
  text-align: center;
}
.value-emoji { font-size: 44px; margin-bottom: 16px; }
.value-title { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.value-desc { font-size: 14px; color: var(--gray-5); line-height: 1.65; }

/* Team placeholder */
.team-section {
  background: var(--black);
  text-align: center;
  padding: 80px 24px;
}
.team-section h2 {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: white;
  margin-bottom: 14px;
}
.team-section p { font-size: 16px; color: rgba(255,255,255,0.55); }

/* ─── CART ──────────────────────────────────────── */
.page-wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 48px 24px 100px;
}
.page-title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 36px;
}

.cart-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
}

/* Cart item list */
.cart-items-box {}
.cart-item {
  display: grid;
  grid-template-columns: 88px 1fr auto;
  gap: 16px;
  align-items: start;
  padding: 24px 0;
  border-bottom: 1px solid var(--gray-2);
}
.cart-item:first-child { border-top: 1px solid var(--gray-2); }
.cart-item-img {
  width: 88px; height: 88px;
  object-fit: cover;
  border-radius: 10px;
  background: var(--bg);
}
.cart-item-info {}
.cart-item-cat {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 3px;
}
.cart-item-name {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
  line-height: 1.35;
}
.cart-item-unit {
  font-size: 13px;
  color: var(--gray-5);
  margin-bottom: 10px;
}
.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cart-qty-ctrl {
  display: flex;
  align-items: center;
  border: 1px solid var(--gray-3);
  border-radius: var(--radius-pill);
}
.cart-qty-btn {
  width: 30px; height: 30px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  color: var(--black);
  transition: var(--t);
}
.cart-qty-btn:hover { background: var(--bg); border-radius: var(--radius-pill); }
.cart-qty-num {
  width: 34px; height: 30px;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 600;
  border-left: 1px solid var(--gray-3);
  border-right: 1px solid var(--gray-3);
}
.cart-remove-btn {
  font-size: 12px;
  color: var(--gray-4);
  transition: var(--t);
}
.cart-remove-btn:hover { color: var(--red); }
.cart-item-total {
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
  padding-top: 3px;
}

/* Cart summary panel */
.cart-summary {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 28px;
  position: sticky;
  top: calc(var(--nav-h) + var(--sub-h) + 20px);
}
.cart-summary-title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gray-3);
}
.sum-line {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: var(--gray-5);
  margin-bottom: 8px;
}
.sum-line.total {
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--gray-3);
}
.btn-checkout-primary {
  width: 100%;
  margin-top: 20px;
  padding: 14px;
  background: var(--brand);
  color: white;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-pill);
  transition: var(--t);
  letter-spacing: 0.02em;
}
.btn-checkout-primary:hover { background: var(--brand-hov); }
.btn-continue-shop {
  width: 100%;
  margin-top: 10px;
  padding: 12px;
  background: transparent;
  color: var(--gray-5);
  font-size: 13px;
  font-weight: 500;
  border: 1px solid var(--gray-3);
  border-radius: var(--radius-pill);
  transition: var(--t);
}
.btn-continue-shop:hover { border-color: var(--black); color: var(--black); }

/* Empty cart */
.empty-cart {
  text-align: center;
  padding: 80px 24px;
}
.empty-cart-icon { font-size: 56px; margin-bottom: 20px; }
.empty-cart p { font-size: 17px; color: var(--gray-5); margin-bottom: 28px; }
.btn-go-shop {
  display: inline-block;
  padding: 12px 28px;
  background: var(--brand);
  color: white;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-pill);
  transition: var(--t);
}
.btn-go-shop:hover { background: var(--brand-hov); }

/* ─── CHECKOUT ──────────────────────────────────── */
.checkout-steps {
  max-width: 1080px;
  margin: 0 auto;
  padding: 28px 24px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  flex-wrap: wrap;
}
.step-item {
  color: var(--gray-4);
  font-weight: 400;
}
.step-item.done { color: var(--blue); font-weight: 500; cursor: pointer; }
.step-item.done:hover { text-decoration: underline; }
.step-item.current { color: var(--black); font-weight: 600; }
.step-sep { color: var(--gray-4); font-size: 11px; }

.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
  align-items: start;
}

.checkout-block {
  background: var(--white);
  border: 1px solid var(--gray-2);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 16px;
}
.checkout-block-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.step-bubble {
  width: 22px; height: 22px;
  background: var(--brand);
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700;
  flex-shrink: 0;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.form-row.full { grid-template-columns: 1fr; }
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-label { font-size: 12px; font-weight: 500; color: var(--gray-5); }
.form-label .req { color: var(--red); margin-left: 2px; }
.form-input {
  padding: 10px 14px;
  border: 1px solid var(--gray-3);
  border-radius: 10px;
  font-size: 14px;
  color: var(--black);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
}
.form-input:focus { border-color: var(--blue); }
.form-input.is-err { border-color: var(--red); }
.form-err { font-size: 11px; color: var(--red); display: none; }
.form-err.show { display: block; }
.addr-row { display: flex; gap: 8px; }
.btn-addr {
  padding: 10px 14px;
  background: var(--black);
  color: white;
  font-size: 12px;
  font-weight: 600;
  border-radius: 10px;
  flex-shrink: 0;
  white-space: nowrap;
  transition: var(--t);
}
.btn-addr:hover { background: var(--brand); }

/* Payment options */
.pay-options { display: flex; flex-direction: column; gap: 10px; }
.pay-option {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid var(--gray-3);
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--t);
}
.pay-option:hover { border-color: var(--gray-5); }
.pay-option.selected { border-color: var(--brand); background: var(--brand-lt); }
.pay-option input[type=radio] { width: 15px; height: 15px; accent-color: var(--brand); flex-shrink: 0; }
.pay-icon { font-size: 22px; width: 32px; text-align: center; }
.pay-info { flex: 1; }
.pay-name { font-size: 14px; font-weight: 600; }
.pay-desc { font-size: 12px; color: var(--gray-5); margin-top: 2px; }
.pay-tag { font-size: 10px; font-weight: 700; padding: 2px 7px; border-radius: var(--radius-pill); letter-spacing: 0.03em; }
.pay-tag.toss { background: #1B64DA; color: white; }

#easypay-sub { display: none; gap: 8px; margin-top: 10px; }
#easypay-sub.show { display: flex; }
.easypay-btn {
  flex: 1; padding: 10px 0;
  border: 1.5px solid var(--gray-2); border-radius: var(--radius);
  background: var(--bg); font-size: 13px; font-weight: 600;
  color: var(--gray-5); cursor: pointer; transition: var(--t);
}
.easypay-btn:hover { border-color: var(--black); color: var(--black); }
.easypay-btn.selected { border-color: var(--brand); color: var(--brand); background: #F0FFF4; }

.card-form {
  margin-top: 12px;
  padding: 16px;
  background: var(--bg);
  border-radius: 10px;
  display: none;
}
.card-form.show { display: block; }

/* Checkout order summary */
.checkout-summary-panel {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 28px;
  position: sticky;
  top: calc(var(--nav-h) + var(--sub-h) + 20px);
}
.co-sum-title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}
.co-item {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-2);
}
.co-item-img {
  width: 56px; height: 56px;
  border-radius: 8px;
  object-fit: cover;
  background: var(--white);
  flex-shrink: 0;
}
.co-item-info { flex: 1; }
.co-item-name { font-size: 13px; font-weight: 500; line-height: 1.35; margin-bottom: 2px; }
.co-item-qty { font-size: 12px; color: var(--gray-5); }
.co-item-price { font-size: 13px; font-weight: 600; align-self: center; white-space: nowrap; }

.btn-place-order {
  width: 100%;
  margin-top: 16px;
  padding: 15px;
  background: var(--brand);
  color: white;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-pill);
  transition: var(--t);
  letter-spacing: 0.02em;
}
.btn-place-order:hover { background: var(--brand-hov); }
.btn-place-order:disabled { background: var(--gray-3); color: var(--gray-5); cursor: not-allowed; }
.co-note {
  font-size: 11px;
  color: var(--gray-4);
  text-align: center;
  margin-top: 10px;
  line-height: 1.55;
}

/* ─── CONFIRMATION ──────────────────────────────── */
.confirm-wrap {
  max-width: 640px;
  margin: 0 auto;
  padding: 80px 24px 120px;
  text-align: center;
}
.confirm-icon { font-size: 68px; margin-bottom: 28px; animation: popIn 0.5s ease; }
@keyframes popIn {
  from { transform: scale(0.3); opacity: 0; }
  70% { transform: scale(1.1); }
  to { transform: scale(1); opacity: 1; }
}
.confirm-title {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.confirm-sub { font-size: 16px; color: var(--gray-5); margin-bottom: 40px; line-height: 1.6; }

.confirm-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 28px;
  text-align: left;
  margin-bottom: 28px;
}
.confirm-order-num-box {
  background: var(--brand-lt);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  margin-bottom: 24px;
}
.confirm-num-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 6px;
}
.confirm-num-value {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.confirm-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 24px;
}
.confirm-meta-item {
  background: var(--white);
  border-radius: 8px;
  padding: 14px;
}
.confirm-meta-label { font-size: 11px; color: var(--gray-4); margin-bottom: 4px; }
.confirm-meta-value { font-size: 14px; font-weight: 600; }

.confirm-items { border-top: 1px solid var(--gray-3); padding-top: 16px; }
.confirm-items-title { font-size: 13px; font-weight: 700; margin-bottom: 10px; }
.confirm-item-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  padding: 7px 0;
  border-bottom: 1px solid var(--gray-2);
}
.confirm-item-row:last-child { border-bottom: none; }
.confirm-total-row {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 700;
  padding-top: 14px;
  margin-top: 4px;
  border-top: 2px solid var(--black);
}
.confirm-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-home {
  padding: 13px 36px;
  background: var(--brand);
  color: white;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-pill);
  transition: var(--t);
}
.btn-home:hover { background: var(--brand-hov); }
.btn-more-shop {
  padding: 13px 28px;
  background: transparent;
  color: var(--gray-5);
  font-size: 14px;
  font-weight: 500;
  border: 1px solid var(--gray-3);
  border-radius: var(--radius-pill);
  transition: var(--t);
}
.btn-more-shop:hover { border-color: var(--black); color: var(--black); }

/* ─── FOOTER ─────────────────────────────────────── */
.site-footer {
  background: #F5F5F7;
  border-top: 1px solid var(--gray-2);
  padding: 48px 24px 32px;
}
.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--gray-3);
}
.footer-brand .logo { font-size: 15px; font-weight: 700; color: var(--black); margin-bottom: 12px; display: block; }
.footer-brand p { font-size: 12px; line-height: 1.75; color: var(--gray-5); max-width: 240px; }
.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 12px;
  letter-spacing: 0.01em;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a { font-size: 12px; color: var(--gray-5); transition: var(--t); }
.footer-col ul li a:hover { color: var(--black); }
.footer-bottom {
  max-width: 1080px;
  margin: 20px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  font-size: 11px;
  color: var(--gray-4);
  flex-wrap: wrap;
}
.footer-biz-info {
  line-height: 1.9;
  text-align: right;
}

/* ─── TOAST ─────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 28px; right: 28px;
  background: rgba(29,29,31,0.95);
  color: white;
  padding: 12px 20px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transform: translateY(12px);
  transition: all 0.3s ease;
  z-index: 9999;
  pointer-events: none;
  max-width: 320px;
  backdrop-filter: blur(10px);
}
.toast.show { opacity: 1; transform: translateY(0); }
.toast.success { background: var(--brand); }
.toast.error { background: var(--red); }

/* ─── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 1024px) {
  .cart-layout, .checkout-layout { grid-template-columns: 1fr; }
  .cart-summary, .checkout-summary-panel { position: static; }
  .pdp-wrap { grid-template-columns: 1fr; gap: 32px; }
  .pdp-gallery { position: static; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .editorial-section { grid-template-columns: 1fr; min-height: auto; }
  .editorial-section.reverse { direction: ltr; }
  .editorial-img { height: 300px; }
  .editorial-text { padding: 48px 32px; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --nav-h: 44px; --sub-h: 40px; }

  .header-wrap { padding: 0 16px; }
  .logo { font-size: 13px; }
  .nav-link { font-size: 16px; }

  .promo-hero { min-height: 480px; padding-bottom: 60px; }
  .promo-split { grid-template-columns: 1fr; }
  .promo-tile { min-height: 360px; padding-bottom: 48px; }

  .benefits-inner { grid-template-columns: 1fr 1fr; }
  .benefit-item { border-right: none; border-bottom: 1px solid var(--gray-2); padding: 16px; }
  .benefit-item:nth-child(even) { border-left: 1px solid var(--gray-2); }
  .benefit-item:nth-last-child(-n+2) { border-bottom: none; }

  .store-section { padding: 40px 0 56px; }
  .store-section .product-grid { padding: 0 16px; }

  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .product-grid.grid-4 { grid-template-columns: repeat(2, 1fr); }

  .values-grid { grid-template-columns: 1fr; }
  .values-wrap { padding: 56px 16px; }

  .page-wrap { padding: 32px 16px 80px; }
  .cart-item { grid-template-columns: 72px 1fr; }
  .cart-item-total { grid-column: 2; padding-top: 0; }

  .checkout-steps { padding: 20px 16px 0; font-size: 12px; gap: 4px; }

  .pdp-wrap { padding: 20px 16px 60px; }
  .pdp-actions { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .confirm-wrap { padding: 56px 16px 80px; }
  .confirm-meta { grid-template-columns: 1fr; }
  .confirm-actions { flex-direction: column; }
  .btn-home, .btn-more-shop { width: 100%; text-align: center; }

  .cat-subnav { justify-content: flex-start; padding: 0 16px; gap: 0; }

  .about-hero { min-height: 420px; }
  .editorial-text { padding: 40px 24px; }
}

@media (max-width: 480px) {
  .product-grid { grid-template-columns: 1fr; gap: 12px; }
  .product-tile { aspect-ratio: 5 / 6; padding: 20px 20px 16px; }
  .promo-hero { min-height: 380px; }
  .promo-title { font-size: 38px; }
  .benefits-inner { grid-template-columns: 1fr; }
  .benefit-item { border-bottom: 1px solid var(--gray-2) !important; border-left: none !important; }
  .cat-carousel { padding-left: 135px !important; }
}
