*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --brand:    #E4007D;
  --cream:    #FAF8F5;
  --cream2:   #F2EDE6;
  --gold:     #A67C52;
  --gold-lt:  #C9A882;
  --dark:     #1A1A1A;
  --mid:      #6B6B6B;
  --border:   #E0D9D0;
  --white:    #FFFFFF;
  --font-h:   'Cormorant Garamond', Georgia, serif;
  --font-b:   'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }
body { background: var(--cream); color: var(--dark); font-family: var(--font-b); font-size: 14px; line-height: 1.6; overflow-x: hidden; }

/* ── NAV ──────────────────────────────────────────────────── */
.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
nav {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 64px;
  height: 80px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
  list-style: none;
}
.nav-links > li { position: relative; }
.nav-links > li > a {
  font-family: var(--font-b);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--dark);
  text-decoration: none;
  transition: color .2s;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 0;
}
.nav-links > li > a:hover { color: var(--brand); }
.nav-links > li > a .chevron {
  width: 8px; height: 8px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  display: inline-block;
  transition: transform .2s;
}
.nav-links > li:hover > a .chevron { transform: rotate(-135deg) translateY(-2px); }

/* Dropdown mega-menu for SHOP */
.nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 1px);
  left: -20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 2px solid var(--brand);
  min-width: 220px;
  padding: 8px 0;
  box-shadow: 0 12px 40px rgba(0,0,0,.1);
  z-index: 200;
}
.nav-links > li:hover .nav-dropdown { display: block; }
.nav-dropdown a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  font-family: var(--font-b);
  font-size: 12px;
  letter-spacing: .06em;
  color: var(--dark);
  text-decoration: none;
  transition: all .15s;
}
.nav-dropdown a:hover { background: var(--cream); color: var(--brand); padding-left: 24px; }
.nav-dropdown .dd-badge {
  font-size: 9px;
  letter-spacing: .08em;
  padding: 2px 6px;
  background: var(--brand);
  color: #fff;
  border-radius: 2px;
}
.nav-dropdown .dd-badge.sale { background: #c0392b; }
.nav-dropdown hr { border: none; border-top: 1px solid var(--border); margin: 6px 0; }

.nav-logo {
  display: flex;
  justify-content: center;
  align-items: center;
}
.nav-logo a { display:flex; align-items:center; text-decoration:none; }
.nav-logo svg { height: 44px; width: auto; display:block; }

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

/* Icon buttons (search, wishlist, cart) */
.icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--dark);
  border-radius: 2px;
  transition: color .2s, background .2s;
  position: relative;
}
.icon-btn:hover { color: var(--brand); background: var(--cream); }

/* Language select */
.lang-select {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  padding: 6px 10px;
  border: 1px solid var(--border);
  border-radius: 2px;
  position: relative;
  margin-right: 6px;
}
.lang-select svg { color: var(--mid); flex-shrink: 0; }
.lang-select select {
  appearance: none;
  -webkit-appearance: none;
  border: none;
  background: transparent;
  font-family: var(--font-b);
  font-size: 11px;
  letter-spacing: .07em;
  color: var(--dark);
  cursor: pointer;
  padding-right: 14px;
  outline: none;
}
.lang-select::after {
  content: '';
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 0; height: 0;
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  border-top: 4px solid var(--mid);
  pointer-events: none;
}

/* Cart badge */
.cart-badge {
  position: absolute;
  top: 4px; right: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 15px; height: 15px;
  background: var(--brand);
  color: #fff;
  border-radius: 50%;
  font-size: 9px;
  font-weight: 600;
  line-height: 1;
}

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: calc(100vh - 80px);
  min-height: 560px;
  background: #3d2e24;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-img-placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #4a3728 0%, #2e1e18 40%, #1a1008 100%);
}
/* Decorative texture lines */
.hero-img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 60px,
    rgba(255,255,255,.015) 60px,
    rgba(255,255,255,.015) 61px
  );
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,5,3,.75) 0%, rgba(10,5,3,.25) 60%, transparent 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 40px;
  max-width: 860px;
}
.hero-eyebrow {
  font-family: var(--font-b);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-lt);
  font-weight: 300;
  margin-bottom: 20px;
  display: block;
}
.hero-title {
  font-family: var(--font-h);
  font-size: 84px;
  font-weight: 300;
  line-height: 1.0;
  color: #fff;
  letter-spacing: -.02em;
  margin-bottom: 24px;
}
.hero-title em { font-style: italic; }
.hero-subtitle {
  font-family: var(--font-h);
  font-size: 22px;
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,.8);
  letter-spacing: .02em;
  margin-bottom: 48px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--brand);
  color: #fff;
  border: 1px solid var(--brand);
  padding: 15px 40px;
  font-family: var(--font-b);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all .25s;
  cursor: pointer;
}
.btn-primary:hover { background: #c20069; border-color: #c20069; }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: rgba(255,255,255,.85);
  border: 1px solid rgba(255,255,255,.45);
  padding: 15px 36px;
  font-family: var(--font-b);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all .25s;
  cursor: pointer;
}
.btn-ghost:hover { border-color: #fff; color: #fff; }


/* ── HERO DOTS ─────────────────────────────────────────────── */
.hero-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.35);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background .3s, transform .3s;
  display: block;
  appearance: none;
  -webkit-appearance: none;
}
.hero-dot.active {
  background: #fff;
  transform: scale(1.4);
}
.hero-dot:focus { outline: none; }

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.5);
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-family: var(--font-b);
}
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
  animation: scroll-line 2s infinite;
}
@keyframes scroll-line {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  50.01% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ── SECTIONS GENERAL ─────────────────────────────────────── */
.section {
  padding: 96px 64px;
  max-width: 1440px;
  margin: 0 auto;
}
.section-full { padding: 96px 64px; }

.section-label {
  font-family: var(--font-b);
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--brand);
  font-weight: 300;
  margin-bottom: 12px;
  display: block;
}
.section-title {
  font-family: var(--font-h);
  font-size: 52px;
  font-weight: 300;
  line-height: 1.05;
  color: var(--dark);
  letter-spacing: -.01em;
  margin-bottom: 8px;
}
.section-title em { font-style: italic; }
.section-sub {
  font-family: var(--font-b);
  font-size: 14px;
  color: var(--mid);
  font-weight: 300;
  line-height: 1.7;
  max-width: 480px;
}

/* ── CATEGORIES ───────────────────────────────────────────── */
.cat-section { background: var(--cream); }
.cat-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 96px 64px;
}
.cat-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
}
.cat-head-link {
  font-family: var(--font-b);
  font-size: 12px;
  letter-spacing: .08em;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid var(--gold-lt);
  padding-bottom: 2px;
  transition: color .2s;
  white-space: nowrap;
  margin-bottom: 8px;
}
.cat-head-link:hover { color: var(--brand); border-color: var(--brand); }
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.cat-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.cat-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}
.cat-card:hover .cat-img { transform: scale(1.04); }
.cat-img-ph {
  width: 100%;
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-b);
  font-size: 12px;
  letter-spacing: .08em;
  color: rgba(255,255,255,.35);
  text-transform: uppercase;
  transition: transform .6s ease;
}
.cat-card:hover .cat-img-ph { transform: scale(1.04); }
.cat-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 28px 28px;
  background: linear-gradient(to top, rgba(0,0,0,.7) 0%, transparent 100%);
}
.cat-name {
  font-family: var(--font-h);
  font-size: 28px;
  font-weight: 400;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 6px;
}
.cat-sub {
  font-size: 12px;
  color: rgba(255,255,255,.7);
  letter-spacing: .04em;
  font-weight: 300;
  margin-bottom: 12px;
}
.cat-link {
  font-family: var(--font-b);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-lt);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap .2s;
}
.cat-card:hover .cat-link { gap: 10px; }

/* ── NEW ARRIVALS ──────────────────────────────────────────── */
.arrivals-section { background: var(--cream2); }
.arrivals-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 96px 64px;
}
.arrivals-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
}
.prod-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
/* ── PRODUCT FLIP CARDS ───────────────────────────────────── */
.prod-card {
  perspective: 1200px;
  cursor: pointer;
  height: 520px;
}
.prod-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform .65s cubic-bezier(.4,0,.2,1);
}
.prod-card:hover .prod-card-inner {
  transform: rotateY(180deg);
}
/* FRONT */
.prod-face {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.prod-face-front {
  background: var(--white);
  display: flex;
  flex-direction: column;
}
.prod-img-wrap {
  position: relative;
  flex: 0 0 320px;
  overflow: hidden;
}
.prod-img-ph {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-b);
  font-size: 11px;
  color: rgba(255,255,255,.4);
  letter-spacing: .1em;
}
.prod-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--brand);
  color: #fff;
  font-family: var(--font-b);
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 4px 10px;
  z-index: 2;
}
.prod-wishlist {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  cursor: pointer;
}
.img-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
  z-index: 2;
}
.img-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,.45);
}
.img-dot.active { background: #fff; }
.prod-info {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.prod-name {
  font-family: var(--font-h);
  font-size: 17px;
  font-weight: 400;
  color: var(--dark);
  line-height: 1.25;
  letter-spacing: .01em;
}
.prod-meta {
  font-family: var(--font-b);
  font-size: 11px;
  color: var(--mid);
  letter-spacing: .04em;
}
.size-row {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.size-chip {
  font-family: var(--font-b);
  font-size: 10px;
  letter-spacing: .06em;
  padding: 4px 10px;
  border: 1px solid var(--border);
  color: var(--mid);
  cursor: pointer;
  transition: all .2s;
}
.size-chip.active {
  border-color: var(--dark);
  color: var(--dark);
  background: var(--dark);
  color: #fff;
}
.prod-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}
.prod-price {
  font-family: var(--font-h);
  font-size: 18px;
  font-weight: 500;
  color: var(--dark);
  letter-spacing: .02em;
}
.btn-add {
  background: var(--dark);
  color: #fff;
  border: 1px solid var(--dark);
  padding: 9px 18px;
  font-family: var(--font-b);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s;
}
.btn-add:hover { background: var(--brand); border-color: var(--brand); }

/* BACK */
.prod-face-back {
  background: var(--cream);
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 24px 20px 20px;
}
.back-wish {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.back-img {
  width: 100%;
  height: 200px;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  overflow: hidden;
}
.back-img-ph {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-b);
  font-size: 10px;
  color: rgba(0,0,0,.25);
  letter-spacing: .08em;
}
.back-label {
  font-family: var(--font-b);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 10px;
  align-self: flex-start;
}
.back-desc {
  font-family: var(--font-h);
  font-size: 14px;
  font-style: italic;
  font-weight: 300;
  color: var(--dark);
  line-height: 1.6;
  margin-bottom: 20px;
  align-self: flex-start;
}
.back-actions {
  display: flex;
  gap: 8px;
  width: 100%;
  margin-top: auto;
}
.btn-add-cart {
  flex: 1;
  background: var(--brand);
  color: #fff;
  border: 1px solid var(--brand);
  padding: 11px 8px;
  font-family: var(--font-b);
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s;
}
.btn-add-cart:hover { background: #c20069; }
.btn-quick-view {
  flex: 1;
  background: transparent;
  color: var(--dark);
  border: 1px solid var(--dark);
  padding: 11px 8px;
  font-family: var(--font-b);
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .2s;
}
.btn-quick-view:hover { background: var(--dark); color: #fff; }


/* ── BRAND STORY ──────────────────────────────────────────── */
.story-section { background: var(--white); }
.story-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 640px;
}
.story-img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  background: #4a3728;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-b);
  font-size: 12px;
  letter-spacing: .08em;
  color: rgba(255,255,255,.3);
  text-transform: uppercase;
}
.story-text {
  padding: 96px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.story-text .section-title { font-size: 48px; margin-bottom: 24px; }
.story-body {
  font-family: var(--font-h);
  font-size: 18px;
  font-weight: 300;
  font-style: italic;
  color: var(--mid);
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 400px;
}
.story-sign {
  font-family: var(--font-h);
  font-size: 32px;
  color: var(--brand);
  font-style: italic;
  margin-bottom: 32px;
}
.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--dark);
  border: 1px solid var(--dark);
  padding: 13px 32px;
  font-family: var(--font-b);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all .2s;
  width: fit-content;
}
.btn-dark:hover { background: var(--dark); color: #fff; }

/* ── TRUST SIGNALS ─────────────────────────────────────────── */
.trust-section { background: var(--cream2); }
.trust-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 64px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}
.trust-icon {
  width: 48px;
  height: 48px;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}
.trust-title {
  font-family: var(--font-h);
  font-size: 18px;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 4px;
}
.trust-desc {
  font-size: 12px;
  color: var(--mid);
  font-weight: 300;
  line-height: 1.6;
  max-width: 180px;
}

/* ── NEWSLETTER ────────────────────────────────────────────── */
.newsletter-section {
  background: var(--dark);
  padding: 96px 64px;
  text-align: center;
}
.newsletter-inner { max-width: 560px; margin: 0 auto; }
.newsletter-section .section-label { color: var(--gold-lt); }
.newsletter-section .section-title { color: #fff; margin-bottom: 16px; }
.newsletter-section .section-sub { color: rgba(255,255,255,.55); margin: 0 auto 40px; text-align: center; }
.newsletter-form {
  display: flex;
  gap: 0;
  max-width: 440px;
  margin: 0 auto;
}
.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  font-family: var(--font-b);
  font-size: 13px;
  color: var(--dark);
  background: #fff;
  border: none;
  outline: none;
  letter-spacing: .02em;
}
.newsletter-form input::placeholder { color: #aaa; }
.newsletter-form button {
  padding: 14px 28px;
  background: var(--brand);
  color: #fff;
  border: none;
  font-family: var(--font-b);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s;
  white-space: nowrap;
}
.newsletter-form button:hover { background: #c20069; }
.newsletter-note {
  margin-top: 16px;
  font-size: 11px;
  color: rgba(255,255,255,.35);
  letter-spacing: .04em;
}

/* ── FOOTER ────────────────────────────────────────────────── */
footer { background: #111; color: rgba(255,255,255,.75); }
.footer-top {
  max-width: 1440px;
  margin: 0 auto;
  padding: 72px 64px 56px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 64px;
}
.footer-brand svg { width: 120px; height: auto; filter: brightness(0) invert(1); opacity: .85; margin-bottom: 20px; }
.footer-tagline {
  font-family: var(--font-h);
  font-size: 16px;
  font-style: italic;
  color: rgba(255,255,255,.5);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 260px;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.social-link {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  text-decoration: none;
  font-size: 13px;
  transition: all .2s;
}
.social-link:hover { border-color: var(--brand); color: var(--brand); }
.footer-col h4 {
  font-family: var(--font-b);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.9);
  font-weight: 500;
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: 13px;
  color: rgba(255,255,255,.5);
  text-decoration: none;
  transition: color .2s;
  font-weight: 300;
}
.footer-col ul a:hover { color: rgba(255,255,255,.9); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 24px 64px;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255,255,255,.3);
  letter-spacing: .04em;
}
.footer-bottom-links { display: flex; gap: 28px; }
.footer-bottom-links a {
  color: rgba(255,255,255,.3);
  text-decoration: none;
  transition: color .2s;
}
.footer-bottom-links a:hover { color: rgba(255,255,255,.7); }
.footer-pay {
  display: flex;
  gap: 8px;
  align-items: center;
}
.pay-icon {
  padding: 4px 8px;
  background: rgba(255,255,255,.08);
  border-radius: 3px;
  font-size: 10px;
  letter-spacing: .05em;
  color: rgba(255,255,255,.5);
  font-weight: 500;
}

/* ── ANNOTATION OVERLAY (design notes) ────────────────────── */
.anno {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: #FF3B30;
  color: #fff;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 600;
  font-family: var(--font-b);
  position: absolute;
  z-index: 10;
  cursor: default;
  box-shadow: 0 2px 8px rgba(0,0,0,.3);
}
.anno-tooltip {
  position: absolute;
  background: #111;
  color: #fff;
  font-size: 12px;
  font-family: var(--font-b);
  padding: 8px 12px;
  border-radius: 4px;
  white-space: nowrap;
  bottom: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  display: none;
  letter-spacing: .02em;
  pointer-events: none;
  z-index: 20;
}
.anno:hover .anno-tooltip { display: block; }

/* ── DESIGN NOTE PANEL ─────────────────────────────────────── */
.design-note {
  background: #FFF9F0;
  border-left: 3px solid var(--gold);
  padding: 16px 20px;
  margin: 8px 0;
  font-size: 12px;
  font-family: var(--font-b);
  color: #5a4a30;
  line-height: 1.6;
  border-radius: 0 4px 4px 0;
}
.design-note strong { color: var(--gold); font-weight: 500; }

/* ── DIVIDER ───────────────────────────────────────────────── */
.divider {
  width: 48px;
  height: 1px;
  background: var(--gold-lt);
  margin: 24px 0;
}

/* ── COLOR SWATCHES (design reference) ─────────────────────── */
.spec-panel {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 24px;
}


/* SHOP */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --brand:   #E4007D;
  --cream:   #FAF8F5;
  --cream2:  #F2EDE6;
  --gold:    #A67C52;
  --gold-lt: #C9A882;
  --dark:    #1A1A1A;
  --mid:     #6B6B6B;
  --border:  #E0D9D0;
  --white:   #FFFFFF;
  --font-h:  'Cormorant Garamond', Georgia, serif;
  --font-b:  'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }
body { background: var(--cream); color: var(--dark); font-family: var(--font-b); font-size: 14px; line-height: 1.6; }

/* ── NAV ───────────────────────────────────────────── */
.nav-wrap {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
nav {
  max-width: 1440px; margin: 0 auto; padding: 0 64px;
  height: 80px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center; gap: 24px;
}
.nav-links { display: flex; gap: 36px; align-items: center; list-style: none; }
.nav-links > li { position: relative; }
.nav-links > li > a {
  font-family: var(--font-b);
  font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--dark); text-decoration: none; transition: color .2s;
  display: flex; align-items: center; gap: 4px; padding: 8px 0;
}
.nav-links > li > a:hover,
.nav-links > li > a.active { color: var(--brand); }
.nav-links > li > a .chevron {
  width: 8px; height: 8px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  display: inline-block; transition: transform .2s;
}
.nav-links > li:hover > a .chevron { transform: rotate(-135deg) translateY(-2px); }

/* Dropdown */
.nav-dropdown {
  display: none; position: absolute;
  top: calc(100% + 1px); left: -20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 2px solid var(--brand);
  min-width: 220px; padding: 8px 0;
  box-shadow: 0 12px 40px rgba(0,0,0,.1); z-index: 200;
}
.nav-links > li:hover .nav-dropdown { display: block; }
.nav-dropdown a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 20px;
  font-family: var(--font-b); font-size: 12px; letter-spacing: .06em;
  color: var(--dark); text-decoration: none; transition: all .15s;
}
.nav-dropdown a:hover { background: var(--cream); color: var(--brand); padding-left: 24px; }
.nav-dropdown .dd-badge {
  font-size: 9px; letter-spacing: .08em; padding: 2px 6px;
  background: var(--brand); color: #fff; border-radius: 2px;
}
.nav-dropdown .dd-badge.sale { background: #c0392b; }
.nav-dropdown hr { border: none; border-top: 1px solid var(--border); margin: 6px 0; }

.nav-logo { display: flex; justify-content: center; align-items: center; }
.nav-logo a { display:flex; align-items:center; text-decoration:none; }
.nav-logo svg { height: 44px; width: auto; display:block; }

.nav-right {
  display: flex; align-items: center;
  justify-content: flex-end; gap: 6px;
}
.icon-btn {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  background: none; border: none; cursor: pointer;
  color: var(--dark); border-radius: 2px;
  transition: color .2s, background .2s; position: relative;
}
.icon-btn:hover { color: var(--brand); background: var(--cream); }
.lang-select {
  display: flex; align-items: center; gap: 5px;
  padding: 6px 10px;
  border: 1px solid var(--border); border-radius: 2px;
  position: relative; margin-right: 6px;
}
.lang-select svg { color: var(--mid); flex-shrink: 0; }
.lang-select select {
  appearance: none; -webkit-appearance: none;
  border: none; background: transparent;
  font-family: var(--font-b); font-size: 11px;
  letter-spacing: .07em; color: var(--dark);
  cursor: pointer; padding-right: 14px; outline: none;
}
.lang-select::after {
  content: ''; position: absolute; right: 8px; top: 50%;
  transform: translateY(-50%);
  width: 0; height: 0;
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  border-top: 4px solid var(--mid); pointer-events: none;
}
.cart-badge {
  position: absolute; top: 4px; right: 4px;
  display: inline-flex; align-items: center; justify-content: center;
  width: 15px; height: 15px;
  background: var(--brand); color: #fff;
  border-radius: 50%; font-size: 9px; font-weight: 600; line-height: 1;
}

/* ── SHOP HEADER BANNER ────────────────────────────── */
.shop-banner {
  background: var(--dark);
  padding: 56px 64px;
  position: relative;
  overflow: hidden;
}
.shop-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    -45deg, transparent, transparent 40px,
    rgba(255,255,255,.012) 40px, rgba(255,255,255,.012) 41px
  );
}
.shop-banner-inner {
  max-width: 1440px; margin: 0 auto;
  position: relative; z-index: 1;
}
.ss-breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-b); font-size: 11px;
  letter-spacing: .08em; text-transform: uppercase;
  color: rgba(255,255,255,.4); margin-bottom: 20px;
}
.ss-breadcrumb a { color: rgba(255,255,255,.4); text-decoration: none; transition: color .2s; }
.ss-breadcrumb a:hover { color: rgba(255,255,255,.8); }
.ss-breadcrumb span { color: rgba(255,255,255,.6); }
.shop-banner h1 {
  font-family: var(--font-h);
  font-size: 64px; font-weight: 300;
  color: #fff; letter-spacing: -.02em;
  line-height: 1.0; margin-bottom: 12px;
}
.shop-banner h1 em { font-style: italic; }
.shop-banner-sub {
  font-family: var(--font-h);
  font-size: 18px; font-weight: 300; font-style: italic;
  color: rgba(255,255,255,.5); letter-spacing: .02em;
}
.shop-count {
  position: absolute; right: 0; bottom: 0;
  font-family: var(--font-h);
  font-size: 120px; font-weight: 300;
  color: rgba(255,255,255,.04);
  line-height: 1; letter-spacing: -.04em;
  pointer-events: none;
}

