/* ════════════════════════════════════════
   KENSFORD ATELIER — Shared Styles
   ════════════════════════════════════════ */

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

:root {
  --ink: #0e0d0b;
  --ink-soft: #1c1a17;
  --cream: #f3f1ea;
  --cream-2: #e5e0d1;
  --warm: #cdc6b3;
  --gold: #6e2026;
  --gold-2: #8d2c32;
  --muted: #76706a;
  --line: rgba(14,13,11,0.09);
  --line-gold: rgba(110,32,38,0.22);
  --red: #6e2026;
  --ff-display: 'Playfair Display', serif;
  --ff-body: 'Jost', sans-serif;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--ff-body);
  background: var(--cream);
  color: var(--ink);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
img { max-width: 100%; display: block; }

::-webkit-scrollbar { width: 4px; height: 4px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--gold); }

/* ─────────────────────────────────────────
   ANNOUNCEMENT BAR
   ───────────────────────────────────────── */
.announce {
  background: var(--ink);
  color: var(--cream);
  padding: 0.6rem 0;
  overflow: hidden;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 300;
  position: relative;
}
.announce-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: marqueeAnnounce 45s linear infinite;
  width: max-content;
}
.announce-item { padding: 0 2rem; }
.announce-dot { color: var(--gold-2); padding: 0 0.4rem; opacity: 0.6; }
@keyframes marqueeAnnounce {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ─────────────────────────────────────────
   NAVIGATION
   ───────────────────────────────────────── */
nav.main-nav {
  background: var(--cream);
  border-bottom: 0.5px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(8px);
  background: rgba(250,246,238,0.95);
}
.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.2rem 2.5rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
}
.nav-links {
  display: flex;
  gap: 2.2rem;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 400;
  opacity: 0.75;
  position: relative;
  padding: 0.5rem 0;
  transition: opacity 0.2s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 0.5px;
  background: var(--gold);
  transition: width 0.3s, left 0.3s;
}
.nav-links a:hover { opacity: 1; }
.nav-links a:hover::after { width: 100%; left: 0; }
.nav-links a.active { opacity: 1; }
.nav-links a.active::after { width: 100%; left: 0; }

.nav-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}
.nav-logo-main {
  font-family: var(--ff-display);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.26em;
  padding-left: 0.26em;
}
.nav-logo-sub {
  font-size: 8px;
  letter-spacing: 0.38em;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 4px;
  padding-left: 0.38em;
}

.nav-actions {
  display: flex;
  gap: 1.4rem;
  align-items: center;
  justify-content: flex-end;
}
.nav-icon {
  width: 18px;
  height: 18px;
  opacity: 0.75;
  transition: opacity 0.2s;
}
.nav-icon:hover { opacity: 1; }
.nav-icon svg { width: 100%; height: 100%; stroke: var(--ink); fill: none; stroke-width: 1.2; }
.cart-count {
  position: absolute;
  background: var(--gold);
  color: var(--cream);
  font-size: 9px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -8px;
  margin-top: -6px;
  font-weight: 500;
}
.cart-wrap { position: relative; display: flex; align-items: center; }

