/* ── SITE HEADER ─────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: var(--frame);
  inset-inline: var(--frame);
  height: 80px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-inline: 40px;
  z-index: 2000;
  border-bottom: 1px solid var(--border);
}

.nav-left,
.nav-right {
  display: flex;
  gap: 30px;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  flex: 1;
}

.nav-right { justify-content: flex-end; }

.nav-left a,
.nav-right a {
  color: var(--ink);
  transition: color var(--transition);
}

.nav-left a:hover,
.nav-right a:hover { color: var(--beige); }

.brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  color: var(--ink);
}

.brand-logo {
  height: 32px;
  width: auto;
  mix-blend-mode: multiply;
}

.brand span {
  font-family: var(--font-display);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
  z-index: 4001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--ink);
  transition: var(--transition);
}

.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 4000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  translate: 0 -100%;
  transition: translate 0.6s cubic-bezier(0.2, 1, 0.3, 1);
}

.mobile-nav.open { translate: 0 0; }

.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  opacity: 0;
  translate: 0 12px;
  transition: opacity 0.4s, translate 0.4s;
}

.mobile-nav.open a { opacity: 1; translate: 0 0; }
.mobile-nav.open a:nth-child(1) { transition-delay: 0.1s; }
.mobile-nav.open a:nth-child(2) { transition-delay: 0.2s; }
.mobile-nav.open a:nth-child(3) { transition-delay: 0.3s; }
.mobile-nav.open a:nth-child(4) { transition-delay: 0.4s; }

/* ── PDP LAYOUT ──────────────────────────────────────────────── */
.pdp {
  padding-top: calc(80px + var(--frame));
}

.pdp-layout {
  display: flex;
  max-width: 1400px;
  margin-inline: auto;
  padding: 40px;
  gap: 0;
}

.pdp-col-image {
  flex: 1.2;
  padding: 40px;
  position: sticky;
  top: calc(80px + var(--frame));
  height: fit-content;
  align-self: flex-start;
}

.pdp-col-image img {
  width: 100%;
  height: auto;
  box-shadow: var(--shadow-card);
}

.pdp-col-info {
  flex: 0.8;
  padding: 40px 60px;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

/* ── PDP INFO ────────────────────────────────────────────────── */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.5;
  margin-bottom: 32px;
  transition: opacity var(--transition);
}

.back-link:hover { opacity: 1; }

.pdp-header { margin-bottom: 32px; }

.pdp-name {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 8px;
}

.pdp-sub {
  font-size: 0.9rem;
  color: var(--beige);
  letter-spacing: 0.05em;
  font-weight: 300;
  margin-bottom: 20px;
}

.pdp-price {
  display: flex;
  align-items: center;
  gap: 14px;
}

.orig-price {
  font-size: 0.95rem;
  color: var(--muted);
  text-decoration: line-through;
  font-weight: 300;
}

.sale-price {
  font-size: 1.3rem;
  font-weight: 500;
}

.price-badge {
  font-size: 0.7rem;
  color: var(--beige);
  font-weight: 600;
  letter-spacing: 0.08em;
}

.pdp-desc {
  font-family: var(--font-korean);
  font-weight: 300;
  font-size: 0.95rem;
  line-height: 1.9;
  color: #555;
  margin-bottom: 40px;
}

/* ── SELECTS ─────────────────────────────────────────────────── */
.select-wrap {
  position: relative;
  margin-bottom: 20px;
}

.select-wrap select {
  width: 100%;
  padding: 18px 0;
  border: none;
  border-bottom: 1px solid #ddd;
  background: transparent;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.75rem;
  outline: none;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  color: var(--ink);
}

.select-wrap::after {
  content: '\f107';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  right: 0;
  top: 50%;
  translate: 0 -50%;
  color: var(--beige);
  pointer-events: none;
  font-size: 0.8rem;
}

/* ── NAVER CTA ───────────────────────────────────────────────── */
.naver-cta {
  display: block;
  background: var(--naver);
  color: var(--white);
  padding: 22px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.8rem;
  font-weight: 500;
  margin-top: 20px;
  transition: background var(--transition), translate 0.2s;
}

.paypal-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 24px;
  background: #f7f9fc;
  border: 1px solid #d0dce8;
  border-radius: 2px;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #003087;
  cursor: default;
  margin-top: 0;
}
.paypal-trust i {
  font-size: 1.1rem;
  color: #009cde;
}