/* ── FILTER BAR ────────────────────────────────────── */
.filter-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 80px; z-index: 90;
}
.filter-inner {
  max-width: 1440px; margin: 0 auto;
  padding: 0 64px;
  display: flex; align-items: center;
  justify-content: space-between; gap: 24px;
  height: 56px;
}
.filter-cats {
  display: flex; align-items: center; gap: 4px;
}
.filter-pill {
  padding: 6px 16px;
  border: 1px solid var(--border);
  border-radius: 20px;
  font-family: var(--font-b); font-size: 11px;
  letter-spacing: .07em; text-transform: uppercase;
  color: var(--mid); background: transparent;
  cursor: pointer; transition: all .2s; white-space: nowrap;
}
.filter-pill:hover { border-color: var(--dark); color: var(--dark); }
.filter-pill.active {
  background: var(--dark); border-color: var(--dark); color: #fff;
}
.filter-pill.brand-active {
  background: var(--brand); border-color: var(--brand); color: #fff;
}
.filter-right {
  display: flex; align-items: center; gap: 16px;
}
.filter-sort-wrap {
  display: flex; align-items: center; gap: 8px;
}
.filter-sort-label {
  font-family: var(--font-b); font-size: 11px;
  letter-spacing: .07em; color: var(--mid);
  white-space: nowrap;
}
.filter-sort {
  appearance: none; -webkit-appearance: none;
  border: 1px solid var(--border); background: transparent;
  font-family: var(--font-b); font-size: 11px;
  letter-spacing: .07em; color: var(--dark);
  padding: 6px 28px 6px 12px; cursor: pointer;
  outline: none; border-radius: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%236B6B6B'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
}
.filter-count-tag {
  font-family: var(--font-b); font-size: 11px;
  letter-spacing: .06em; color: var(--mid);
}
.filter-count-tag strong { color: var(--dark); font-weight: 500; }
.filter-divider { width: 1px; height: 20px; background: var(--border); }

/* ── SHOP LAYOUT ───────────────────────────────────── */
.shop-wrap {
  max-width: 1440px; margin: 0 auto;
  padding: 48px 64px 96px;
}