/* mobile nav */
.nav-mobile-btn { display: none; }
@media (max-width: 900px) {
  .nav-inner { grid-template-columns: auto 1fr auto; padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .nav-mobile-btn { display: flex; flex-direction: column; gap: 4px; }
  .nav-mobile-btn span { width: 22px; height: 1.5px; background: var(--ink); display: block; }
  .nav-logo-main { font-size: 18px; }
  .nav-logo-sub { font-size: 7px; }
}

/* ─────────────────────────────────────────
   GLOBAL TYPOGRAPHY & BUTTONS
   ───────────────────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
  margin-bottom: 1.4rem;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 0.5px;
  background: var(--gold);
}
.eyebrow.center { justify-content: center; }
.eyebrow.center::after {
  content: '';
  width: 28px;
  height: 0.5px;
  background: var(--gold);
}

.h-display {
  font-family: var(--ff-display);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.012em;
  color: var(--ink);
}
.h-display em { font-style: italic; color: var(--gold); }

.h1 { font-size: clamp(48px, 6.2vw, 88px); }
.h2 { font-size: clamp(36px, 4.5vw, 62px); }
.h3 { font-size: clamp(26px, 3vw, 38px); }

.lead {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.85;
  font-weight: 300;
  letter-spacing: 0.02em;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--ff-body);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 1rem 2.4rem;
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
}
.btn-dark { background: var(--ink); color: var(--cream); }
.btn-dark:hover { background: var(--gold); color: var(--ink); }
.btn-gold { background: var(--gold); color: var(--cream); }
.btn-gold:hover { background: var(--ink); }
.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 0.5px solid var(--ink);
}
.btn-outline:hover { background: var(--ink); color: var(--cream); }
.btn-ghost {
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 400;
  border-bottom: 0.5px solid var(--gold);
  padding-bottom: 4px;
  color: var(--ink);
  transition: color 0.2s;
}
.btn-ghost:hover { color: var(--gold); }
.btn .arrow { display: inline-block; transition: transform 0.25s; }
.btn:hover .arrow { transform: translateX(4px); }

/* ─────────────────────────────────────────
   CONTAINERS
   ───────────────────────────────────────── */
.container { max-width: 1400px; margin: 0 auto; padding: 0 2.5rem; }
.container-tight { max-width: 1100px; margin: 0 auto; padding: 0 2.5rem; }
.section { padding: 7rem 0; }
.section-sm { padding: 5rem 0; }
@media (max-width: 900px) {
  .container, .container-tight { padding: 0 1.5rem; }
  .section { padding: 4rem 0; }
}

/* ─────────────────────────────────────────
   PRODUCT CARDS
   ───────────────────────────────────────── */
.product-card {
  display: flex;
  flex-direction: column;
  background: transparent;
  cursor: pointer;
  transition: transform 0.3s;
}
.product-card:hover .product-img { transform: scale(1.02); }
.product-card:hover .product-img-hover { opacity: 1; }
.product-card:hover .product-add { transform: translateY(0); opacity: 1; }
.product-img-wrap {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--cream-2);
  overflow: hidden;
  border: 0.5px solid var(--line);
}
.product-img {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.4s;
}
.product-img svg { width: 62%; height: auto; }
.product-img-hover {
  opacity: 0;
}
.product-img-bg-white  { background: linear-gradient(160deg, #f7f3ec 0%, #ebe4d3 100%); }
.product-img-bg-black  { background: linear-gradient(160deg, #2a2723 0%, #15120f 100%); }
.product-img-bg-navy   { background: linear-gradient(160deg, #28344f 0%, #141c30 100%); }
.product-img-bg-sky    { background: linear-gradient(160deg, #cae0f0 0%, #a4c6e2 100%); }
.product-img-bg-wine   { background: linear-gradient(160deg, #7a2329 0%, #3a0e15 100%); }

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--ink);
  color: var(--cream);
  padding: 5px 10px;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  z-index: 3;
}
.product-badge.sale { background: var(--red); }
.product-badge.new { background: var(--gold); }

.product-add {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  background: var(--ink);
  color: var(--cream);
  padding: 0.85rem;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  text-align: center;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s, transform 0.3s, background 0.2s;
  cursor: pointer;
}
.product-add:hover { background: var(--gold); color: var(--ink); }

.product-info {
  padding: 1rem 0.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.product-name {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: var(--ink);
}
.product-meta {
  font-size: 10.5px;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.product-price-row {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  margin-top: 0.3rem;
}
.product-price {
  font-family: var(--ff-display);
  font-size: 16px;
  color: var(--ink);
  font-weight: 500;
}
.product-price-old {
  font-size: 13px;
  color: var(--muted);
  text-decoration: line-through;
}
.product-swatches {
  display: flex;
  gap: 6px;
  margin-top: 0.4rem;
}
.swatch-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 0.5px solid var(--line);
  cursor: pointer;
  transition: transform 0.2s;
}
.swatch-dot:hover { transform: scale(1.2); }
.swatch-w  { background: linear-gradient(135deg, #f8f5f0, #e8e4dc); }
.swatch-b  { background: linear-gradient(135deg, #1e1c19, #0d0b09); }
.swatch-n  { background: linear-gradient(135deg, #243052, #151d33); }
.swatch-s  { background: linear-gradient(135deg, #cde4f4, #a8cde8); }
.swatch-wn { background: linear-gradient(135deg, #7a2329, #3a0e15); }

/* ─────────────────────────────────────────
   CAROUSEL
   ───────────────────────────────────────── */
.carousel {
  position: relative;
  margin: 0 -1rem;
}
.carousel-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0 1rem 2.5rem;
  gap: 2rem;
  flex-wrap: wrap;
}
.carousel-title { display: flex; flex-direction: column; gap: 0.8rem; }
.carousel-arrows {
  display: flex;
  gap: 0.6rem;
}
.car-arrow {
  width: 42px;
  height: 42px;
  border: 0.5px solid var(--ink);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.car-arrow:hover { background: var(--ink); color: var(--cream); }
.car-arrow svg { width: 14px; height: 14px; }
.car-arrow:disabled { opacity: 0.3; cursor: not-allowed; }

.carousel-track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding: 0 1rem 1rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-track > .product-card {
  flex: 0 0 calc(25% - 1.125rem);
  scroll-snap-align: start;
  min-width: 240px;
}
@media (max-width: 1100px) {
  .carousel-track > .product-card { flex-basis: calc(33.333% - 1rem); }
}
@media (max-width: 800px) {
  .carousel-track > .product-card { flex-basis: calc(50% - 0.75rem); }
}
@media (max-width: 500px) {
  .carousel-track > .product-card { flex-basis: 75%; min-width: 0; }
}

/* ─────────────────────────────────────────
   FOOTER
   ───────────────────────────────────────── */
.newsletter {
  background: var(--ink);
  color: var(--cream);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.newsletter-bg {
  position: absolute;
  font-family: var(--ff-display);
  font-size: 280px;
  color: rgba(255,255,255,0.025);
  font-weight: 700;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  line-height: 1;
  letter-spacing: -0.05em;
  user-select: none;
  white-space: nowrap;
}
.newsletter-inner { position: relative; max-width: 560px; margin: 0 auto; padding: 0 2rem; }
.newsletter h3 {
  font-family: var(--ff-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 400;
  margin-bottom: 1rem;
  line-height: 1.1;
}
.newsletter p {
  font-size: 13px;
  color: rgba(250,246,238,0.55);
  margin-bottom: 2.2rem;
  letter-spacing: 0.04em;
  line-height: 1.7;
}
.news-form {
  display: flex;
  border-bottom: 0.5px solid rgba(250,246,238,0.25);
  padding-bottom: 0.4rem;
}
.news-form input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--cream);
  font-family: var(--ff-body);
  font-size: 13px;
  padding: 0.6rem 0;
  letter-spacing: 0.05em;
  font-weight: 300;
}
.news-form input::placeholder { color: rgba(250,246,238,0.4); }
.news-form button {
  background: transparent;
  color: var(--cream);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0 1rem;
  font-weight: 500;
  transition: color 0.2s;
}
.news-form button:hover { color: var(--gold-2); }

footer.site-footer {
  background: var(--ink);
  color: var(--cream);
  padding: 4rem 0 2rem;
  border-top: 0.5px solid rgba(250,246,238,0.06);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3.5rem;
  margin-bottom: 3.5rem;
  padding-bottom: 3rem;
  border-bottom: 0.5px solid rgba(250,246,238,0.07);
}
.footer-brand {
  font-family: var(--ff-display);
  font-size: 28px;
  letter-spacing: 0.22em;
  padding-left: 0.22em;
  font-weight: 500;
  margin-bottom: 0.3rem;
}
.footer-brand-sub {
  font-size: 8.5px;
  letter-spacing: 0.36em;
  color: var(--gold-2);
  text-transform: uppercase;
  margin-bottom: 1.4rem;
}
.footer-desc {
  font-size: 12px;
  color: rgba(250,246,238,0.35);
  line-height: 1.8;
  max-width: 260px;
  font-weight: 300;
}
.footer-col h5 {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(250,246,238,0.3);
  font-weight: 400;
  margin-bottom: 1.3rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.8rem; }
.footer-col a {
  font-size: 12.5px;
  color: rgba(250,246,238,0.55);
  letter-spacing: 0.04em;
  font-weight: 300;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold-2); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 0 0.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom-left { font-size: 10.5px; color: rgba(250,246,238,0.25); letter-spacing: 0.1em; font-weight: 300; }
.footer-pay {
  display: flex;
  gap: 0.7rem;
  align-items: center;
}
.footer-pay span {
  font-size: 8.5px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(250,246,238,0.4);
  padding: 4px 10px;
  border: 0.5px solid rgba(250,246,238,0.15);
}

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ─────────────────────────────────────────
   ANIMATIONS
   ───────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ═══ SCROLLING NAVIGATION SHOW/HIDE ═══ */
nav.main-nav {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s, border-bottom 0.3s;
}
nav.main-nav.nav-hidden {
  transform: translateY(-100%);
}

/* ═══ PERSISTENT CART DRAWER ═══ */
.cart-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(14, 13, 11, 0.4);
  backdrop-filter: blur(4px);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.cart-drawer-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.cart-drawer {
  position: fixed;
  top: 0;
  right: -440px;
  width: 100%;
  max-width: 440px;
  height: 100%;
  background: var(--cream);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.cart-drawer.open {
  right: 0;
}
.cart-drawer-header {
  padding: 1.5rem 2rem;
  border-bottom: 0.5px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cart-drawer-title {
  font-family: var(--ff-display);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.cart-drawer-close {
  font-size: 24px;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
  background: none;
  border: none;
  padding: 0.5rem;
}
.cart-drawer-close:hover {
  opacity: 1;
}
.cart-drawer-items {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.cart-item {
  display: flex;
  gap: 1rem;
  padding-bottom: 1.5rem;
  border-bottom: 0.5px solid var(--line);
}
.cart-item:last-child {
  border-bottom: none;
}
.cart-item-img {
  width: 70px;
  aspect-ratio: 4/5;
  background: var(--cream-2);
  border: 0.5px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cart-item-img svg {
  width: 70%;
  height: auto;
}
.cart-item-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.cart-item-name {
  font-size: 13.5px;
  font-weight: 400;
  letter-spacing: 0.02em;
}
.cart-item-meta {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.04em;
  margin-top: 2px;
}
.cart-item-qty-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
}
.cart-item-qty {
  display: flex;
  align-items: center;
  border: 0.5px solid var(--line);
  background: var(--cream);
}
.cart-item-qty button {
  padding: 4px 10px;
  font-size: 14px;
  border: none;
  background: none;
  cursor: pointer;
}
.cart-item-qty span {
  width: 28px;
  text-align: center;
  font-size: 12px;
  font-weight: 400;
}
.cart-item-price {
  font-family: var(--ff-display);
  font-size: 14px;
  font-weight: 500;
}
.cart-item-remove {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
  margin-top: 4px;
  align-self: flex-start;
  border-bottom: 0.5px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.cart-item-remove:hover {
  color: var(--gold);
  border-color: var(--gold);
}
.cart-drawer-footer {
  padding: 1.5rem 2rem;
  border-top: 0.5px solid var(--line);
  background: var(--cream-2);
}
.cart-subtotal-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.2rem;
}
.cart-subtotal-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.cart-subtotal-price {
  font-family: var(--ff-display);
  font-size: 20px;
  font-weight: 500;
}
.cart-checkout-btn {
  width: 100%;
  background: var(--ink);
  color: var(--cream);
  padding: 1rem;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: background 0.2s;
}
.cart-checkout-btn:hover {
  background: var(--gold);
}
.cart-empty-msg {
  text-align: center;
  font-size: 13.5px;
  color: var(--muted);
  margin-top: 3rem;
}

/* ═══ MOBILE NAV DRAWER ═══ */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(14, 13, 11, 0.4);
  backdrop-filter: blur(4px);
  z-index: 99;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.mobile-nav-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  left: -280px;
  width: 280px;
  height: 100%;
  background: var(--cream);
  box-shadow: 10px 0 30px rgba(0, 0, 0, 0.15);
  z-index: 100;
  display: flex;
  flex-direction: column;
  transition: left 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 2rem 1.5rem;
}
.mobile-nav-drawer.open {
  left: 0;
}
.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
}
.mobile-nav-close {
  font-size: 24px;
  cursor: pointer;
  background: none;
  border: none;
}
.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.mobile-nav-links a {
  font-size: 15px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 400;
  display: block;
}
.mobile-nav-links a.active {
  color: var(--gold);
  font-weight: 500;
}

/* ═══ SIZE GUIDE MODAL ═══ */
dialog#size-guide-modal {
  border: none;
  background: var(--cream);
  padding: 3rem 2.5rem;
  max-width: 540px;
  width: 90%;
  margin: auto;
  box-shadow: 0 30px 60px rgba(0,0,0,0.18);
  position: fixed;
  inset: 0;
  z-index: 1001;
}
dialog#size-guide-modal::backdrop {
  background: rgba(14, 13, 11, 0.5);
  backdrop-filter: blur(5px);
}
.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}
.modal-title {
  font-family: var(--ff-display);
  font-size: 24px;
  font-weight: 500;
}
.modal-close-btn {
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.2s;
  padding: 0.2rem;
}
.modal-close-btn:hover {
  opacity: 1;
}
.size-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
  font-size: 12.5px;
}
.size-table th, .size-table td {
  padding: 12px;
  text-align: left;
  border-bottom: 0.5px solid var(--line);
}
.size-table th {
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
}
.size-table tbody tr:hover {
  background: rgba(14, 13, 11, 0.03);
}

/* ═══ DYNAMIC COLOR GRADIENTS FOR SVG SHIRTS ═══ */
.product-card {
  --shirt-grad-1: var(--current-grad-1, #fbfaf6);
  --shirt-grad-2: var(--current-grad-2, #e8e3d5);
}

/* ═══ WHOLESALE FORM SUCCESS MESSAGE STATE ═══ */
.ws-success-message {
  display: none;
  text-align: center;
  padding: 4rem 2rem;
}
.ws-success-message.visible {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.ws-success-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(45, 106, 63, 0.1);
  color: #2d6a3f;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 1.5rem;
}
.ws-success-title {
  font-family: var(--ff-display);
  font-size: 24px;
  margin-bottom: 1rem;
}
.ws-success-text {
  font-size: 14px;
  color: var(--muted);
  max-width: 320px;
  line-height: 1.6;
}