.naver-cta:hover {
  background: #02b350;
  translate: 0 -2px;
}

.naver-cta i { margin-right: 8px; }

/* ── ACCORDION ───────────────────────────────────────────────── */
.accordion {
  margin-top: 40px;
  border-top: 1px solid #eee;
}

.acc-item { border-bottom: 1px solid #eee; }

.acc-trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px 0;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 500;
  color: var(--ink);
  text-align: left;
}

.acc-trigger i { transition: rotate 0.3s; }
.acc-item.open .acc-trigger i { rotate: 45deg; }

.acc-body {
  display: none !important;
  padding-bottom: 20px;
  font-family: var(--font-korean);
  font-weight: 300;
  font-size: 0.85rem;
  line-height: 1.9;
  color: #666;
}

.acc-item.open .acc-body { display: block !important; }

/* ── EDITORIAL ───────────────────────────────────────────────── */
.editorial {
  max-width: 1000px;
  margin-inline: auto;
  padding: 80px 20px 120px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.ed-divider {
  display: flex;
  align-items: center;
  gap: 20px;
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--beige);
}

.ed-divider::before,
.ed-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #e8e0da;
}

.story-block {
  opacity: 0;
  translate: 0 30px;
  transition: opacity 0.8s cubic-bezier(0.2, 1, 0.3, 1),
              translate 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

.story-block.visible { opacity: 1; translate: 0 0; }

.ed-intro {
  max-width: 600px;
  margin-inline: auto;
  text-align: center;
  padding: 20px;
  margin-bottom: 40px;
}

.ed-label {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--beige);
  margin-bottom: 14px;
}

.ed-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 18px;
}

.ed-desc {
  font-family: var(--font-korean);
  font-weight: 300;
  font-size: 0.9rem;
  line-height: 2.1;
  color: #555;
}

.ed-full img {
  width: 100%;
  height: auto;
  display: block;
}

/* Pair — both images same height, cropped consistently from top */
.ed-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  align-items: start;
}

.ed-pair img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* Quad — 4 images in a row, all same height */
.ed-quad {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.ed-quad img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 900px) {
  .pdp-layout {
    flex-direction: column;
    padding: 20px;
  }

  .pdp-col-image {
    position: static;
    padding: 20px;
  }

  .pdp-col-info {
    padding: 20px;
  }

  .pdp-name { font-size: 1.8rem; }
  .ed-quad  { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .site-header {
    height: 65px;
    padding-inline: 20px;
  }

  .nav-left,
  .nav-right  { display: none; }
  .hamburger  { display: flex; }
}

/* ── PRODUCT PAGE FOOTER ─────────────────────────────────────── */
.pdp-back-cta {
  text-align: center;
  padding: 80px 40px 60px;
  border-top: 1px solid #f0ece8;
}
.pdp-back-cta a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #1a1a1a;
  text-decoration: none;
  border: 1px solid #e0d8d2;
  padding: 16px 36px;
  border-radius: 1px;
  transition: all 0.3s ease;
}
.pdp-back-cta a:hover {
  background: #1a1a1a;
  color: #fff;
  border-color: #1a1a1a;
}

.pdp-brand-strip {
  background: #1a1a1a;
  color: rgba(255,255,255,0.5);
  padding: 48px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.pdp-brand-strip-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.pdp-brand-strip-wordmark {
  font-family: 'Playfair Display', serif;
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
}
.pdp-brand-strip-logo span {
  font-family: 'Playfair Display', serif;
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.pdp-brand-strip-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.pdp-brand-strip-links a {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color 0.3s;
}
.pdp-brand-strip-links a:hover { color: #C2B1A5; }
.pdp-brand-strip-copy {
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.2);
}
@media (max-width: 768px) {
  .pdp-back-cta { padding: 48px 24px 36px; }
  .pdp-brand-strip {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 24px 20px;
  }
  .pdp-brand-strip-logo img { height: 18px; }
  .pdp-brand-strip-logo span { display: none; }
  .pdp-brand-strip-links { gap: 16px; }
  .pdp-brand-strip-links a { font-size: 0.58rem; }
  .pdp-brand-strip-copy { width: 100%; text-align: center; font-size: 0.5rem; }
}