/* ── PRODUCT GRID ──────────────────────────────────── */
.prod-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* ── PRODUCT CARD ──────────────────────────────────── */
/* ── PRODUCT FLIP CARDS ───────────────────────────────────── */
.prod-card {
  perspective: 1200px;
  cursor: pointer;
  height: 520px;
  overflow: hidden;
}
.prod-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform .65s cubic-bezier(.4,0,.2,1);
}
.prod-card:hover .prod-card-inner {
  transform: rotateY(180deg);
}
/* FRONT */
.prod-face {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.prod-face-front {
  background: var(--white);
  display: flex;
  flex-direction: column;
}
.prod-img-wrap {
  position: relative;
  flex: 0 0 320px;
  overflow: hidden;
}
.prod-img-ph {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-b);
  font-size: 11px;
  color: rgba(255,255,255,.4);
  letter-spacing: .1em;
}
.prod-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--brand);
  color: #fff;
  font-family: var(--font-b);
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 4px 10px;
  z-index: 2;
}
.prod-wishlist {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  cursor: pointer;
}
.img-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
  z-index: 2;
}
.img-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,.45);
}
.img-dot.active { background: #fff; }
.prod-info {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.prod-name {
  font-family: var(--font-h);
  font-size: 17px;
  font-weight: 400;
  color: var(--dark);
  line-height: 1.25;
  letter-spacing: .01em;
}
.prod-meta {
  font-family: var(--font-b);
  font-size: 11px;
  color: var(--mid);
  letter-spacing: .04em;
}
.size-row {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.size-chip {
  font-family: var(--font-b);
  font-size: 10px;
  letter-spacing: .06em;
  padding: 4px 10px;
  border: 1px solid var(--border);
  color: var(--mid);
  cursor: pointer;
  transition: all .2s;
}
.size-chip.active {
  border-color: var(--dark);
  color: var(--dark);
  background: var(--dark);
  color: #fff;
}
.prod-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}
.prod-price {
  font-family: var(--font-h);
  font-size: 18px;
  font-weight: 500;
  color: var(--dark);
  letter-spacing: .02em;
}
.btn-add {
  background: var(--dark);
  color: #fff;
  border: 1px solid var(--dark);
  padding: 9px 18px;
  font-family: var(--font-b);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s;
}
.btn-add:hover { background: var(--brand); border-color: var(--brand); }

/* BACK */
.prod-face-back {
  background: var(--cream);
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 24px 20px 20px;
}
.back-wish {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.back-img {
  width: 100%;
  height: 200px;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  overflow: hidden;
}
.back-img-ph {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-b);
  font-size: 10px;
  color: rgba(0,0,0,.25);
  letter-spacing: .08em;
}
.back-label {
  font-family: var(--font-b);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 10px;
  align-self: flex-start;
}
.back-desc {
  font-family: var(--font-h);
  font-size: 14px;
  font-style: italic;
  font-weight: 300;
  color: var(--dark);
  line-height: 1.6;
  margin-bottom: 20px;
  align-self: flex-start;
}
.back-actions {
  display: flex;
  gap: 8px;
  width: 100%;
  margin-top: auto;
}
.btn-add-cart {
  flex: 1;
  background: var(--brand);
  color: #fff;
  border: 1px solid var(--brand);
  padding: 11px 8px;
  font-family: var(--font-b);
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s;
}
.btn-add-cart:hover { background: #c20069; }
.btn-quick-view {
  flex: 1;
  background: transparent;
  color: var(--dark);
  border: 1px solid var(--dark);
  padding: 11px 8px;
  font-family: var(--font-b);
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .2s;
}
.btn-quick-view:hover { background: var(--dark); color: #fff; }



/* ── LOAD MORE ─────────────────────────────────────── */
.load-more-wrap {
  text-align: center;
  padding: 64px 0 0;
}
.load-more-progress {
  font-family: var(--font-b); font-size: 12px;
  color: var(--mid); letter-spacing: .06em;
  margin-bottom: 20px;
}
.load-more-bar {
  width: 240px; height: 2px;
  background: var(--border); margin: 0 auto 24px;
  position: relative; overflow: hidden;
}
.load-more-bar::after {
  content: ''; position: absolute;
  left: 0; top: 0; height: 100%;
  width: 55%; background: var(--brand);
}
.btn-load {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: var(--dark);
  border: 1px solid var(--dark);
  padding: 14px 48px;
  font-family: var(--font-b); font-size: 11px;
  letter-spacing: .1em; text-transform: uppercase;
  cursor: pointer; transition: all .25s;
}
.btn-load:hover { background: var(--dark); color: #fff; }

/* ── EDITORIAL BAND ────────────────────────────────── */
.editorial-band {
  background: var(--cream2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.editorial-inner {
  max-width: 1440px; margin: 0 auto;
  padding: 64px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.editorial-text .section-label {
  font-family: var(--font-b); font-size: 11px;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--brand); font-weight: 300;
  margin-bottom: 12px; display: block;
}
.editorial-text h2 {
  font-family: var(--font-h); font-size: 44px;
  font-weight: 300; line-height: 1.05;
  color: var(--dark); letter-spacing: -.01em;
  margin-bottom: 20px;
}
.editorial-text h2 em { font-style: italic; }
.editorial-text p {
  font-family: var(--font-h); font-size: 17px;
  font-weight: 300; font-style: italic;
  color: var(--mid); line-height: 1.8;
  margin-bottom: 28px; max-width: 420px;
}
.btn-dark {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: var(--dark);
  border: 1px solid var(--dark); padding: 12px 28px;
  font-family: var(--font-b); font-size: 11px;
  letter-spacing: .1em; text-transform: uppercase;
  text-decoration: none; cursor: pointer; transition: all .2s;
}
.btn-dark:hover { background: var(--dark); color: #fff; }
.editorial-imgs {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.editorial-img-ph {
  aspect-ratio: 3/4;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-b); font-size: 11px;
  letter-spacing: .06em; color: rgba(255,255,255,.25);
  text-transform: uppercase;
}
.editorial-img-ph.tall { grid-row: span 2; aspect-ratio: auto; }

/* ── TRUST BAR ─────────────────────────────────────── */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.trust-bar-inner {
  max-width: 1440px; margin: 0 auto;
  padding: 32px 64px;
  display: flex; align-items: center;
  justify-content: space-between; gap: 40px;
}
.trust-item {
  display: flex; align-items: center; gap: 12px;
}
.trust-icon { color: var(--gold); flex-shrink: 0; }
.trust-title {
  font-family: var(--font-h); font-size: 15px;
  font-weight: 400; color: var(--dark);
}
.trust-sub {
  font-family: var(--font-b); font-size: 11px;
  color: var(--mid); font-weight: 300;
}
.trust-bar-divider { width: 1px; height: 40px; background: var(--border); }

/* ── NEWSLETTER ────────────────────────────────────── */
.newsletter-section {
  background: var(--dark); padding: 80px 64px; text-align: center;
}
.newsletter-inner { max-width: 520px; margin: 0 auto; }
.nl-label {
  font-family: var(--font-b); font-size: 11px; letter-spacing: .15em;
  text-transform: uppercase; color: var(--gold-lt);
  font-weight: 300; display: block; margin-bottom: 12px;
}
.nl-title {
  font-family: var(--font-h); font-size: 44px; font-weight: 300;
  color: #fff; line-height: 1.05; margin-bottom: 16px;
}
.nl-title em { font-style: italic; }
.nl-sub {
  font-family: var(--font-b); font-size: 14px;
  color: rgba(255,255,255,.5); font-weight: 300;
  margin-bottom: 36px; line-height: 1.7;
}
.newsletter-form { display: flex; gap: 0; max-width: 420px; margin: 0 auto; }
.newsletter-form input {
  flex: 1; padding: 13px 18px;
  font-family: var(--font-b); font-size: 13px;
  color: var(--dark); background: #fff;
  border: none; outline: none; letter-spacing: .02em;
}
.newsletter-form input::placeholder { color: #aaa; }
.newsletter-form button {
  padding: 13px 24px; background: var(--brand); color: #fff;
  border: none; font-family: var(--font-b); font-size: 11px;
  letter-spacing: .1em; text-transform: uppercase;
  cursor: pointer; transition: background .2s; white-space: nowrap;
}
.newsletter-form button:hover { background: #c20069; }
.nl-note { margin-top: 14px; font-size: 11px; color: rgba(255,255,255,.3); letter-spacing: .04em; }

/* ── FOOTER ────────────────────────────────────────── */


/* PRODUCT */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --brand:   #E4007D;
  --cream:   #FAF8F5;
  --cream2:  #F2EDE6;
  --gold:    #A67C52;
  --gold-lt: #C9A882;
  --dark:    #1A1A1A;
  --mid:     #6B6B6B;
  --border:  #E0D9D0;
  --white:   #FFFFFF;
  --font-h:  'Cormorant Garamond', Georgia, serif;
  --font-b:  'Inter', system-ui, sans-serif;
}
html { scroll-behavior: smooth; }
body { background: var(--cream); color: var(--dark); font-family: var(--font-b); font-size: 14px; line-height: 1.6; }

/* ── NAV ───────────────────────────────────────────── */
.nav-wrap { position: sticky; top: 0; z-index: 100; background: var(--white); border-bottom: 1px solid var(--border); }
nav { max-width: 1440px; margin: 0 auto; padding: 0 64px; height: 80px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 24px; }
.nav-links { display: flex; gap: 36px; align-items: center; list-style: none; }
.nav-links > li { position: relative; }
.nav-links > li > a { font-family: var(--font-b); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--dark); text-decoration: none; transition: color .2s; display: flex; align-items: center; gap: 4px; padding: 8px 0; }
.nav-links > li > a:hover, .nav-links > li > a.active { color: var(--brand); }
.nav-links > li > a .chevron { width: 8px; height: 8px; border-right: 1px solid currentColor; border-bottom: 1px solid currentColor; transform: rotate(45deg) translateY(-2px); display: inline-block; transition: transform .2s; }
.nav-links > li:hover > a .chevron { transform: rotate(-135deg) translateY(-2px); }
.nav-dropdown { display: none; position: absolute; top: calc(100% + 1px); left: -20px; background: var(--white); border: 1px solid var(--border); border-top: 2px solid var(--brand); min-width: 220px; padding: 8px 0; box-shadow: 0 12px 40px rgba(0,0,0,.1); z-index: 200; }
.nav-links > li:hover .nav-dropdown { display: block; }
.nav-dropdown a { display: flex; align-items: center; justify-content: space-between; padding: 10px 20px; font-family: var(--font-b); font-size: 12px; letter-spacing: .06em; color: var(--dark); text-decoration: none; transition: all .15s; }
.nav-dropdown a:hover { background: var(--cream); color: var(--brand); padding-left: 24px; }
.nav-dropdown .dd-badge { font-size: 9px; padding: 2px 6px; background: var(--brand); color: #fff; border-radius: 2px; }
.nav-dropdown .dd-badge.sale { background: #c0392b; }
.nav-dropdown hr { border: none; border-top: 1px solid var(--border); margin: 6px 0; }
.nav-logo { display: flex; justify-content: center; align-items: center; }
.nav-logo a { display:flex; align-items:center; text-decoration:none; }
.nav-logo svg { height: 44px; width: auto; display:block; }
.nav-right { display: flex; align-items: center; justify-content: flex-end; gap: 6px; }
.icon-btn { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; background: none; border: none; cursor: pointer; color: var(--dark); border-radius: 2px; transition: color .2s, background .2s; position: relative; }
.icon-btn:hover { color: var(--brand); background: var(--cream); }
.lang-select { display: flex; align-items: center; gap: 5px; padding: 6px 10px; border: 1px solid var(--border); border-radius: 2px; position: relative; margin-right: 6px; }
.lang-select svg { color: var(--mid); flex-shrink: 0; }
.lang-select select { appearance: none; -webkit-appearance: none; border: none; background: transparent; font-family: var(--font-b); font-size: 11px; letter-spacing: .07em; color: var(--dark); cursor: pointer; padding-right: 14px; outline: none; }
.lang-select::after { content: ''; position: absolute; right: 8px; top: 50%; transform: translateY(-50%); width: 0; height: 0; border-left: 3px solid transparent; border-right: 3px solid transparent; border-top: 4px solid var(--mid); pointer-events: none; }
.cart-badge { position: absolute; top: 4px; right: 4px; display: inline-flex; align-items: center; justify-content: center; width: 15px; height: 15px; background: var(--brand); color: #fff; border-radius: 50%; font-size: 9px; font-weight: 600; }

/* ── BREADCRUMB ────────────────────────────────────── */
.breadcrumb-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.breadcrumb-inner {
  max-width: 1440px; margin: 0 auto;
  padding: 14px 64px;
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-b); font-size: 11px;
  letter-spacing: .07em; color: var(--mid);
}
.breadcrumb-inner a { color: var(--mid); text-decoration: none; transition: color .2s; }
.breadcrumb-inner a:hover { color: var(--brand); }
.breadcrumb-inner span.current { color: var(--dark); }
.breadcrumb-inner .sep { opacity: .4; }

/* ── PRODUCT LAYOUT ────────────────────────────────── */
.product-section {
  max-width: 1440px; margin: 0 auto;
  padding: 48px 64px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

/* ── GALLERY ───────────────────────────────────────── */
.gallery { display: flex; flex-direction: column; gap: 12px; position: sticky; top: 108px; }
.gallery-main {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--cream2);
  cursor: zoom-in;
}
.gallery-main-ph {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-b); font-size: 12px; letter-spacing: .08em;
  color: rgba(0,0,0,.18); text-transform: uppercase;
  transition: transform .6s cubic-bezier(.25,.46,.45,.94);
}
.gallery-main:hover .gallery-main-ph { transform: scale(1.04); }

.gallery-badge {
  position: absolute; top: 18px; left: 18px;
  background: var(--gold); color: #fff;
  font-family: var(--font-b); font-size: 9px;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 5px 10px; z-index: 2;
}
.gallery-zoom-hint {
  position: absolute; bottom: 16px; right: 16px;
  background: rgba(255,255,255,.88);
  font-family: var(--font-b); font-size: 10px;
  letter-spacing: .08em; color: var(--mid);
  padding: 6px 10px; display: flex; align-items: center; gap: 5px;
  opacity: 0; transition: opacity .2s;
}
.gallery-main:hover .gallery-zoom-hint { opacity: 1; }

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.thumb {
  aspect-ratio: 1;
  cursor: pointer;
  overflow: hidden;
  border: 2px solid transparent;
  transition: border-color .2s;
}
.thumb.active { border-color: var(--dark); }
.thumb:hover { border-color: var(--gold-lt); }
.thumb-ph {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-b); font-size: 9px;
  letter-spacing: .06em; color: rgba(0,0,0,.2);
  text-transform: uppercase;
  transition: transform .4s;
}
.thumb:hover .thumb-ph { transform: scale(1.06); }

/* ── PRODUCT INFO ──────────────────────────────────── */
.prod-info-wrap { display: flex; flex-direction: column; gap: 0; }

.prod-header { margin-bottom: 20px; }
.prod-label {
  font-family: var(--font-b); font-size: 11px;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold); font-weight: 300; display: block;
  margin-bottom: 8px;
}
.prod-title {
  font-family: var(--font-h); font-size: 52px;
  font-weight: 300; line-height: 1.0;
  color: var(--dark); letter-spacing: -.02em;
  margin-bottom: 8px;
}
.prod-title em { font-style: italic; }
.prod-subtitle {
  font-family: var(--font-h); font-size: 18px;
  font-style: italic; color: var(--mid);
  font-weight: 300; line-height: 1.5;
}

/* Rating */
.prod-rating {
  display: flex; align-items: center; gap: 10px;
  margin: 16px 0;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.stars { display: flex; gap: 2px; }
.star {
  width: 14px; height: 14px;
  color: var(--gold);
}
.rating-count {
  font-family: var(--font-b); font-size: 12px;
  color: var(--mid); font-weight: 300;
}
.rating-link {
  font-family: var(--font-b); font-size: 12px;
  color: var(--mid); text-decoration: underline;
  text-underline-offset: 3px; cursor: pointer;
  transition: color .2s;
}
.rating-link:hover { color: var(--brand); }

/* Price */
.price-row {
  display: flex; align-items: baseline; gap: 12px;
  margin-bottom: 28px;
}
.price-main {
  font-family: var(--font-h); font-size: 40px;
  font-weight: 500; color: var(--dark);
}
.price-vat {
  font-family: var(--font-b); font-size: 12px;
  color: var(--mid); font-weight: 300;
}

/* Size selector */
.option-block { margin-bottom: 24px; }
.option-label {
  font-family: var(--font-b); font-size: 11px;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--dark); font-weight: 500;
  display: flex; align-items: center;
  justify-content: space-between; margin-bottom: 12px;
}
.size-guide-link {
  font-family: var(--font-b); font-size: 11px;
  color: var(--mid); text-decoration: underline;
  text-underline-offset: 3px; cursor: pointer;
  transition: color .2s; font-weight: 300;
  letter-spacing: .04em; text-transform: none;
}
.size-guide-link:hover { color: var(--brand); }
.size-grid { display: flex; gap: 8px; }
.size-opt {
  padding: 10px 20px;
  border: 1px solid var(--border);
  font-family: var(--font-b); font-size: 12px;
  font-weight: 400; color: var(--mid);
  cursor: pointer; transition: all .2s;
  border-radius: 2px; text-align: center;
  min-width: 72px;
}
.size-opt:hover { border-color: var(--dark); color: var(--dark); }
.size-opt.active { border-color: var(--dark); background: var(--dark); color: #fff; }
.size-opt.unavailable { opacity: .35; cursor: not-allowed; text-decoration: line-through; }

/* Size info below */
.size-note {
  margin-top: 8px;
  font-family: var(--font-b); font-size: 11px;
  color: var(--mid); font-weight: 300;
  display: flex; align-items: center; gap: 6px;
}

/* Quantity */
.qty-row {
  display: flex; align-items: center;
  gap: 0; margin-bottom: 24px;
  border: 1px solid var(--border);
  width: fit-content; border-radius: 2px;
}
.qty-btn {
  width: 44px; height: 44px;
  background: none; border: none;
  font-size: 18px; cursor: pointer;
  color: var(--dark); transition: background .15s;
  display: flex; align-items: center; justify-content: center;
}
.qty-btn:hover { background: var(--cream2); }
.qty-val {
  width: 52px; text-align: center;
  font-family: var(--font-b); font-size: 14px;
  color: var(--dark); border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  padding: 0 8px; line-height: 44px;
}

/* CTAs */
.cta-row { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.btn-cart {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--brand); color: #fff;
  border: 1px solid var(--brand); padding: 16px 32px;
  font-family: var(--font-b); font-size: 12px;
  letter-spacing: .12em; text-transform: uppercase;
  cursor: pointer; transition: all .25s; width: 100%;
}
.btn-cart:hover { background: #c20069; border-color: #c20069; }
.btn-wishlist {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: transparent; color: var(--dark);
  border: 1px solid var(--border); padding: 13px 32px;
  font-family: var(--font-b); font-size: 12px;
  letter-spacing: .1em; text-transform: uppercase;
  cursor: pointer; transition: all .2s; width: 100%;
}
.btn-wishlist:hover { border-color: var(--brand); color: var(--brand); }

/* Mini trust */
.mini-trust {
  display: flex; flex-direction: column; gap: 10px;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 28px;
}
.mini-trust-item {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-b); font-size: 12px;
  color: var(--mid); font-weight: 300;
}
.mini-trust-item svg { color: var(--gold); flex-shrink: 0; }
.mini-trust-item strong { color: var(--dark); font-weight: 400; }

/* Accordion */
.accordion { border-top: 1px solid var(--border); }
.acc-item { border-bottom: 1px solid var(--border); }
.acc-trigger {
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 18px 0; cursor: pointer;
  font-family: var(--font-b); font-size: 12px;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--dark); font-weight: 500;
  background: none; border: none; width: 100%;
  text-align: left; transition: color .2s;
}
.acc-trigger:hover { color: var(--brand); }
.acc-icon {
  width: 20px; height: 20px;
  position: relative; flex-shrink: 0;
}
.acc-icon::before, .acc-icon::after {
  content: ''; position: absolute;
  background: currentColor; border-radius: 1px;
  transition: transform .3s, opacity .3s;
}
.acc-icon::before { width: 12px; height: 1px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.acc-icon::after  { width: 1px; height: 12px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.acc-trigger.open .acc-icon::after { transform: translate(-50%,-50%) rotate(90deg); opacity: 0; }
.acc-body {
  max-height: 0; overflow: hidden;
  transition: max-height .4s cubic-bezier(.25,.46,.45,.94), padding .3s;
}
.acc-body.open { max-height: 600px; }
.acc-content {
  padding-bottom: 20px;
  font-family: var(--font-h); font-size: 16px;
  font-weight: 300; font-style: italic;
  color: var(--mid); line-height: 1.8;
}
.acc-content ul {
  list-style: none; display: flex; flex-direction: column; gap: 8px;
  font-style: normal; font-size: 14px; font-family: var(--font-b);
}
.acc-content ul li {
  display: flex; align-items: baseline; gap: 10px;
  font-weight: 300;
}
.acc-content ul li::before {
  content: '—'; color: var(--gold-lt); flex-shrink: 0;
  font-family: var(--font-b); font-size: 11px;
}
.acc-content .material-spec {
  display: grid; grid-template-columns: auto 1fr;
  gap: 6px 20px; font-style: normal;
  font-family: var(--font-b); font-size: 13px;
}
.acc-content .spec-key {
  font-weight: 500; color: var(--dark);
  text-transform: uppercase; font-size: 10px;
  letter-spacing: .1em; align-self: center;
}
.acc-content .spec-val { color: var(--mid); font-weight: 300; align-self: center; }

/* ── RELATED PRODUCTS ──────────────────────────────── */
.related-section { background: var(--cream2); }
.related-inner {
  max-width: 1440px; margin: 0 auto;
  padding: 80px 64px;
}
.related-head {
  display: flex; align-items: flex-end;
  justify-content: space-between; margin-bottom: 48px;
}
.section-label {
  font-family: var(--font-b); font-size: 11px;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--brand); font-weight: 300;
  margin-bottom: 8px; display: block;
}
.section-title {
  font-family: var(--font-h); font-size: 44px;
  font-weight: 300; line-height: 1.05;
  color: var(--dark); letter-spacing: -.01em;
}
.section-title em { font-style: italic; }
.view-all-link {
  font-family: var(--font-b); font-size: 12px;
  letter-spacing: .08em; color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid var(--gold-lt);
  padding-bottom: 2px; transition: color .2s;
  white-space: nowrap; margin-bottom: 8px;
}
.view-all-link:hover { color: var(--brand); border-color: var(--brand); }

/* Product cards — flip system (same as shop page) */
.prod-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.prod-card {
  perspective: 1200px;
  cursor: pointer;
  height: 480px;
  overflow: hidden;
}
.prod-card-inner {
  position: relative;
  width: 100%; height: 100%;
  transform-style: preserve-3d;
  transition: transform .65s cubic-bezier(.4,0,.2,1);
}
.prod-card:hover .prod-card-inner { transform: rotateY(180deg); }
.prod-face {
  position: absolute; inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.prod-face-front {
  background: var(--white);
  display: flex; flex-direction: column;
}
.prod-img-wrap { position: relative; flex: 0 0 300px; overflow: hidden; }
.prod-img-ph {
  width: 100%; height: 100%;
  display: flex; align-items: flex-end; justify-content: center;
  padding-bottom: 24px; font-size: 11px; letter-spacing: .08em;
  color: rgba(255,255,255,.25); text-transform: uppercase;
  transition: transform .6s cubic-bezier(.25,.46,.45,.94);
  font-family: var(--font-b);
}
.prod-face-back {
  background: var(--cream);
  transform: rotateY(180deg);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 0; padding: 24px 20px 20px;
}
.back-wish {
  position: absolute; top: 14px; right: 14px;
  width: 32px; height: 32px;
  background: rgba(255,255,255,.9); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; cursor: pointer;
}
.back-img { width: 100%; height: 180px; border-radius: 2px; overflow: hidden; margin-bottom: 14px; }
.back-img-ph { width: 100%; height: 100%; }
.back-label {
  font-family: var(--font-b); font-size: 9px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 8px;
}
.back-name {
  font-family: var(--font-h); font-size: 20px; font-weight: 400;
  color: var(--dark); margin-bottom: 6px; text-align: center;
}
.back-desc {
  font-family: var(--font-h); font-size: 13px; font-style: italic;
  font-weight: 300; color: var(--mid); line-height: 1.55;
  text-align: center; margin: 0 0 16px;
}
.back-actions { display: flex; gap: 8px; width: 100%; }
.btn-add-cart {
  flex: 1; background: var(--brand); color: #fff; border: none;
  padding: 11px 10px; font-family: var(--font-b); font-size: 10px;
  letter-spacing: .1em; text-transform: uppercase; cursor: pointer;
  transition: background .2s;
}
.btn-add-cart:hover { background: #c20069; }
.btn-quick-view {
  background: transparent; color: var(--dark);
  border: 1px solid var(--border); padding: 11px 12px;
  font-family: var(--font-b); font-size: 10px; letter-spacing: .1em;
  text-transform: uppercase; cursor: pointer; transition: all .2s;
  white-space: nowrap;
}
.btn-quick-view:hover { border-color: var(--dark); }
.prod-badge { position: absolute; top: 14px; left: 14px; background: var(--brand); color: #fff; font-size: 9px; letter-spacing: .1em; text-transform: uppercase; padding: 4px 8px; font-family: var(--font-b); font-weight: 500; z-index: 2; }
.prod-badge.limited { background: var(--gold); }
.prod-wishlist { position: absolute; top: 12px; right: 12px; width: 32px; height: 32px; background: rgba(255,255,255,.92); border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; opacity: 0; transition: opacity .2s; z-index: 2; }
.prod-card:hover .prod-wishlist { opacity: 1; }
.prod-info { padding: 14px 16px 16px; }
.prod-name { font-family: var(--font-h); font-size: 17px; font-weight: 400; color: var(--dark); margin-bottom: 3px; }
.prod-meta { font-family: var(--font-b); font-size: 12px; color: var(--mid); font-weight: 300; margin-bottom: 10px; }
.prod-price-sm { font-family: var(--font-h); font-size: 20px; font-weight: 500; color: var(--dark); }

/* ── NEWSLETTER ────────────────────────────────────── */
.newsletter-section { background: var(--dark); padding: 80px 64px; text-align: center; }
.newsletter-inner { max-width: 520px; margin: 0 auto; }
.nl-label { font-family: var(--font-b); font-size: 11px; letter-spacing: .15em; text-transform: uppercase; color: var(--gold-lt); font-weight: 300; display: block; margin-bottom: 12px; }
.nl-title { font-family: var(--font-h); font-size: 44px; font-weight: 300; color: #fff; line-height: 1.05; margin-bottom: 16px; }
.nl-title em { font-style: italic; }
.nl-sub { font-family: var(--font-b); font-size: 14px; color: rgba(255,255,255,.5); font-weight: 300; margin-bottom: 36px; line-height: 1.7; }
.newsletter-form { display: flex; gap: 0; max-width: 420px; margin: 0 auto; }
.newsletter-form input { flex: 1; padding: 13px 18px; font-family: var(--font-b); font-size: 13px; color: var(--dark); background: #fff; border: none; outline: none; }
.newsletter-form input::placeholder { color: #aaa; }
.newsletter-form button { padding: 13px 24px; background: var(--brand); color: #fff; border: none; font-family: var(--font-b); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; cursor: pointer; transition: background .2s; white-space: nowrap; }
.newsletter-form button:hover { background: #c20069; }
.nl-note { margin-top: 14px; font-size: 11px; color: rgba(255,255,255,.3); letter-spacing: .04em; }

/* ── FOOTER ────────────────────────────────────────── */

/* ATELIER */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --brand:    #E4007D;
  --cream:    #FAF8F5;
  --cream2:   #F2EDE6;
  --gold:     #A67C52;
  --gold-lt:  #C9A882;
  --dark:     #1A1A1A;
  --mid:      #6B6B6B;
  --border:   #E0D9D0;
  --white:    #FFFFFF;
  --font-h:   'Cormorant Garamond', Georgia, serif;
  --font-b:   'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }
body { background: var(--cream); color: var(--dark); font-family: var(--font-b); font-size: 14px; line-height: 1.6; }

/* ── NAV ──────────────────────────────────────────────────── */
.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
nav {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 64px;
  height: 80px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
  list-style: none;
}
.nav-links > li { position: relative; }
.nav-links > li > a {
  font-family: var(--font-b);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--dark);
  text-decoration: none;
  transition: color .2s;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 0;
}
.nav-links > li > a:hover { color: var(--brand); }
.nav-links > li > a .chevron {
  width: 8px; height: 8px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  display: inline-block;
  transition: transform .2s;
}
.nav-links > li:hover > a .chevron { transform: rotate(-135deg) translateY(-2px); }

/* Dropdown mega-menu for SHOP */
.nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 1px);
  left: -20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 2px solid var(--brand);
  min-width: 220px;
  padding: 8px 0;
  box-shadow: 0 12px 40px rgba(0,0,0,.1);
  z-index: 200;
}
.nav-links > li:hover .nav-dropdown { display: block; }
.nav-dropdown a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  font-family: var(--font-b);
  font-size: 12px;
  letter-spacing: .06em;
  color: var(--dark);
  text-decoration: none;
  transition: all .15s;
}
.nav-dropdown a:hover { background: var(--cream); color: var(--brand); padding-left: 24px; }
.nav-dropdown .dd-badge {
  font-size: 9px;
  letter-spacing: .08em;
  padding: 2px 6px;
  background: var(--brand);
  color: #fff;
  border-radius: 2px;
}
.nav-dropdown .dd-badge.sale { background: #c0392b; }
.nav-dropdown hr { border: none; border-top: 1px solid var(--border); margin: 6px 0; }

.nav-logo {
  display: flex;
  justify-content: center;
  align-items: center;
}
.nav-logo a { display:flex; align-items:center; text-decoration:none; }
.nav-logo svg { height: 44px; width: auto; display:block; }

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

/* Icon buttons (search, wishlist, cart) */
.icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--dark);
  border-radius: 2px;
  transition: color .2s, background .2s;
  position: relative;
}
.icon-btn:hover { color: var(--brand); background: var(--cream); }

/* Language select */
.lang-select {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  padding: 6px 10px;
  border: 1px solid var(--border);
  border-radius: 2px;
  position: relative;
  margin-right: 6px;
}
.lang-select svg { color: var(--mid); flex-shrink: 0; }
.lang-select select {
  appearance: none;
  -webkit-appearance: none;
  border: none;
  background: transparent;
  font-family: var(--font-b);
  font-size: 11px;
  letter-spacing: .07em;
  color: var(--dark);
  cursor: pointer;
  padding-right: 14px;
  outline: none;
}
.lang-select::after {
  content: '';
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 0; height: 0;
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  border-top: 4px solid var(--mid);
  pointer-events: none;
}

/* Cart badge */
.cart-badge {
  position: absolute;
  top: 4px; right: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 15px; height: 15px;
  background: var(--brand);
  color: #fff;
  border-radius: 50%;
  font-size: 9px;
  font-weight: 600;
  line-height: 1;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--brand);
  color: #fff;
  border: 1px solid var(--brand);
  padding: 15px 40px;
  font-family: var(--font-b);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all .25s;
  cursor: pointer;
}
.btn-primary:hover { background: #c20069; border-color: #c20069; }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: rgba(255,255,255,.85);
  border: 1px solid rgba(255,255,255,.45);
  padding: 15px 36px;
  font-family: var(--font-b);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all .25s;
  cursor: pointer;
}
.btn-ghost:hover { border-color: #fff; color: #fff; }

/* ── PAGE HERO ───────────────────────────────────────────── */
.page-hero {
  position: relative;
  height: 560px;
  background: #1c1209;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding-bottom: 72px;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, #2e1c10 0%, #100a06 100%);
}
.page-hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent, transparent 60px,
    rgba(255,255,255,.012) 60px, rgba(255,255,255,.012) 61px
  );
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(8,4,2,.8) 40%, transparent 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 80px;
  width: 100%;
}
.page-hero-eyebrow {
  font-family: var(--font-b);
  font-size: 10px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 20px;
  display: block;
}
.page-hero-title {
  font-family: var(--font-h);
  font-size: 76px;
  font-weight: 300;
  line-height: 1.0;
  color: #fff;
  letter-spacing: -.02em;
  max-width: 680px;
}
.page-hero-title em { font-style: italic; }
.page-hero-sub {
  margin-top: 28px;
  font-family: var(--font-h);
  font-size: 19px;
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,.6);
  max-width: 480px;
  line-height: 1.6;
}
.page-hero::after {
  content: '';
  position: absolute;
  right: 80px;
  top: 15%;
  height: 70%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(228,0,125,.4), transparent);
}

/* ── BREADCRUMB ─────────────────────────────────────────── */
.breadcrumb {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 12px 80px;
}
.breadcrumb ol { display: flex; align-items: center; gap: 8px; list-style: none; max-width: 1440px; margin: 0 auto; }
.breadcrumb li { font-size: 11px; letter-spacing: .06em; color: var(--mid); }
.breadcrumb li a { color: var(--mid); text-decoration: none; }
.breadcrumb li a:hover { color: var(--brand); }
.breadcrumb li + li::before { content: '›'; margin-right: 8px; }
.breadcrumb li:last-child { color: var(--dark); }

/* ── INTRO QUOTE ────────────────────────────────────────── */
.intro-quote {
  background: #fff;
  padding: 100px 80px;
  border-bottom: 1px solid var(--border);
}
.intro-quote-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}
.intro-label {
  font-family: var(--font-b);
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--brand);
  padding-top: 8px;
  line-height: 2;
}
.intro-text {
  font-family: var(--font-h);
  font-size: 30px;
  font-weight: 300;
  line-height: 1.5;
  color: var(--dark);
  letter-spacing: -.01em;
}
.intro-text em { font-style: italic; }

/* ── PHOTO GRID ─────────────────────────────────────────── */
.photo-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 380px 260px;
  gap: 3px;
  background: var(--dark);
  margin: 0;
}
.photo-grid-item {
  background: var(--cream2);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.photo-grid-item.tall {
  grid-row: 1 / 3;
  grid-column: 2 / 3;
}
.photo-grid-item.wide {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
}
.photo-grid-item.small {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
}
.photo-ph {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  height: 100%;
}
.photo-ph svg { opacity: .2; }
.photo-ph span {
  font-family: var(--font-b);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--mid);
  opacity: .6;
}
/* Caption overlay on main photo */
.photo-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 24px;
  background: linear-gradient(to top, rgba(0,0,0,.65), transparent);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.photo-caption-text {
  font-family: var(--font-h);
  font-size: 15px;
  font-style: italic;
  color: rgba(255,255,255,.8);
}

/* ── DETAIL ALTERNATING BLOCKS ──────────────────────────── */
.detail-section {
  max-width: 1440px;
  margin: 0 auto;
  padding: 120px 80px;
}
.detail-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
  margin-bottom: 140px;
}
.detail-block:last-child { margin-bottom: 0; }
.detail-block.reverse { direction: rtl; }
.detail-block.reverse .detail-copy { direction: ltr; }
.detail-block.reverse .detail-img { direction: ltr; }
.detail-img { position: relative; }
.detail-img-ph {
  width: 100%;
  padding-bottom: 120%;
  background: var(--cream2);
  position: relative;
  overflow: hidden;
}
.detail-img-ph-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.detail-img-ph-inner svg { opacity: .2; }
.detail-img-ph-inner span {
  font-family: var(--font-b);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--mid);
  opacity: .6;
}
.detail-num {
  position: absolute;
  top: -28px;
  left: -16px;
  font-family: var(--font-h);
  font-size: 140px;
  font-weight: 300;
  color: var(--cream2);
  line-height: 1;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}
.detail-block.reverse .detail-num {
  left: auto;
  right: -16px;
}
.detail-copy { position: relative; z-index: 1; }
.detail-eyebrow {
  font-family: var(--font-b);
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 20px;
  display: block;
}
.detail-title {
  font-family: var(--font-h);
  font-size: 44px;
  font-weight: 300;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 28px;
  letter-spacing: -.015em;
}
.detail-title em { font-style: italic; }
.detail-body {
  font-family: var(--font-b);
  font-size: 14px;
  line-height: 1.85;
  color: var(--mid);
  margin-bottom: 20px;
}
.detail-pull {
  font-family: var(--font-h);
  font-size: 20px;
  font-style: italic;
  font-weight: 300;
  line-height: 1.5;
  color: var(--dark);
  border-left: 2px solid var(--brand);
  padding-left: 24px;
  margin: 32px 0;
}

/* ── DARK MATERIALS STRIP ───────────────────────────────── */
.materials {
  background: #111;
  padding: 100px 80px;
  position: relative;
  overflow: hidden;
}
.materials::before {
  content: 'SILK';
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-h);
  font-size: 280px;
  font-weight: 300;
  color: rgba(255,255,255,.03);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -.04em;
}
.materials-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.materials-header {
  margin-bottom: 64px;
}
.materials-eyebrow {
  font-family: var(--font-b);
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 16px;
  display: block;
}
.materials-title {
  font-family: var(--font-h);
  font-size: 52px;
  font-weight: 300;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -.02em;
}
.materials-title em { font-style: italic; color: var(--gold-lt); }
.materials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.07);
}
.mat-card {
  background: #1a1512;
  padding: 40px 32px;
  transition: background .3s;
}
.mat-card:hover { background: #222018; }
.mat-name {
  font-family: var(--font-h);
  font-size: 22px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 10px;
}
.mat-origin {
  font-family: var(--font-b);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 16px;
  display: block;
  padding-top: 4px;
}
.mat-desc {
  font-family: var(--font-b);
  font-size: 13px;
  line-height: 1.75;
  color: rgba(255,255,255,.42);
}
.mat-dot {
  width: 6px;
  height: 6px;
  background: var(--brand);
  border-radius: 50%;
  margin-bottom: 28px;
}

/* ── VISIT CTA ──────────────────────────────────────────── */
.visit-section {
  background: var(--cream2);
  padding: 100px 80px;
  border-top: 1px solid var(--border);
}
.visit-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.visit-eyebrow {
  font-family: var(--font-b);
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 20px;
  display: block;
}
.visit-title {
  font-family: var(--font-h);
  font-size: 52px;
  font-weight: 300;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 28px;
  letter-spacing: -.02em;
}
.visit-title em { font-style: italic; }
.visit-body {
  font-size: 14px;
  line-height: 1.85;
  color: var(--mid);
  margin-bottom: 36px;
}
.visit-details {
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.visit-row {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.visit-row:first-child { border-top: 1px solid var(--border); }
.visit-row-label {
  font-family: var(--font-b);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--mid);
  width: 80px;
  flex-shrink: 0;
  padding-top: 3px;
}
.visit-row-val {
  font-family: var(--font-h);
  font-size: 17px;
  color: var(--dark);
  line-height: 1.4;
}
.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  background: var(--dark);
  color: #fff;
  font-family: var(--font-b);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--dark);
  cursor: pointer;
  transition: all .2s;
}
.btn-dark:hover { background: transparent; color: var(--dark); }
.visit-map-ph {
  width: 100%;
  padding-bottom: 90%;
  background: #e4dfd8;
  position: relative;
}
.visit-map-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.visit-map-inner svg { opacity: .25; }
.visit-map-inner span {
  font-family: var(--font-b);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--mid);
  opacity: .6;
}

/* ── COMMISSION CTA ─────────────────────────────────────── */
.commission {
  background: #fff;
  padding: 100px 80px;
  text-align: center;
  border-top: 1px solid var(--border);
}
.commission-inner { max-width: 660px; margin: 0 auto; }
.commission-eyebrow {
  font-family: var(--font-b);
  font-size: 10px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 24px;
  display: block;
}
.commission-title {
  font-family: var(--font-h);
  font-size: 52px;
  font-weight: 300;
  color: var(--dark);
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: 24px;
}
.commission-title em { font-style: italic; }
.commission-body {
  font-size: 14px;
  line-height: 1.85;
  color: var(--mid);
  margin-bottom: 40px;
}
.commission-actions { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ── FOOTER ────────────────────────────────────────────────── */
.pay-icon {
  padding: 4px 8px;
  background: rgba(255,255,255,.08);
  border-radius: 3px;
  font-size: 10px;
  letter-spacing: .05em;
  color: rgba(255,255,255,.5);
  font-weight: 500;
}


/* ABOUT */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --brand:   #E4007D;
  --cream:   #FAF8F5;
  --cream2:  #F2EDE6;
  --gold:    #A67C52;
  --gold-lt: #C9A882;
  --dark:    #1A1A1A;
  --mid:     #6B6B6B;
  --border:  #E0D9D0;
  --white:   #FFFFFF;
  --font-h:  'Cormorant Garamond', Georgia, serif;
  --font-b:  'Inter', system-ui, sans-serif;
}
html { scroll-behavior: smooth; }
body { background: var(--cream); color: var(--dark); font-family: var(--font-b); font-size: 14px; line-height: 1.6; }

/* ── NAV ─────────────────────────────────────────────────── */
.nav-wrap { position: sticky; top: 0; z-index: 100; background: var(--white); border-bottom: 1px solid var(--border); }
nav { max-width: 1440px; margin: 0 auto; padding: 0 64px; height: 80px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 24px; }
.nav-links { display: flex; gap: 36px; align-items: center; list-style: none; }
.nav-links > li { position: relative; }
.nav-links > li > a { font-family: var(--font-b); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--dark); text-decoration: none; transition: color .2s; display: flex; align-items: center; gap: 4px; padding: 8px 0; }
.nav-links > li > a:hover { color: var(--brand); }
.nav-links > li > a.active { color: var(--brand); border-bottom: 1px solid var(--brand); }
.nav-links > li > a .chevron { width: 8px; height: 8px; border-right: 1px solid currentColor; border-bottom: 1px solid currentColor; transform: rotate(45deg) translateY(-2px); display: inline-block; transition: transform .2s; }
.nav-links > li:hover > a .chevron { transform: rotate(-135deg) translateY(-2px); }
.nav-dropdown { display: none; position: absolute; top: calc(100% + 1px); left: -20px; background: var(--white); border: 1px solid var(--border); border-top: 2px solid var(--brand); min-width: 220px; padding: 8px 0; box-shadow: 0 12px 40px rgba(0,0,0,.1); z-index: 200; }
.nav-links > li:hover .nav-dropdown { display: block; }
.nav-dropdown a { display: flex; align-items: center; justify-content: space-between; padding: 10px 20px; font-family: var(--font-b); font-size: 12px; letter-spacing: .06em; color: var(--dark); text-decoration: none; transition: all .15s; }
.nav-dropdown a:hover { background: var(--cream); color: var(--brand); padding-left: 24px; }
.nav-dropdown .dd-badge { font-size: 9px; letter-spacing: .08em; padding: 2px 6px; background: var(--brand); color: #fff; border-radius: 2px; }
.nav-dropdown hr { border: none; border-top: 1px solid var(--border); margin: 6px 0; }
.nav-logo { display: flex; justify-content: center; align-items: center; }
.nav-logo a { display:flex; align-items:center; text-decoration:none; }
.nav-logo svg { height: 44px; width: auto; display:block; }
.nav-right { display: flex; align-items: center; justify-content: flex-end; gap: 6px; }
.icon-btn { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; background: none; border: none; cursor: pointer; color: var(--dark); border-radius: 2px; transition: color .2s, background .2s; position: relative; }
.icon-btn:hover { color: var(--brand); background: var(--cream); }
.lang-select { display: flex; align-items: center; gap: 5px; cursor: pointer; padding: 6px 10px; border: 1px solid var(--border); border-radius: 2px; position: relative; margin-right: 6px; }
.lang-select svg { color: var(--mid); flex-shrink: 0; }
.lang-select select { appearance: none; -webkit-appearance: none; border: none; background: transparent; font-family: var(--font-b); font-size: 11px; letter-spacing: .07em; color: var(--dark); cursor: pointer; padding-right: 14px; outline: none; }
.lang-select::after { content: ''; position: absolute; right: 8px; top: 50%; transform: translateY(-50%); width: 0; height: 0; border-left: 3px solid transparent; border-right: 3px solid transparent; border-top: 4px solid var(--mid); pointer-events: none; }
.cart-badge { position: absolute; top: 4px; right: 4px; display: inline-flex; align-items: center; justify-content: center; width: 15px; height: 15px; background: var(--brand); color: #fff; border-radius: 50%; font-size: 9px; font-weight: 600; }

/* ── PAGE HERO ───────────────────────────────────────────── */
.about-hero {
  position: relative;
  height: 560px;
  background: #2a1e18;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding-bottom: 72px;
}
.about-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #3d2820 0%, #1a1008 60%, #0d0806 100%);
}
.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,5,3,.7) 40%, transparent 100%);
}
.about-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 80px;
  width: 100%;
}
.about-hero-eyebrow {
  font-family: var(--font-b);
  font-size: 10px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 20px;
  display: block;
}
.about-hero-title {
  font-family: var(--font-h);
  font-size: 76px;
  font-weight: 300;
  line-height: 1.0;
  color: #fff;
  letter-spacing: -.02em;
  max-width: 680px;
}
.about-hero-title em { font-style: italic; }
.about-hero-sub {
  margin-top: 28px;
  font-family: var(--font-h);
  font-size: 19px;
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,.65);
  max-width: 480px;
  line-height: 1.6;
}
/* Decorative vertical line */
.about-hero::after {
  content: '';
  position: absolute;
  right: 80px;
  top: 15%;
  height: 70%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(228,0,125,.5), transparent);
}

/* ── BREADCRUMB ──────────────────────────────────────────── */
.breadcrumb {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 12px 80px;
  max-width: 100%;
}
.breadcrumb-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-b);
  font-size: 11px;
  color: var(--mid);
  letter-spacing: .04em;
}
.breadcrumb-inner a { color: var(--mid); text-decoration: none; }
.breadcrumb-inner a:hover { color: var(--brand); }
.breadcrumb-sep { color: var(--border); }
.breadcrumb-inner span { color: var(--dark); }

/* ── SECTION WRAPPER ─────────────────────────────────────── */
.section-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 80px;
}

/* ── OPENING QUOTE ───────────────────────────────────────── */
.quote-section {
  padding: 100px 0 80px;
  text-align: center;
}
.quote-mark {
  font-family: var(--font-h);
  font-size: 120px;
  line-height: .5;
  color: var(--brand);
  opacity: .15;
  display: block;
  margin-bottom: -20px;
}
.quote-text {
  font-family: var(--font-h);
  font-size: 36px;
  font-weight: 300;
  font-style: italic;
  color: var(--dark);
  line-height: 1.45;
  max-width: 820px;
  margin: 0 auto 28px;
  letter-spacing: .01em;
}
.quote-author {
  font-family: var(--font-b);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--brand);
}

/* ── STORY SECTION (alternating image + text) ────────────── */
.story-section { padding: 80px 0; }
.story-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 64px 0;
  border-top: 1px solid var(--border);
}
.story-block:first-child { border-top: none; }
.story-block.reverse { direction: rtl; }
.story-block.reverse > * { direction: ltr; }
.story-img {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}
.story-img-ph {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-b);
  font-size: 11px;
  color: rgba(255,255,255,.35);
  letter-spacing: .1em;
}
.story-img-caption {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(10,5,3,.6);
  color: rgba(255,255,255,.75);
  font-family: var(--font-b);
  font-size: 10px;
  letter-spacing: .08em;
  padding: 6px 12px;
  backdrop-filter: blur(4px);
}
.story-year {
  position: absolute;
  top: 24px;
  right: 24px;
  font-family: var(--font-h);
  font-size: 72px;
  font-weight: 300;
  color: rgba(255,255,255,.12);
  line-height: 1;
  pointer-events: none;
}
.story-text {}
.story-eyebrow {
  font-family: var(--font-b);
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 16px;
  display: block;
}
.story-title {
  font-family: var(--font-h);
  font-size: 48px;
  font-weight: 300;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 24px;
  letter-spacing: -.01em;
}
.story-title em { font-style: italic; }
.story-body {
  font-family: var(--font-b);
  font-size: 14px;
  line-height: 1.85;
  color: var(--mid);
  margin-bottom: 20px;
}
.story-body + .story-body { margin-top: -4px; }
.story-pullquote {
  border-left: 2px solid var(--brand);
  padding: 12px 0 12px 24px;
  margin: 28px 0;
  font-family: var(--font-h);
  font-size: 22px;
  font-style: italic;
  font-weight: 300;
  color: var(--dark);
  line-height: 1.5;
}

/* ── PROCESS SECTION ─────────────────────────────────────── */
.process-section {
  background: var(--dark);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.process-section::before {
  content: 'PROCESS';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-h);
  font-size: 260px;
  font-weight: 600;
  color: rgba(255,255,255,.03);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: .1em;
}
.process-header {
  text-align: center;
  margin-bottom: 72px;
  position: relative;
  z-index: 2;
}
.process-eyebrow {
  font-family: var(--font-b);
  font-size: 10px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 16px;
  display: block;
}
.process-heading {
  font-family: var(--font-h);
  font-size: 52px;
  font-weight: 300;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -.01em;
}
.process-heading em { font-style: italic; }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  position: relative;
  z-index: 2;
}
.process-step {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  padding: 44px 32px 40px;
  position: relative;
  transition: background .3s;
}
.process-step:hover { background: rgba(228,0,125,.06); border-color: rgba(228,0,125,.2); }
.step-num {
  font-family: var(--font-h);
  font-size: 64px;
  font-weight: 300;
  color: rgba(228,0,125,.2);
  line-height: 1;
  margin-bottom: 20px;
  display: block;
}
.step-title {
  font-family: var(--font-h);
  font-size: 24px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: .01em;
}
.step-body {
  font-family: var(--font-b);
  font-size: 13px;
  line-height: 1.75;
  color: rgba(255,255,255,.45);
}
.step-line {
  position: absolute;
  top: 44px;
  right: 0;
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.1);
}
.process-step:last-child .step-line { display: none; }

/* ── VALUES SECTION ──────────────────────────────────────── */
.values-section { padding: 100px 0; background: var(--cream2); }
.values-header { text-align: center; margin-bottom: 72px; }
.values-eyebrow { font-family: var(--font-b); font-size: 10px; letter-spacing: .25em; text-transform: uppercase; color: var(--brand); margin-bottom: 16px; display: block; }
.values-heading { font-family: var(--font-h); font-size: 52px; font-weight: 300; color: var(--dark); line-height: 1.1; letter-spacing: -.01em; }
.values-heading em { font-style: italic; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.value-card {
  background: var(--white);
  padding: 48px 40px;
  border: 1px solid var(--border);
  position: relative;
  transition: transform .3s, box-shadow .3s;
}
.value-card:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,.08); }
.value-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(228,0,125,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  color: var(--brand);
}
.value-title {
  font-family: var(--font-h);
  font-size: 28px;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 14px;
  letter-spacing: .01em;
}
.value-body {
  font-family: var(--font-b);
  font-size: 13px;
  line-height: 1.8;
  color: var(--mid);
}
.value-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--brand);
  transition: width .4s;
}
.value-card:hover::after { width: 100%; }

/* ── SIGNATURE / CTA BAND ────────────────────────────────── */
.signature-section {
  padding: 100px 0;
  text-align: center;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.signature-eyebrow { font-family: var(--font-b); font-size: 10px; letter-spacing: .25em; text-transform: uppercase; color: var(--gold); margin-bottom: 24px; display: block; }
.signature-title { font-family: var(--font-h); font-size: 64px; font-weight: 300; color: var(--dark); line-height: 1.05; letter-spacing: -.02em; margin-bottom: 28px; }
.signature-title em { font-style: italic; color: var(--brand); }
.signature-sub { font-family: var(--font-b); font-size: 14px; line-height: 1.8; color: var(--mid); max-width: 560px; margin: 0 auto 48px; }
.btn-primary { display: inline-flex; align-items: center; gap: 10px; background: var(--brand); color: #fff; border: 1px solid var(--brand); padding: 16px 44px; font-family: var(--font-b); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; text-decoration: none; transition: all .25s; cursor: pointer; }
.btn-primary:hover { background: #c20069; border-color: #c20069; }
.btn-ghost { display: inline-flex; align-items: center; gap: 10px; background: transparent; color: var(--dark); border: 1px solid var(--border); padding: 16px 40px; font-family: var(--font-b); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; text-decoration: none; transition: all .25s; cursor: pointer; margin-left: 12px; }
.btn-ghost:hover { border-color: var(--dark); }

/* ── STATS BAR ───────────────────────────────────────────── */
.stats-bar {
  background: var(--brand);
  padding: 0;
}
.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 80px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 48px 0;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.2);
  position: relative;
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-h);
  font-size: 56px;
  font-weight: 300;
  color: #fff;
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}
.stat-label {
  font-family: var(--font-b);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
}

/* ── FOOTER ──────────────────────────────────────────────── */
/* == Hero Slider ========================================== */
.hero-slides{position:absolute;inset:0;width:100%;height:100%}
.hero-slide{position:absolute;inset:0;opacity:0;transition:opacity 1s ease;pointer-events:none}
.hero-slide.active{opacity:1;pointer-events:auto}
.hero-slide-bg{position:absolute;inset:0;background-size:cover;background-position:center}
.hero-slide-bg img,.hero-slide-bg video{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}

/* == WP Admin Bar ========================================= */
body.admin-bar .nav-wrap{top:32px}
@media(max-width:782px){body.admin-bar .nav-wrap{top:46px}}

/* == Hide WC injected elements ============================ */
.woocommerce-notices-wrapper:empty,.ss-woo-wrap{display:none!important}

/* == Accessibility ======================================== */
.skip-link.sr-only{position:absolute;width:1px;height:1px;overflow:hidden;clip:rect(0,0,0,0)}
.skip-link:focus{position:fixed;top:8px;left:8px;width:auto;height:auto;clip:auto;padding:12px 20px;background:var(--brand);color:#fff;z-index:9999}

/* == Hamburger ============================================ */
.hamburger{display:none;flex-direction:column;gap:5px;background:none;border:none;padding:6px;cursor:pointer}
.hamburger span{display:block;width:22px;height:2px;background:var(--dark)}
.mobile-overlay{display:none;position:fixed;inset:0;background:rgba(0,0,0,.5);z-index:199}
.mobile-overlay.active{display:block}
.mobile-menu{position:fixed;top:0;right:-100%;width:280px;height:100%;background:#fff;z-index:200;padding:64px 32px;transition:right .35s ease}
.mobile-menu[aria-hidden="false"]{right:0}
.mobile-close{position:absolute;top:20px;right:20px;background:none;border:none;font-size:20px;cursor:pointer}
.mobile-menu ul{list-style:none;display:flex;flex-direction:column;gap:24px}
.mobile-menu a{font-size:16px;letter-spacing:.05em;text-transform:uppercase;color:#1A1A1A;text-decoration:none}

/* == Flip cards — back face beige ========================= */
.prod-card { overflow: hidden; }
.prod-face-front,
.prod-face-back {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.prod-face-back {
  background: #FAF8F5;
  transform: rotateY(180deg);
}
.prod-card.is-flipped .prod-card-inner { transform: rotateY(180deg); }

/* == Responsive =========================================== */
@media(max-width:1023px){.nav-links{display:none}.hamburger{display:flex}}
@media(max-width:767px){nav{padding:0 24px}.prod-grid{grid-template-columns:1fr 1fr}.story-inner{flex-direction:column}.footer-top{grid-template-columns:1fr 1fr!important;padding:48px 24px!important}}
@media(max-width:479px){.prod-grid{grid-template-columns:1fr}.footer-top{grid-template-columns:1fr!important}}
@media(prefers-reduced-motion:reduce){*,*::before,*::after{animation-duration:.01ms!important;transition-duration:.01ms!important}}

/* == HERO: stronger overlay so text is always readable ===== */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.15) 0%,
    rgba(0,0,0,0.55) 40%,
    rgba(0,0,0,0.65) 100%
  ) !important;
  z-index: 1;
}
.hero-content { z-index: 2; position: relative; }
.hero-scroll  { z-index: 2; position: relative; }

/* == HERO DOTS: move to bottom-left, smaller ============== */
.hero-dots {
  position: absolute !important;
  bottom: 32px !important;
  left: 64px !important;
  right: auto !important;
  transform: none !important;
  display: flex;
  gap: 8px;
  z-index: 10;
}
.hero-dot {
  width: 6px !important;
  height: 6px !important;
  border-radius: 50% !important;
  background: rgba(255,255,255,.35) !important;
  border: none !important;
  cursor: pointer;
  padding: 0 !important;
  transition: background .3s;
}
.hero-dot.active { background: #fff !important; }

/* == STORY IMG: ensure background covers ================== */
.story-img {
  background-size: cover !important;
  background-position: center top !important;
  background-repeat: no-repeat !important;
  min-height: 540px;
}

/* == CAT IMG: ensure background covers ==================== */
.cat-img-ph {
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}

/* == PRODUCT CARDS: fix hover/flip ======================== */
.prod-card { overflow: hidden; }
.prod-face-front, .prod-face-back {
  position: absolute; top:0; left:0;
  width:100%; height:100%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.prod-face-back { background: #FAF8F5 !important; transform: rotateY(180deg); }

/* == BTN-GHOST: white text, visible border ================ */
.btn-ghost {
  color: #ffffff !important;
  border: 1.5px solid rgba(255,255,255,0.75) !important;
  background: transparent !important;
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.12) !important;
  border-color: #ffffff !important;
}

/* == FOOTER SOCIAL: Instagram icon ======================== */
.social-link--ig {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  transition: all .2s;
  text-decoration: none;
}
.social-link--ig:hover {
  border-color: var(--brand);
  color: var(--brand);
}

/* QUITAR DOTS DEL SLIDER COMPLETAMENTE */
.hero-dots { display: none !important; }

/* BOTON GHOST - TEXTO BLANCO VISIBLE */
.btn-ghost,
.hero-ctas .btn-ghost {
  color: #ffffff !important;
  border: 2px solid #ffffff !important;
  background: transparent !important;
  opacity: 1 !important;
  visibility: visible !important;
}
.btn-ghost * { color: #ffffff !important; }

/* INSTAGRAM ICON FOOTER */
.ss-instagram {
  display: inline-flex;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color .2s;
}
.ss-instagram:hover { color: #ffffff; }
.social-link--ig, .social-link { display: none !important; }

/* INSTAGRAM - small clean icon */
.ss-ig {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 23px;
  height: 23px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.35);
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color .2s, background .2s, border-color .2s;
  flex-shrink: 0;
}
.ss-ig:hover { color: #fff; background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.7); }
.ss-ig svg {
  width: 20px !important;
  height: 20px !important;
  display: block;
  flex-shrink: 0;
}
/* Hide old social links if any */
.social-link, .ss-instagram, .social-link--ig { display: none !important; }

/* ═══════════════════════════════════════════════════════════
   SANDRA SALVAT v4 — OVERRIDES & ADDITIONS
   Instagram fix · Product cards v2 · Gallery editorial
   Search overlay · Cart panel · Full responsive
═══════════════════════════════════════════════════════════ */

/* ── Reset hero dots visibility ─────────────────────────── */
.hero-dots { display: flex !important; }

/* ── Hero: first slide visible without JS (fallback) ─────── */
.hero-slide:first-child { opacity: 1; pointer-events: auto; }
/* JS will control visibility via .active; once JS loads, this is overridden */

/* ── INSTAGRAM ICON — fix centering ─────────────────────── */
.ss-ig {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 28px !important;
  height: 28px !important;
  min-width: 28px !important;
  min-height: 28px !important;
  border-radius: 50% !important;
  border: 1px solid rgba(255,255,255,0.4) !important;
  color: rgba(255,255,255,0.75) !important;
  text-decoration: none !important;
  transition: color .2s, background .2s, border-color .2s !important;
  flex-shrink: 0 !important;
  line-height: 0 !important;
  font-size: 0 !important;
  vertical-align: middle !important;
  box-sizing: border-box !important;
}
.ss-ig:hover {
  color: #fff !important;
  background: rgba(255,255,255,0.15) !important;
  border-color: rgba(255,255,255,0.75) !important;
}
.ss-ig svg {
  width: 14px !important;
  height: 14px !important;
  display: block !important;
  flex-shrink: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* ── PRODUCT CARDS V2 (new clean design) ────────────────── */
.prod-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.prod-card-v2 {
  display: flex;
  flex-direction: column;
  background: #fff;
}

.prod-card-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  display: block;
  text-decoration: none;
  cursor: pointer;
}

.prod-card-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-color: #f0ebe4;
  transition: transform 0.5s cubic-bezier(.25,.46,.45,.94);
}

.prod-card-img-wrap:hover .prod-card-img {
  transform: scale(1.05);
}

.prod-badge-v2 {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--brand);
  color: #fff;
  font-family: var(--font-b, 'Inter', sans-serif);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 10px;
  z-index: 2;
}

/* Hover overlay with action buttons */
.prod-card-hover {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 24px;
  opacity: 0;
  transition: opacity .3s ease;
  z-index: 3;
}

.prod-card-img-wrap:hover .prod-card-hover,
.prod-card-img-wrap:focus-within .prod-card-hover {
  opacity: 1;
}

.prod-card-hover-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: calc(100% - 32px);
}

.btn-add-cart-v2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 11px 16px;
  background: var(--brand);
  color: #fff;
  border: none;
  font-family: var(--font-b, 'Inter', sans-serif);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s;
}
.btn-add-cart-v2:hover { background: #c20069; }

.btn-quickview-v2 {
  display: block;
  width: 100%;
  padding: 10px 16px;
  background: rgba(255,255,255,0.92);
  color: var(--dark, #1a1a1a);
  font-family: var(--font-b, 'Inter', sans-serif);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background .2s;
}
.btn-quickview-v2:hover { background: #fff; }

/* Product card info */
.prod-card-info {
  padding: 16px 4px 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.prod-card-meta {
  font-family: var(--font-b, 'Inter', sans-serif);
  font-size: 11px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #999;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.prod-card-name {
  font-family: var(--font-h, 'Cormorant Garamond', serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--dark, #1a1a1a);
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.3;
}
.prod-card-name:hover { color: var(--brand); }

.prod-card-price {
  font-family: var(--font-b, 'Inter', sans-serif);
  font-size: 15px;
  font-weight: 500;
  color: var(--dark, #1a1a1a);
  margin-top: 4px;
}
.prod-card-price .woocommerce-Price-amount { color: inherit; }

/* ── GALLERY EDITORIAL ───────────────────────────────────── */
.gallery-intro {
  background: var(--cream, #FAF8F5);
  padding: 48px 0 32px;
}
.gallery-intro-inner {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}
.gallery-intro-text {
  font-family: var(--font-h, 'Cormorant Garamond', serif);
  font-size: 22px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.7;
  color: var(--dark, #1a1a1a);
}

.gallery-section-v2 {
  background: #f5f0eb;
  padding: 48px 0 80px;
}
.gallery-wrap-v2 {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Editorial grid */
.gallery-editorial {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 240px;
  gap: 10px;
}

/* Size variants */
.gallery-fig--large  { grid-column: span 5; grid-row: span 2; }
.gallery-fig--medium { grid-column: span 4; grid-row: span 1; }
.gallery-fig--small  { grid-column: span 3; grid-row: span 1; }

/* Every 7th item: full-width accent */
.gallery-fig:nth-child(7n) { grid-column: span 8; grid-row: span 2; }

.gallery-fig {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.gallery-fig-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-color: #e8e0d8;
  transition: transform .5s ease;
}
.gallery-fig:hover .gallery-fig-img { transform: scale(1.04); }

.gallery-fig-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 16px;
  transition: background .3s;
}
.gallery-fig:hover .gallery-fig-overlay { background: rgba(0,0,0,0.25); }

.gallery-zoom-btn {
  background: rgba(255,255,255,0.9);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity .25s, transform .25s;
  color: var(--dark, #1a1a1a);
}
.gallery-fig:hover .gallery-zoom-btn {
  opacity: 1;
  transform: scale(1);
}
.gallery-zoom-btn:hover { background: #fff; }

.gallery-fig-cap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  background: linear-gradient(transparent, rgba(0,0,0,0.6));
  color: #fff;
  font-family: var(--font-b, 'Inter', sans-serif);
  font-size: 11px;
  letter-spacing: .05em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity .3s;
}
.gallery-fig:hover .gallery-fig-cap { opacity: 1; }

/* Gallery empty state */
.gallery-empty {
  text-align: center;
  padding: 80px 40px;
  color: #999;
}
.gallery-empty-icon { margin-bottom: 24px; opacity: .4; }
.gallery-empty h3 { font-family: var(--font-h,'Cormorant Garamond',serif); font-size:24px; font-weight:400; margin-bottom:12px; color: var(--dark); }
.gallery-empty p { font-family: var(--font-b,'Inter',sans-serif); font-size:14px; line-height:1.6; }

/* ── GALLERY LIGHTBOX ────────────────────────────────────── */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: none;
  align-items: center;
  justify-content: center;
}
.gallery-lightbox.active { display: flex; }
.gallery-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.92);
}
.gallery-lightbox-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 90vw;
  max-height: 90vh;
  gap: 16px;
}
.gallery-lightbox-img {
  max-width: 80vw;
  max-height: 85vh;
  object-fit: contain;
  display: block;
}
.gallery-lightbox-caption {
  position: absolute;
  bottom: -32px;
  left: 0; right: 0;
  text-align: center;
  color: rgba(255,255,255,.7);
  font-family: var(--font-b,'Inter',sans-serif);
  font-size: 12px;
}
.gallery-lightbox-close {
  position: absolute;
  top: -48px; right: 0;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  opacity: .7;
  transition: opacity .2s;
}
.gallery-lightbox-close:hover { opacity: 1; }
.gallery-lightbox-prev,
.gallery-lightbox-next {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background .2s;
}
.gallery-lightbox-prev { left: -60px; }
.gallery-lightbox-next { right: -60px; }
.gallery-lightbox-prev:hover,
.gallery-lightbox-next:hover { background: rgba(255,255,255,.2); }

/* ── SEARCH OVERLAY ──────────────────────────────────────── */
.ss-search-overlay {
  position: fixed;
  inset: 0;
  z-index: 8000;
  background: rgba(255,255,255,0.97);
  display: none;
  align-items: center;
  justify-content: center;
}
.ss-search-overlay.active { display: flex; }
.ss-search-inner {
  width: 100%;
  max-width: 680px;
  padding: 0 40px;
  position: relative;
}
.ss-search-inner form {
  display: flex;
  align-items: stretch;
  border-bottom: 2px solid var(--dark, #1a1a1a);
}
.ss-search-inner input[type="search"] {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-family: var(--font-h, 'Cormorant Garamond', serif);
  font-size: 32px;
  font-weight: 300;
  color: var(--dark, #1a1a1a);
  padding: 12px 0;
  -webkit-appearance: none;
}
.ss-search-inner input[type="search"]::placeholder { color: #ccc; }
.ss-search-inner form button[type="submit"] {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--dark, #1a1a1a);
  padding: 0 8px;
  display: flex;
  align-items: center;
}
.ss-search-close {
  position: absolute;
  top: -60px; right: 40px;
  background: none;
  border: none;
  color: var(--dark, #1a1a1a);
  cursor: pointer;
  opacity: .6;
  transition: opacity .2s;
}
.ss-search-close:hover { opacity: 1; }

/* ── CART MINI-PANEL ─────────────────────────────────────── */
.ss-cart-panel {
  position: fixed;
  top: 0; right: -420px;
  width: 100%; max-width: 380px;
  height: 100%;
  background: #fff;
  z-index: 7000;
  display: flex;
  flex-direction: column;
  transition: right .35s cubic-bezier(.4,0,.2,1);
  box-shadow: -4px 0 24px rgba(0,0,0,.08);
}
.ss-cart-panel.active { right: 0; }
.ss-cart-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.4);
  z-index: 6999;
}
.ss-cart-overlay.active { display: block; }

.ss-cart-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid #f0ebe4;
}
.ss-cart-panel-title {
  font-family: var(--font-h,'Cormorant Garamond',serif);
  font-size: 20px;
  font-weight: 500;
}
.ss-cart-close {
  background: none;
  border: none;
  cursor: pointer;
  color: #999;
  display: flex;
  align-items: center;
  padding: 4px;
  transition: color .2s;
}
.ss-cart-close:hover { color: var(--dark); }

.ss-cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
}
.ss-cart-empty {
  font-family: var(--font-b,'Inter',sans-serif);
  font-size: 14px;
  color: #999;
  text-align: center;
  margin-top: 40px;
}
.ss-cart-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.ss-cart-item {
  display: flex;
  gap: 12px;
  align-items: center;
}
.ss-cart-item-img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  flex-shrink: 0;
  background: #f0ebe4;
}
.ss-cart-item-img--empty { background: #f0ebe4; }
.ss-cart-item-info { flex: 1; min-width: 0; }
.ss-cart-item-name {
  display: block;
  font-family: var(--font-h,'Cormorant Garamond',serif);
  font-size: 15px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ss-cart-item-qty { font-family: var(--font-b,'Inter',sans-serif); font-size:12px; color:#999; }
.ss-cart-item-price { font-family: var(--font-b,'Inter',sans-serif); font-size:14px; font-weight:500; white-space:nowrap; }
.ss-cart-total {
  display: flex;
  justify-content: space-between;
  padding: 16px 0;
  margin-top: 8px;
  border-top: 1px solid #f0ebe4;
  font-family: var(--font-b,'Inter',sans-serif);
  font-size: 15px;
  font-weight: 500;
}
.ss-cart-panel-footer {
  padding: 16px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid #f0ebe4;
}
.ss-cart-btn-view,
.ss-cart-btn-checkout {
  display: block;
  text-align: center;
  padding: 13px;
  font-family: var(--font-b,'Inter',sans-serif);
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .2s;
}
.ss-cart-btn-checkout {
  background: var(--dark,#1a1a1a);
  color: #fff;
}
.ss-cart-btn-checkout:hover { background: #333; }

/* ── MOBILE SEARCH ───────────────────────────────────────── */
.mobile-actions {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid #f0ebe4;
}
.mobile-search-form {
  display: flex;
  border-bottom: 1px solid var(--dark,#1a1a1a);
}
.mobile-search-form input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-family: var(--font-b,'Inter',sans-serif);
  font-size: 14px;
  padding: 8px 0;
}
.mobile-search-form button {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--dark,#1a1a1a);
  display: flex;
  align-items: center;
}

/* ── BREADCRUMB UNIVERSAL ────────────────────────────────── */
.breadcrumb {
  background: var(--white, #fff);
  border-bottom: 1px solid var(--border, #e8e0d8);
  padding: 12px 0;
}
.breadcrumb-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 64px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-b, 'Inter', sans-serif);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #999;
}
.breadcrumb-inner a { color: #999; text-decoration: none; }
.breadcrumb-inner a:hover { color: var(--dark,#1a1a1a); }
.breadcrumb-sep { opacity: .5; }
/* ══════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE FIRST
   Breakpoints: 480px · 768px · 1024px · 1280px
══════════════════════════════════════════════════════════ */

/* ── Base adjustments (all screens) ────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

img { max-width: 100%; height: auto; }

/* ── Tablet & below (≤1024px) ───────────────────────────── */
@media (max-width: 1024px) {
  /* Nav */
  .nav-links { display: none; }
  .hamburger { display: flex; }
  nav { padding: 0 24px !important; }

  /* Hero */
  .hero-content { padding: 0 40px; }
  .hero-title { font-size: clamp(36px, 7vw, 80px) !important; }

  /* Products */
  .prod-grid { grid-template-columns: repeat(3, 1fr) !important; gap: 16px; }

  /* Story */
  .story-inner { flex-direction: column !important; }
  .story-img { min-height: 360px !important; width: 100% !important; }

  /* Gallery editorial */
  .gallery-editorial {
    grid-template-columns: repeat(6, 1fr) !important;
    grid-auto-rows: 200px !important;
  }
  .gallery-fig--large  { grid-column: span 3 !important; grid-row: span 2 !important; }
  .gallery-fig--medium { grid-column: span 3 !important; }
  .gallery-fig--small  { grid-column: span 3 !important; }
  .gallery-fig:nth-child(7n) { grid-column: span 6 !important; grid-row: span 1 !important; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr 1fr !important; padding: 48px 32px !important; gap: 40px !important; }

  /* Cat section */
  .cat-grid { gap: 12px !important; }
  .cat-head { flex-direction: column !important; gap: 12px !important; }
  .cat-head-link { display: none !important; }

  /* Trust */
  .trust-inner { flex-wrap: wrap !important; gap: 24px !important; }
  .trust-item { flex: 1 1 40% !important; }

  /* About page */
  .story-block { flex-direction: column !important; gap: 32px !important; }
  .story-block.reverse { flex-direction: column !important; }
  .story-block .story-img { min-height: 300px !important; width: 100% !important; }
  .story-block .story-text { padding: 0 !important; }

  /* Stats bar */
  .stats-inner { flex-wrap: wrap !important; gap: 24px !important; }
  .stat-item { flex: 1 1 40% !important; }

  /* Process steps */
  .process-steps { grid-template-columns: repeat(2, 1fr) !important; }

  /* Values grid */
  .values-grid { grid-template-columns: repeat(2, 1fr) !important; }

  /* Contact page */
  .ss-contact-grid { grid-template-columns: 1fr !important; gap: 40px !important; }

  /* Lightbox */
  .gallery-lightbox-prev { left: -44px !important; }
  .gallery-lightbox-next { right: -44px !important; }
}

/* ── Mobile landscape & small tablet (≤768px) ──────────── */
@media (max-width: 768px) {
  /* Navigation */
  .nav-wrap { position: sticky; top: 0; z-index: 500; }
  nav { height: 64px !important; padding: 0 20px !important; }
  .nav-logo img { max-width: 90px !important; }
  .lang-select { display: none !important; }

  /* Hero */
  .hero { min-height: 100svh !important; }
  .hero-content {
    padding: 0 24px !important;
    text-align: center !important;
  }
  .hero-eyebrow { font-size: 10px !important; }
  .hero-title { font-size: clamp(32px, 10vw, 56px) !important; margin-bottom: 16px !important; }
  .hero-subtitle { font-size: 14px !important; max-width: 100% !important; }
  .hero-ctas { flex-direction: column !important; align-items: center !important; gap: 12px !important; }
  .hero-ctas .btn-primary,
  .hero-ctas .btn-ghost { width: 100% !important; max-width: 280px !important; text-align: center !important; }
  .hero-dots { bottom: 20px !important; left: 50% !important; transform: translateX(-50%) !important; }
  .hero-scroll { display: none; }

  /* Products */
  .prod-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 12px !important; }
  .arrivals-inner { padding: 0 20px !important; }
  .arrivals-head { flex-direction: column !important; gap: 8px !important; }

  /* Story section */
  .story-inner { padding: 0 20px !important; }
  .story-text { padding: 32px 0 !important; }
  .story-text .section-title { font-size: clamp(28px, 7vw, 48px) !important; }
  .story-body { font-size: 14px !important; }

  /* Trust */
  .trust-inner { padding: 40px 20px !important; flex-direction: column !important; gap: 24px !important; }
  .trust-item { flex: none !important; width: 100% !important; }

  /* Newsletter */
  .newsletter-inner { padding: 0 20px !important; }
  .newsletter-form { flex-direction: column !important; max-width: 100% !important; }
  .newsletter-form input,
  .newsletter-form button { width: 100% !important; }

  /* Categories */
  .cat-inner { padding: 0 20px !important; }
  .cat-grid { grid-template-columns: 1fr !important; }
  .cat-card { min-height: 280px !important; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr !important; padding: 40px 20px !important; gap: 32px !important; }
  .footer-bottom { flex-direction: column !important; gap: 16px !important; padding: 24px 20px !important; text-align: center !important; }
  .footer-bottom-links { justify-content: center !important; flex-wrap: wrap !important; }
  .footer-pay { justify-content: center !important; flex-wrap: wrap !important; }

  /* Gallery editorial */
  .gallery-editorial {
    grid-template-columns: repeat(2, 1fr) !important;
    grid-auto-rows: 200px !important;
    gap: 8px !important;
  }
  .gallery-fig--large,
  .gallery-fig--medium,
  .gallery-fig--small,
  .gallery-fig:nth-child(7n) {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
  }
  .gallery-fig:nth-child(5n) {
    grid-column: span 2 !important;
    grid-row: span 1 !important;
  }

  /* Page hero */
  .page-hero { min-height: 320px !important; padding: 80px 24px 40px !important; }
  .page-hero-title { font-size: clamp(28px, 8vw, 52px) !important; }
  .page-hero-sub { font-size: 13px !important; }

  /* About hero */
  .about-hero { min-height: 320px !important; padding: 80px 24px 40px !important; }
  .about-hero-title { font-size: clamp(28px, 8vw, 52px) !important; }

  /* Breadcrumb */
  .breadcrumb-inner { padding: 0 20px !important; }

  /* Stats bar */
  .stats-inner { grid-template-columns: repeat(2, 1fr) !important; padding: 40px 20px !important; }

  /* Process */
  .process-steps { grid-template-columns: 1fr !important; }
  div[style*="padding:0 80px"] { padding: 0 20px !important; }

  /* Values */
  .values-grid { grid-template-columns: 1fr !important; }
  .values-section { padding: 60px 20px !important; }

  /* CTA section */
  .signature-section,
  .signature-section > div { padding: 60px 20px !important; }

  /* Contact */
  section[style*="padding:100px 0"] { padding: 60px 0 !important; }
  div[style*="grid-template-columns:1fr 1fr"][style*="gap:80px"] {
    display: block !important;
    padding: 0 20px !important;
  }
  div[style*="grid-template-columns:1fr 1fr"][style*="gap:80px"] > div:last-child {
    margin-top: 40px !important;
  }

  /* Section wrap */
  .section-wrap { padding: 0 20px !important; }

  /* Lightbox */
  .gallery-lightbox-img { max-width: 95vw !important; }
  .gallery-lightbox-prev { left: 8px !important; }
  .gallery-lightbox-next { right: 8px !important; }

  /* Cart panel */
  .ss-cart-panel { max-width: 100% !important; right: -100% !important; }

  /* Search */
  .ss-search-inner input[type="search"] { font-size: 22px !important; }
}

/* ── Mobile portrait (≤480px) ───────────────────────────── */
@media (max-width: 480px) {
  /* Nav */
  nav { height: 56px !important; padding: 0 16px !important; }
  .nav-right > :not(#ss-cart-btn):not(#ss-search-btn):not(.hamburger):not(#hamburger) {
    display: none !important;
  }

  /* Hero */
  .hero-title { font-size: 36px !important; }
  .hero-subtitle { font-size: 13px !important; }

  /* Products — single column */
  .prod-grid { grid-template-columns: 1fr !important; }

  /* Gallery — single column */
  .gallery-editorial {
    grid-template-columns: 1fr !important;
    grid-auto-rows: 280px !important;
  }
  .gallery-fig--large,
  .gallery-fig--medium,
  .gallery-fig--small,
  .gallery-fig:nth-child(5n),
  .gallery-fig:nth-child(7n) {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
  }

  /* About process steps */
  .process-header,
  .story-header,
  .values-header { padding: 0 !important; }

  /* Quote section */
  .quote-section { padding: 0 !important; }
  .quote-text { font-size: 18px !important; }

  /* Gallery intro */
  .gallery-intro-text { font-size: 17px !important; }

  /* Search overlay */
  .ss-search-inner { padding: 0 20px !important; }
}

/* ── Very small screens (≤360px) ────────────────────────── */
@media (max-width: 360px) {
  .hero-title { font-size: 30px !important; }
  .footer-top .footer-brand { text-align: center; }
}

/* ── Prevent content shift on cart open ─────────────────── */
body.cart-open,
body.menu-open,
body.search-open { overflow: hidden; }

/* ── Fix section padding on mobile ──────────────────────── */
@media (max-width: 768px) {
  .cat-section .cat-inner,
  .arrivals-inner,
  .story-inner,
  .trust-inner { max-width: 100% !important; }
  
  /* Fix any hardcoded padding 80px */
  [style*="padding: 0 80px"],
  [style*="padding:0 80px"] {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  [style*="padding: 100px 0"],
  [style*="padding:100px 0"] {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }
}

/* ── Accessibility ───────────────────────────────────────── */
:focus-visible { outline: 2px solid var(--brand, #E4007D); outline-offset: 2px; }

/* ── Admin bar ───────────────────────────────────────────── */
body.admin-bar .nav-wrap { top: 32px; }
@media (max-width: 782px) { body.admin-bar .nav-wrap { top: 46px; } }


/* ── /* ── PROD-CARD-V2 FIXES ─────────────────────────────────── */
article.prod-card-v2 { position: relative !important; overflow: hidden; }
.prod-card-hover { position: absolute !important; inset: 0 !important; width: 100% !important; height: 100% !important; }
.btn-add-cart-v2 { position: relative !important; width: auto !important; }
.btn-quickview-v2 { position: relative !important; width: auto !important; }
.prod-card-desc { display: none !important; }
.prod-card-v2 .short-description, .prod-card-v2 .woocommerce-product-details__short-description { display: none !important; }

RESPONSIVE BREAKPOINTS ──────────────────────────────── */
@media(max-width:1023px){
  .nav-links{display:none}
  .hamburger{display:flex}
  .shop-wrap{padding:40px 32px 80px}
  .prod-card{height:460px}
}
@media(max-width:767px){
  nav{padding:0 24px}
  .shop-wrap{padding:28px 20px 60px}
  .prod-grid{grid-template-columns:1fr 1fr;gap:16px}
  .filter-bar{flex-wrap:wrap;gap:8px;margin-bottom:28px}
  .shop-header{margin-bottom:28px}
  .prod-card{height:400px}
  .prod-img-wrap{flex:0 0 230px}
  .story-inner{flex-direction:column}
  .footer-top{grid-template-columns:1fr 1fr!important;padding:48px 24px!important}
}
@media(max-width:479px){
  .shop-wrap{padding:20px 14px 48px}
  .prod-grid{grid-template-columns:1fr;gap:20px}
  .prod-card{height:460px}
  .prod-img-wrap{flex:0 0 280px}
  .footer-top{grid-template-columns:1fr!important}
}
/*  OVERFLOW FIX  */
html { overflow-x: hidden; }
/*  SHOP STORY FIX  */
.shop-story { overflow: hidden; }
.story-imgs { display: grid !important; grid-template-columns: 1fr 1fr !important; width: 100% !important; max-width: 100% !important; overflow: hidden !important; }
.story-img { width: 100% !important; max-width: 100% !important; min-height: 540px !important; height: 540px !important; overflow: hidden !important; }
/* ── LANGUAGE SWITCHER ─────────────────────────────────── */
/* Hide the globe icon + select when no language options exist */
.lang-select:not(:has(select option)) { display: none !important; }


/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — COMPREHENSIVE MOBILE / TABLET
═══════════════════════════════════════════════════════════ */

/* ── TABLET (≤1024px) ─────────────────────────────────── */
@media(max-width:1024px){
  /* Global */
  .site-wrapper { padding: 0; }

  /* Header */
  .site-header { padding: 0 24px; }
  .nav-links { gap: 24px; }

  /* Hero */
  .hero-section { padding: 80px 40px; min-height: 80vh; }
  .hero-title { font-size: 56px; }
  .hero-sub { font-size: 16px; }

  /* Home categories */
  .cat-grid { grid-template-columns: repeat(3,1fr); gap: 16px; padding: 0 24px 48px; }

  /* Products */
  .prod-grid { grid-template-columns: repeat(2,1fr); }
  .products-section { padding: 48px 24px; }

  /* Shop page */
  .shop-layout { grid-template-columns: 220px 1fr; gap: 32px; }

  /* About / story */
  .story-section { padding: 64px 40px; }
  .story-inner { gap: 48px; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-section { padding: 60px 40px; }

  /* Atelier */
  .atelier-hero { min-height: 440px; }
  .visit-inner { grid-template-columns: 1fr; gap: 48px; }
  .visit-section { padding: 60px 40px; }

  /* Visit map */
  .visit-map-wrap { height: 320px; }

  /* Footer */
  .footer-top { grid-template-columns: repeat(2,1fr) !important; gap: 40px !important; padding: 60px 40px !important; }
}

/* ── MOBILE (≤768px) ──────────────────────────────────── */
@media(max-width:768px){
  /* Header */
  .site-header { padding: 0 16px; height: 60px; }
  .header-logo img { height: 36px; }
  .nav-links { display: none !important; }
  .nav-hamburger { display: flex !important; }
  .header-actions { gap: 12px; }
  .header-actions svg { width: 20px; height: 20px; }

  /* Hero */
  .hero-section { padding: 60px 20px 48px; min-height: 70vh; }
  .hero-title { font-size: 38px; letter-spacing: -0.02em; line-height: 1.1; }
  .hero-sub { font-size: 15px; line-height: 1.6; max-width: 100%; }
  .hero-ctas { flex-direction: column; align-items: center; gap: 12px; }
  .hero-ctas .btn { width: 100%; max-width: 280px; text-align: center; justify-content: center; }

  /* Section padding */
  .section-header { padding: 40px 16px 0; }
  .section-header h2 { font-size: 32px; }

  /* Categories */
  .cat-grid { grid-template-columns: repeat(2,1fr); gap: 12px; padding: 0 16px 40px; }
  .cat-card { height: 220px; }
  .cat-title { font-size: 18px; }

  /* Products home */
  .prod-grid { grid-template-columns: repeat(2,1fr); gap: 12px; padding: 0 16px; }
  .prod-card { height: auto; min-height: 340px; }
  .prod-img-wrap { flex: 0 0 200px; height: 200px; }
  .prod-info { padding: 14px 12px; }
  .prod-name { font-size: 14px; }
  .prod-price { font-size: 16px; }
  .products-section { padding: 32px 0 48px; }

  /* WooCommerce add to cart button */
  .woocommerce .button.add_to_cart_button,
  .woocommerce ul.products li.product .button,
  .prod-card .add-btn,
  .prod-card form.cart .single_add_to_cart_button,
  .prod-cta .button { 
    display: block !important;
    width: calc(100% - 24px) !important;
    margin: 8px 12px 12px !important;
    text-align: center !important;
    font-size: 11px !important;
    padding: 10px 8px !important;
    letter-spacing: .08em !important;
  }

  /* Shop page */
  .shop-layout { grid-template-columns: 1fr; }
  .shop-sidebar { display: none; }
  .shop-wrap { padding: 16px 16px 48px; }

  /* Story / About */
  .story-section { padding: 40px 16px; }
  .story-inner { flex-direction: column; gap: 32px; }
  .story-text h2 { font-size: 28px; }
  .story-text p { font-size: 14px; }
  .story-imgs { grid-template-columns: 1fr 1fr !important; gap: 8px !important; }

  /* Page heroes */
  .page-hero { min-height: 240px; padding: 40px 16px; }
  .page-hero h1 { font-size: 36px; }
  .page-hero p { font-size: 14px; }

  /* Breadcrumbs */
  .breadcrumbs { padding: 12px 16px; font-size: 11px; }

  /* Contact */
  .contact-section { padding: 40px 16px; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-form-wrap { padding: 24px 16px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-info h2 { font-size: 28px; }

  /* Atelier */
  .atelier-hero { min-height: 320px; }
  .atelier-hero h1 { font-size: 36px; }
  .atelier-section { padding: 40px 16px; }
  .atelier-grid { grid-template-columns: 1fr; gap: 32px; }
  .visit-inner { grid-template-columns: 1fr; gap: 32px; }
  .visit-section { padding: 40px 16px; }
  .visit-title { font-size: 36px; }
  .visit-map-wrap { height: 280px; }

  /* Product single */
  .product-layout { grid-template-columns: 1fr; gap: 32px; }
  .product-gallery { position: static; }
  .product-info { padding: 0; }
  .product-title { font-size: 32px; }
  .product-section { padding: 40px 16px; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr !important; gap: 32px !important; padding: 40px 16px !important; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; padding: 20px 16px; }
  .footer-logo img { height: 32px; }

  /* Account / wishlist */
  .woocommerce-account .woocommerce { padding: 40px 16px; }
  .woocommerce-MyAccount-navigation { margin-bottom: 24px; }
}

/* ── SMALL MOBILE (≤480px) ────────────────────────────── */
@media(max-width:480px){
  .hero-title { font-size: 32px; }
  .cat-grid { grid-template-columns: 1fr 1fr; gap: 8px; padding: 0 12px 32px; }
  .cat-card { height: 180px; }
  .prod-grid { grid-template-columns: 1fr 1fr; gap: 8px; padding: 0 12px; }
  .prod-card { min-height: 300px; }
  .prod-img-wrap { flex: 0 0 170px; height: 170px; }
  .section-header h2 { font-size: 26px; }
  .story-imgs { grid-template-columns: 1fr !important; }
}

/* ── EXTRA SMALL (≤375px) ─────────────────────────────── */
@media(max-width:375px){
  .hero-title { font-size: 28px; }
  .prod-grid { grid-template-columns: 1fr; }
  .prod-card { min-height: 380px; }
  .cat-grid { grid-template-columns: 1fr; }
  .cat-card { height: 200px; }
}

/* ═══════════════════════════════════════════════════════════
   WOOCOMMERCE ADD-TO-CART BUTTON FIX (desktop + all sizes)
═══════════════════════════════════════════════════════════ */
.woocommerce ul.products li.product .button.add_to_cart_button,
.woocommerce ul.products li.product a.button {
  display: block !important;
  width: auto !important;
  margin: 8px auto 0 !important;
  text-align: center !important;
  padding: 10px 20px !important;
  font-size: 10px !important;
  letter-spacing: .12em !important;
}
.prod-cta {
  display: flex !important;
  justify-content: center !important;
  padding: 0 12px 14px !important;
}
.prod-cta .button,
.prod-cta a.button {
  flex: 0 0 auto !important;
  width: auto !important;
  max-width: 90% !important;
  font-size: 10px !important;
  letter-spacing: .12em !important;
  padding: 10px 20px !important;
}

/* ═══════════════════════════════════════════════════════════
   CHECKOUT PAGE REDESIGN
═══════════════════════════════════════════════════════════ */
.woocommerce-checkout { background: var(--cream); }
.woocommerce-checkout #content,
.woocommerce-checkout .woocommerce { max-width: 1200px; margin: 0 auto; padding: 60px 40px; }

/* Checkout columns */
.woocommerce-checkout #customer_details,
.woocommerce-checkout .col-1,
.woocommerce-checkout .col-2 { width: 100%; }
.woocommerce-checkout form.checkout.woocommerce-checkout { display: grid; grid-template-columns: 1fr 400px; gap: 48px; align-items: start; }

/* Billing / shipping card */
.woocommerce-checkout #customer_details { background: #fff; border: 1px solid var(--border); padding: 40px; }
.woocommerce-checkout h3 { font-family: var(--font-h); font-size: 22px; font-weight: 300; color: var(--dark); letter-spacing: -.02em; margin-bottom: 24px; border-bottom: 1px solid var(--border); padding-bottom: 16px; }

/* Form fields */
.woocommerce-checkout .form-row input,
.woocommerce-checkout .form-row textarea,
.woocommerce-checkout .form-row select {
  border: 1px solid var(--border) !important;
  border-radius: 0 !important;
  padding: 12px 16px !important;
  font-family: var(--font-b) !important;
  font-size: 13px !important;
  background: var(--cream) !important;
  color: var(--dark) !important;
  width: 100% !important;
  transition: border-color .2s !important;
}
.woocommerce-checkout .form-row input:focus,
.woocommerce-checkout .form-row textarea:focus,
.woocommerce-checkout .form-row select:focus {
  outline: none !important;
  border-color: var(--brand) !important;
  background: #fff !important;
}
.woocommerce-checkout .form-row label {
  font-family: var(--font-b) !important;
  font-size: 10px !important;
  letter-spacing: .14em !important;
  text-transform: uppercase !important;
  color: var(--dark) !important;
  margin-bottom: 6px !important;
  display: block !important;
}

/* Order review */
.woocommerce-checkout #order_review_heading { font-family: var(--font-h); font-size: 22px; font-weight: 300; letter-spacing: -.02em; color: var(--dark); margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
.woocommerce-checkout #order_review { background: #fff; border: 1px solid var(--border); padding: 32px; position: sticky; top: 100px; }
.woocommerce-checkout table.shop_table { border: none !important; border-radius: 0 !important; }
.woocommerce-checkout table.shop_table th,
.woocommerce-checkout table.shop_table td { border: none !important; border-bottom: 1px solid var(--border) !important; padding: 12px 0 !important; font-family: var(--font-b); font-size: 13px; }
.woocommerce-checkout table.shop_table th { font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); }
.woocommerce-checkout table.shop_table .order-total td, .woocommerce-checkout table.shop_table .order-total th { border-bottom: none !important; font-size: 16px; font-weight: 600; padding-top: 16px !important; }

/* Payment methods */
.woocommerce-checkout #payment { background: var(--cream); border: 1px solid var(--border); margin-top: 0; border-radius: 0; }
.woocommerce-checkout #payment .payment_methods { border-bottom: 1px solid var(--border); padding: 16px 20px; }
.woocommerce-checkout #payment .payment_methods li { font-family: var(--font-b); font-size: 13px; }
.woocommerce-checkout #payment div.payment_box { background: #fff; font-family: var(--font-b); font-size: 13px; }

/* Place order button */
.woocommerce-checkout #payment #place_order {
  background: var(--brand) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 0 !important;
  font-family: var(--font-b) !important;
  font-size: 11px !important;
  letter-spacing: .18em !important;
  text-transform: uppercase !important;
  padding: 16px 32px !important;
  width: 100% !important;
  cursor: pointer !important;
  transition: background .2s !important;
  margin-top: 8px !important;
}
.woocommerce-checkout #payment #place_order:hover { background: #c4006b !important; }

/* Mobile checkout */
@media(max-width:768px){
  .woocommerce-checkout form.checkout.woocommerce-checkout { grid-template-columns: 1fr; gap: 24px; }
  .woocommerce-checkout .woocommerce { padding: 32px 16px; }
  .woocommerce-checkout #customer_details { padding: 24px 16px; }
  .woocommerce-checkout #order_review { position: static; padding: 24px 16px; }
}

/* ═══════════════════════════════════════════════════════════
   MY ACCOUNT PAGE
═══════════════════════════════════════════════════════════ */
.woocommerce-account .woocommerce { max-width: 1200px; margin: 0 auto; padding: 60px 40px; display: grid; grid-template-columns: 240px 1fr; gap: 48px; align-items: start; }
.woocommerce-MyAccount-navigation { background: #fff; border: 1px solid var(--border); padding: 24px 0; }
.woocommerce-MyAccount-navigation ul { list-style: none; margin: 0; padding: 0; }
.woocommerce-MyAccount-navigation ul li a { display: block; font-family: var(--font-b); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--dark); padding: 12px 24px; border-left: 2px solid transparent; transition: all .2s; text-decoration: none; }
.woocommerce-MyAccount-navigation ul li.is-active a,
.woocommerce-MyAccount-navigation ul li a:hover { color: var(--brand); border-left-color: var(--brand); background: var(--cream); }
.woocommerce-MyAccount-content { background: #fff; border: 1px solid var(--border); padding: 40px; }
.woocommerce-MyAccount-content h2 { font-family: var(--font-h); font-size: 28px; font-weight: 300; color: var(--dark); margin-bottom: 24px; }
.woocommerce-MyAccount-content table { width: 100%; border-collapse: collapse; font-family: var(--font-b); font-size: 13px; }
.woocommerce-MyAccount-content table th { font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); padding: 12px 0; border-bottom: 2px solid var(--border); }
.woocommerce-MyAccount-content table td { padding: 12px 0; border-bottom: 1px solid var(--border); color: var(--dark); }
@media(max-width:768px){
  .woocommerce-account .woocommerce { grid-template-columns: 1fr; padding: 24px 16px; }
}


/* ═══════════════════════════════════════════════════════════════
   PÁGINA GENÉRICA (Mi Cuenta, Checkout, Lista de Deseos, etc.)
   ═══════════════════════════════════════════════════════════════ */

.page-content-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 40px 80px;
  min-height: 50vh;
}

/* ── MI CUENTA ──────────────────────────────────────────────── */
.woocommerce-account .woocommerce-MyAccount-navigation {
  width: 220px;
  float: left;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul {
  list-style: none;
  padding: 0;
  margin: 0;
  border: 1px solid #e8e2d9;
  border-radius: 4px;
  overflow: hidden;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li a {
  display: block;
  padding: 14px 20px;
  font-family: var(--font-b);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark);
  text-decoration: none;
  border-bottom: 1px solid #e8e2d9;
  transition: background 0.2s, color 0.2s;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li a:hover,
.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active a {
  background: var(--brand);
  color: #fff;
}
.woocommerce-account .woocommerce-MyAccount-content {
  float: left;
  width: calc(100% - 260px);
  margin-left: 40px;
  padding: 0;
}
.woocommerce-account .woocommerce-MyAccount-content p,
.woocommerce-account .woocommerce-MyAccount-content a {
  font-family: var(--font-b);
  font-size: 14px;
  color: var(--dark);
  text-decoration: none;
}
.woocommerce-account .woocommerce-MyAccount-content a:hover {
  color: var(--brand);
}
.woocommerce-account .page-content-wrap::after {
  content: '';
  display: table;
  clear: both;
}
/* Login form on My Account when logged out */
.woocommerce-account .woocommerce-form-login {
  max-width: 480px;
  margin: 0 auto;
  padding: 40px;
  border: 1px solid #e8e2d9;
  border-radius: 4px;
  background: #fff;
}
.woocommerce-account .woocommerce-form-login .woocommerce-form__label {
  font-family: var(--font-b);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 6px;
  display: block;
}
.woocommerce-account .woocommerce-form-login input[type="text"],
.woocommerce-account .woocommerce-form-login input[type="password"],
.woocommerce-account .woocommerce-form-login input[type="email"] {
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 2px;
  padding: 10px 14px;
  font-family: var(--font-b);
  font-size: 14px;
  margin-bottom: 16px;
  box-sizing: border-box;
}
.woocommerce-account .woocommerce-form-login .button {
  background: var(--brand) !important;
  color: #fff !important;
  border: none !important;
  padding: 12px 32px !important;
  font-family: var(--font-b) !important;
  font-size: 11px !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  border-radius: 2px !important;
}
.woocommerce-account .u-column1, .woocommerce-account .u-column2 {
  width: 48%;
  display: inline-block;
  vertical-align: top;
  padding: 20px;
  box-sizing: border-box;
  border: 1px solid #e8e2d9;
  border-radius: 4px;
  background: #fff;
  margin-right: 2%;
}

/* ── CHECKOUT ───────────────────────────────────────────────── */
.woocommerce-checkout .page-content-wrap {
  padding-top: 48px;
}
.woocommerce-checkout form.checkout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}
.woocommerce-checkout #customer_details {
  order: 1;
}
.woocommerce-checkout #order_review_heading,
.woocommerce-checkout #order_review {
  order: 2;
}
.woocommerce-checkout h3 {
  font-family: var(--font-h);
  font-size: 22px;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e8e2d9;
}
.woocommerce-checkout .form-row label {
  font-family: var(--font-b);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 6px;
  display: block;
}
.woocommerce-checkout .form-row input,
.woocommerce-checkout .form-row select,
.woocommerce-checkout .form-row textarea {
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 2px;
  padding: 10px 14px;
  font-family: var(--font-b);
  font-size: 14px;
  box-sizing: border-box;
  background: #fff;
}
.woocommerce-checkout #payment {
  background: #faf8f5;
  padding: 24px;
  border-radius: 4px;
  border: 1px solid #e8e2d9;
}
.woocommerce-checkout #payment #place_order {
  background: var(--brand) !important;
  color: #fff !important;
  border: none !important;
  width: 100% !important;
  padding: 14px !important;
  font-family: var(--font-b) !important;
  font-size: 12px !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  margin-top: 16px !important;
  border-radius: 2px !important;
}
.woocommerce-checkout table.shop_table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-b);
  font-size: 13px;
}
.woocommerce-checkout table.shop_table th,
.woocommerce-checkout table.shop_table td {
  padding: 10px 0;
  border-bottom: 1px solid #e8e2d9;
  color: var(--dark);
}
.woocommerce-checkout table.shop_table tfoot tr:last-child td {
  font-weight: 600;
  color: var(--brand);
  font-size: 16px;
}

/* ── YITH WISHLIST ──────────────────────────────────────────── */
.woocommerce-wishlist .page-content-wrap,
.page-id-3560 .page-content-wrap {
  padding-top: 48px;
}
.yith-wcwl-share, .yith-wcwl-wishlist-title {
  font-family: var(--font-h);
  font-size: 28px;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 32px;
}
table.wishlist_table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-b);
  font-size: 14px;
}
table.wishlist_table th {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #888;
  padding: 8px 12px;
  border-bottom: 2px solid var(--dark);
  text-align: left;
}
table.wishlist_table td {
  padding: 16px 12px;
  border-bottom: 1px solid #e8e2d9;
  color: var(--dark);
  vertical-align: middle;
}
table.wishlist_table .product-thumbnail img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 2px;
}
table.wishlist_table .add_to_cart_button,
table.wishlist_table .add_to_cart {
  background: var(--dark) !important;
  color: #fff !important;
  border: none !important;
  padding: 8px 16px !important;
  font-family: var(--font-b) !important;
  font-size: 10px !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  border-radius: 2px !important;
  text-decoration: none !important;
  display: inline-block !important;
}
table.wishlist_table .add_to_cart_button:hover {
  background: var(--brand) !important;
}
table.wishlist_table .product-remove a {
  color: #ccc;
  font-size: 20px;
  text-decoration: none;
  line-height: 1;
}
table.wishlist_table .product-remove a:hover {
  color: var(--brand);
}
.wishlist-empty { text-align: center; padding: 60px 0; }
.wishlist-empty p { font-family: var(--font-b); color: #888; margin-bottom: 24px; }

/* ── PRODUCT CARD TEXT COLOR FIX ────────────────────────────── */
.prod-desc, .prod-desc * {
  color: var(--dark) !important;
  text-decoration: none !important;
}
.prod-card a, .prod-card a:visited {
  color: inherit;
  text-decoration: none;
}

/* ── RESPONSIVE PAGES ───────────────────────────────────────── */
@media(max-width: 768px) {
  .page-content-wrap { padding: 40px 16px 60px; }
  .woocommerce-account .woocommerce-MyAccount-navigation { width: 100%; float: none; margin-bottom: 32px; }
  .woocommerce-account .woocommerce-MyAccount-content { width: 100%; float: none; margin-left: 0; }
  .woocommerce-checkout form.checkout { grid-template-columns: 1fr; }
  .woocommerce-account .u-column1, .woocommerce-account .u-column2 { width: 100%; display: block; margin-right: 0; margin-bottom: 16px; }
}

/* ── FIX LAYOUT MI CUENTA (override grid→flex) ──────────────── */
.woocommerce-account .woocommerce {
  display: flex !important;
  flex-direction: row !important;
  align-items: flex-start !important;
  gap: 48px !important;
  grid-template-columns: none !important;
}
.woocommerce-account .woocommerce-MyAccount-navigation {
  flex: 0 0 220px !important;
  width: 220px !important;
  order: 1 !important;
  display: block !important;
  float: none !important;
}
.woocommerce-account .woocommerce-MyAccount-content {
  flex: 1 1 0 !important;
  min-width: 0 !important;
  order: 2 !important;
  width: auto !important;
  float: none !important;
  margin-left: 0 !important;
}
@media(max-width:768px){
  .woocommerce-account .woocommerce {
    flex-direction: column !important;
  }
  .woocommerce-account .woocommerce-MyAccount-navigation {
    flex: none !important;
    width: 100% !important;
  }
}

/* ── LISTA DE DESEOS (YITH Wishlist) ── */
.woocommerce-wishlist .page-content-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 40px 80px;
}
.wishlist-title-container {
  margin-bottom: 40px;
  border-bottom: 1px solid #e8e2d9;
  padding-bottom: 20px;
}
.wishlist-title {
  font-family: var(--font-h);
  font-size: 36px;
  font-weight: 400;
  color: var(--dark);
  letter-spacing: 0.02em;
  margin: 0;
}
/* Table */
table.wishlist_table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-b);
}
table.wishlist_table thead th {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  background: var(--dark);
  padding: 14px 16px;
  font-weight: 500;
  text-align: left;
  border: none;
}
table.wishlist_table tbody tr {
  border-bottom: 1px solid #e8e2d9;
  transition: background 0.15s;
}
table.wishlist_table tbody tr:hover {
  background: #f7f4f0;
}
table.wishlist_table tbody td {
  padding: 20px 16px;
  vertical-align: middle;
  font-size: 14px;
  color: var(--dark);
}
/* Product image in wishlist */
table.wishlist_table .product-thumbnail img {
  width: 80px;
  height: 80px;
  object-fit: cover;
}
/* Product name */
table.wishlist_table .product-name a {
  font-family: var(--font-h);
  font-size: 18px;
  color: var(--dark);
  text-decoration: none;
  letter-spacing: 0.02em;
}
table.wishlist_table .product-name a:hover {
  color: var(--brand);
}
/* Price */
table.wishlist_table .product-price .amount {
  font-size: 15px;
  font-weight: 500;
  color: var(--dark);
}
/* Add to cart button */
table.wishlist_table .add_to_cart_button,
table.wishlist_table .product-add-to-cart a {
  background: var(--dark) !important;
  color: #fff !important;
  border: none !important;
  padding: 10px 20px !important;
  font-size: 11px !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  font-family: var(--font-b) !important;
  cursor: pointer !important;
  transition: background 0.2s !important;
  text-decoration: none !important;
  display: inline-block !important;
}
table.wishlist_table .add_to_cart_button:hover,
table.wishlist_table .product-add-to-cart a:hover {
  background: var(--brand) !important;
}
/* Remove button */
table.wishlist_table .product-remove a {
  color: #bbb;
  font-size: 18px;
  text-decoration: none;
  transition: color 0.2s;
}
table.wishlist_table .product-remove a:hover { color: var(--brand); }
/* Empty state */
.wishlist-empty td,
.wishlist-items-wrapper .wishlist-empty {
  text-align: center;
  padding: 48px 20px;
  font-family: var(--font-b);
  font-size: 14px;
  color: #999;
  letter-spacing: 0.05em;
}
/* Footer / share area */
.yith_wcwl_wishlist_footer {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid #e8e2d9;
  font-family: var(--font-b);
  font-size: 12px;
}
/* Stock status */
table.wishlist_table .product-stock-status .in-stock { color: #4caf50; font-size: 12px; }
table.wishlist_table .product-stock-status .out-of-stock { color: #e53935; font-size: 12px; }
@media(max-width:768px){
  .woocommerce-wishlist .page-content-wrap { padding: 40px 20px 60px; }
  table.wishlist_table thead th:nth-child(3),
  table.wishlist_table tbody td:nth-child(3) { display: none; }
}

/* ── SINGLE PRODUCT – RESPONSIVE MOBILE ── */
@media(max-width: 768px){
  /* Stack image + info vertically */
  .product-section {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    padding: 0 !important;
    gap: 0 !important;
  }
  /* Product image full-width */
  .product-section > *:first-child,
  .prod-gallery,
  .ss-prod-gallery,
  .woocommerce-product-gallery {
    width: 100% !important;
    max-width: 100% !important;
  }
  /* Info column full-width */
  .prod-info-wrap {
    width: 100% !important;
    max-width: 100% !important;
    padding: 24px 20px !important;
    box-sizing: border-box !important;
  }
  /* CTA row full-width */
  .cta-row {
    width: 100% !important;
  }
  /* Add to cart button full-width, centered */
  .btn-cart {
    width: 100% !important;
    max-width: 100% !important;
    justify-content: center !important;
    box-sizing: border-box !important;
  }
  /* Quantity selector */
  .prod-qty-row,
  .quantity-row {
    width: 100% !important;
    justify-content: flex-start !important;
  }
  /* Guardar (wishlist) button */
  .btn-save, .btn-wishlist, [class*="guardar"] {
    width: 100% !important;
    text-align: center !important;
    box-sizing: border-box !important;
  }
  /* Related products grid */
  .prod-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
    width: 100% !important;
    padding: 0 16px !important;
    box-sizing: border-box !important;
  }
}
@media(max-width: 480px){
  .prod-grid {
    grid-template-columns: 1fr !important;
  }
  .prod-info-wrap {
    padding: 20px 16px !important;
  }
}

/* ── SINGLE PRODUCT – RESPONSIVE MOBILE ── */
@media(max-width: 768px){
  .product-section {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    padding: 0 !important;
    gap: 0 !important;
  }
  .prod-info-wrap {
    width: 100% !important;
    max-width: 100% !important;
    padding: 24px 20px !important;
    box-sizing: border-box !important;
  }
  .cta-row { width: 100% !important; }
  .btn-cart {
    width: 100% !important;
    max-width: 100% !important;
    justify-content: center !important;
    box-sizing: border-box !important;
  }
  .prod-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
    width: 100% !important;
    padding: 0 16px !important;
    box-sizing: border-box !important;
  }
}
@media(max-width: 480px){
  .prod-grid { grid-template-columns: 1fr !important; }
  .prod-info-wrap { padding: 20px 16px !important; }
}