/* Neethimozhi Boutique — Light & Maroon */

@font-face {
  font-family: 'BerkshireSwash';
  src: url('../fonts/BerkshireSwash-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Inter:wght@300;400;500;600&family=Italiana&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  --black: #1C1A18;
  --bg: #FFFFFF;
  --bg-soft: #FAF8F6;
  --bg-card: #FFFFFF;
  --line: #E8E2DC;
  --line-soft: #F2EDE8;

  --text-pink: #ff008b;

  /* --gold-1: #8B2333; */
  /* --gold-2: #6B1A26;
  --gold-3: #C4788A; */
  --gold-1: var(--black);
  --gold-2: var(--black);
  --gold-3: var(--black);
  --gold-glow: rgba(139, 35, 51, 0.12);

  --ivory: #1C1A18;
  --ivory-dim: #5A5450;
  --ivory-mute: #9C9490;

  --display: 'Cormorant Garamond', 'Times New Roman', serif;
  --brand-font: 'BerkshireSwash', 'Italiana', serif;
  --script: 'BerkshireSwash', 'Italiana', serif;
  --body: 'Inter', system-ui, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;

  --gold-grad: linear-gradient(180deg, #C4788A 0%, #8B2333 40%, #6B1A26 100%);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--ivory);
  font-family: var(--body);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--bg);
  min-height: 100vh;
}

#app {
  width: 100%;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

.font-brand-text {
  font-family: var(--brand-font) !important;

}

/* Gold text utility */
.gold-text {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.gold-line {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold-2) 30%, var(--gold-2) 70%, transparent 100%);
  border: none;
  margin: 0;
}

.gold-line.thin {
  background: linear-gradient(90deg, transparent 0%, rgba(139, 35, 51, 0.3) 50%, transparent 100%);
}

/* Diamond ornament */
.diamond {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--gold-2);
  transform: rotate(45deg);
  margin: 0 8px;
  vertical-align: middle;
}

.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--gold-2);
}

.ornament::before,
.ornament::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-3), transparent);
  max-width: 120px;
}

/* ============ HEADER ============ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: #D4177A;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
}

.announcement-bar {
  background: #A80E5E;
  color: rgba(255, 255, 255, 0.92);
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
  padding: 6px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  overflow: hidden;
  white-space: nowrap;
}

/* ── Mobile: hamburger | brand(centre) | cart ── */
.header-inner {
  display: flex;
  align-items: center;
  padding: 0 12px;
  height: 54px;
  gap: 8px;
}

.header-hamburger {
  display: inline-flex;
  flex-shrink: 0;
}

.header-nav {
  display: none;
}

.header-icon-desktop {
  display: none !important;
}

.header-actions {
  display: flex;
  gap: 2px;
  margin-left: auto;
}

.icon-btn {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 999px;
  color: #FFFFFF;
  transition: background .18s ease;
  position: relative;
}

.icon-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: transparent;
}

.cart-badge {
  position: absolute;
  top: 2px;
  right: 2px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 999px;
  background: #FFFFFF;
  color: #D4177A;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--body);
}

/* Brand — mobile: centred flex-1; desktop: left, flex-shrink */
.brand {
  flex: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  text-decoration: none;
  user-select: none;
}

.brand-mark {
  font-family: var(--brand-font);
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  letter-spacing: 0.01em;
  color: #FFFFFF !important;
  background: none !important;
  -webkit-text-fill-color: #FFFFFF !important;
  line-height: 1.1;
}

.brand-subb {
  font-family: var(--brand-font);
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.82) !important;
  background: none !important;
  -webkit-text-fill-color: rgba(255, 255, 255, 0.82) !important;
  line-height: 1;
}

/* ── Desktop: brand(left) | nav(centre) | icons(right) ── */
@media (min-width: 768px) {
  .header-inner {
    padding: 0 24px;
    height: 58px;
    gap: 0;
  }

  .header-hamburger {
    display: none;
  }

  .brand {
    flex: 0 0 auto;
    align-items: flex-start;
    margin-right: 24px;
  }

  .brand-mark {
    font-size: 24px;
  }

  .brand-subb {
    font-size: 14px;
  }

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

  .header-nav a {
    color: rgba(255, 255, 255, 0.92);
    font-family: var(--body);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.02em;
    padding: 6px 10px;
    border-radius: 4px;
    white-space: nowrap;
    transition: background .15s;
  }

  .header-nav a:hover {
    background: rgba(0, 0, 0, 0.15);
    color: #FFFFFF;
  }

  .header-actions {
    margin-left: 0;
  }

  .header-icon-desktop {
    display: inline-flex !important;
  }
}

/* Push content below the fixed header */
main {
  padding-top: 98px;
}

@media (min-width: 768px) {
  main {
    padding-top: 104px;
  }
}

/* ============ HERO BANNER ============ */
.hero-banner {
  position: relative;
  overflow: hidden;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}

.hero-banner:active {
  cursor: grabbing;
}

.hero-track {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.hero-track::-webkit-scrollbar {
  display: none;
}

.hero-slide {
  flex: 0 0 50%;
  position: relative;
  height: 480px;
  overflow: hidden;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 32px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.10) 50%, transparent 100%);
}

.slide-overlay--left {
  align-items: flex-start;
}

.slide-overlay--right {
  align-items: flex-end;
  text-align: right;
}

.slide-title {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(22px, 3.5vw, 46px);
  font-weight: 400;
  color: #FFFFFF;
  margin: 0 0 8px;
  line-height: 1.1;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.slide-sub {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.80);
  margin: 0 0 14px;
}

.slide-cta {
  display: inline-block;
  background: rgba(255, 255, 255, 0.92);
  color: #1C1A18;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 10px 20px;
  text-decoration: none;
  transition: background .18s;
}

.slide-cta:hover {
  background: #FFFFFF;
}

@media (max-width: 767px) {
  .hero-slide {
    flex: 0 0 85vw;
    height: 300px;
  }
}

/* ============ NEW ARRIVALS COLLAGE ============ */
.new-arrivals {
  padding: 48px 0 0;
  background: var(--bg);
}

.new-arrivals-head {
  text-align: center;
  padding: 0 16px 20px;
}

.new-arrivals-eyebrow {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--ivory-mute);
  margin: 0 0 10px;
}

.new-arrivals-title {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(26px, 6vw, 42px);
  font-weight: 400;
  color: var(--ivory);
  margin: 0;
}

/* 2-column alternating tall/short mosaic */
.collage-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 175px;
  gap: 8px;
  padding: 0 12px;
}

.collage-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  background: #e8e2dc;
}

.collage-tall { grid-row: span 2; }

.collage-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 10%;
  display: block;
  transition: transform .4s ease;
}

.collage-item:hover img { transform: scale(1.05); }

.collage-label {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(255,255,255,0.95);
  color: #1C1A18;
  font-family: var(--body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 5px 12px;
  border-radius: 4px;
  box-shadow: 0 1px 6px rgba(0,0,0,0.12);
}

@media (min-width: 768px) {
  .new-arrivals { padding: 64px 0 0; }
  .collage-grid {
    grid-auto-rows: 230px;
    gap: 12px;
    padding: 0 32px;
    max-width: 860px;
    margin: 0 auto;
  }
}

/* ============ SHOP BY CATEGORY ============ */
.shop-by-cat {
  padding: 48px 16px 56px;
  background: #FDF3F5;
  text-align: center;
}

.shop-by-cat-title {
  font-family: var(--display);
  font-style: normal;
  font-weight: 500;
  font-size: clamp(22px, 5vw, 34px);
  color: var(--ivory);
  margin: 0 0 36px;
  letter-spacing: 0.01em;
}

.shop-by-cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 16px;
  max-width: 880px;
  margin: 0 auto;
}

@media (max-width: 639px) {
  .shop-by-cat-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 22px 12px;
  }

  .shop-by-cat {
    padding: 36px 16px 44px;
  }


}

.cat-circle-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.cat-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #E8DDE0;
  transition: border-color .22s, transform .22s;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .cat-circle {
    width: 160px;
    height: 160px;
  }

  .shop-by-cat {
    padding: 64px 32px 72px;
  } 
}

.cat-circle-item:hover .cat-circle {
  border-color: var(--gold-3);
  transform: scale(1.04);
}

.cat-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.cat-circle-name {
  font-family: var(--body);
  font-size: 14px;
  font-weight: 500;
  color: #1C1A18;
  letter-spacing: 0.01em;
}

/* .cat-circle-accent { color: var(--gold-1); } */

/* ============ CATEGORY CHIPS ============ */
.category-chips {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 16px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.category-chips::-webkit-scrollbar {
  display: none;
}

.cat-chip {
  flex: 0 0 auto;
  scroll-snap-align: start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid var(--line);
  background: var(--bg-soft);
  color: var(--ivory-dim);
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 999px;
  white-space: nowrap;
  transition: all .2s ease;
}

.cat-chip:hover,
.cat-chip.active {
  border-color: var(--gold-2);
  color: var(--gold-1);
  background: rgba(139, 35, 51, 0.06);
}

.cat-chip .count {
  color: var(--ivory-mute);
  font-size: 9px;
}

@media (min-width: 768px) {
  .category-chips {
    justify-content: center;
    padding: 24px 32px;
  }
}

/* ============ SECTION ============ */
.section {
  padding: 32px 0 10px;
}

.section-head {
  padding: 0 16px 18px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}

.section-title {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: 28px;
  letter-spacing: 0.01em;
  margin: 0;
  color: var(--ivory);
  line-height: 1;
}

.section-eyebrow {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--gold-2);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.section-link {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--gold-1);
  text-transform: uppercase;
  border-bottom: 1px solid var(--gold-3);
  padding-bottom: 2px;
  white-space: nowrap;
}

.section-link:hover {
  color: var(--gold-1);
  border-color: var(--gold-1);
}

@media (min-width: 768px) {
  .section {
    padding: 48px 0 64px;
  }

  .section-head {
    padding: 0 32px 24px;
  }

  .section-title {
    font-size: 40px;
  }
}

/* ============ PRODUCT RAIL (horizontal scroll) ============ */
.rail {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 4px 16px 24px;
  scrollbar-width: none;
}

.rail::-webkit-scrollbar {
  display: none;
}

.rail-card {
  flex: 0 0 78%;
  max-width: 320px;
  scroll-snap-align: start;
  background: var(--bg-card);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: all .25s ease;
  cursor: pointer;
  position: relative;
}

.rail-card:hover {
  border-color: var(--gold-3);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.09), 0 0 0 1px rgba(139, 35, 51, 0.10);
}

@media (min-width: 560px) {
  .rail-card {
    flex: 0 0 52%;
  }
}

@media (min-width: 900px) {
  .rail-card {
    flex: 0 0 32%;
  }
}

@media (min-width: 1200px) {
  .rail-card {
    flex: 0 0 24%;
  }
}

.product-image {
  position: relative;
  aspect-ratio: 3 / 4;
  background: var(--bg-soft);
  overflow: hidden;
}

.placeholder-image {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-image:
    repeating-linear-gradient(135deg,
      rgba(139, 35, 51, 0.03) 0px,
      rgba(139, 35, 51, 0.03) 2px,
      transparent 2px,
      transparent 12px),
    linear-gradient(180deg, var(--bg-soft), var(--bg-card));
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform .4s ease;
}

.rail-card:hover .product-img {
  transform: scale(1.05);
}

.placeholder-label {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.3em;
  color: var(--gold-3);
  text-transform: uppercase;
  text-align: center;
  padding: 4px 12px;
  border: 1px solid rgba(139, 35, 51, 0.15);
}

.placeholder-figure {
  font-family: var(--display);
  font-style: italic;
  font-size: 80px;
  color: rgba(139, 35, 51, 0.10);
  margin-bottom: 8px;
  line-height: 1;
}

.product-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--gold-1);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 5px 10px;
  border: 1px solid var(--gold-3);
  backdrop-filter: blur(4px);
}

.product-fav {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ivory-dim);
  backdrop-filter: blur(4px);
  transition: all .2s ease;
}

.product-fav:hover,
.product-fav.active {
  color: var(--gold-1);
  border-color: var(--gold-2);
}

.product-info {
  padding: 16px 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.product-cat {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.25em;
  /* color: var(--ivory-mute); */
  color: var(--text-pink);
  text-transform: uppercase;
}

.product-name {
  font-family: var(--display);
  font-style: italic;
  font-size: 24px;
  font-weight: 500;
  color: var(--ivory);
  line-height: 1.15;
  margin: 0;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 6px;
  gap: 12px;
}

.product-price {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 500;
  color: var(--gold-1);
  letter-spacing: 0.02em;
}

.product-price .strike {
  color: var(--ivory-mute);
  text-decoration: line-through;
  font-size: 14px;
  margin-left: 6px;
  font-weight: 400;
}

.swatches {
  display: flex;
  gap: 6px;
  margin-top: 4px;
}

.swatch {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid var(--line);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.product-view-hint {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ivory-mute);
  margin-top: 6px;
  transition: color .2s ease;
}

.rail-card:hover .product-view-hint {
  color: var(--gold-1);
}

.product-add {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: transparent;
  color: var(--gold-1);
  border: 1px solid var(--line);
  border-top-color: var(--line);
  padding: 12px;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all .2s ease;
  margin-top: auto;
}

.product-add:hover {
  background: var(--gold-2);
  color: #FFFFFF;
  border-color: var(--gold-2);
}

/* ============ FEATURED FULL-BLEED ============ */
.featured-banner {
  position: relative;
  margin: 16px;
  padding: 56px 24px;
  border: 1px solid var(--line);
  text-align: center;
  background: var(--bg-soft);
  overflow: hidden;
}

.featured-banner .corner {
  position: absolute;
  width: 28px;
  height: 28px;
  border: 1px solid var(--gold-2);
}

.featured-banner .corner.tl {
  top: -1px;
  left: -1px;
  border-right: none;
  border-bottom: none;
}

.featured-banner .corner.tr {
  top: -1px;
  right: -1px;
  border-left: none;
  border-bottom: none;
}

.featured-banner .corner.bl {
  bottom: -1px;
  left: -1px;
  border-right: none;
  border-top: none;
}

.featured-banner .corner.br {
  bottom: -1px;
  right: -1px;
  border-left: none;
  border-top: none;
}

.featured-banner .label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.4em;
  color: var(--gold-2);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.featured-banner h3 {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(28px, 6vw, 56px);
  font-weight: 500;
  line-height: 1.1;
  margin: 0 0 10px;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.featured-banner p {
  color: var(--ivory-dim);
  font-family: var(--display);
  font-style: italic;
  font-size: 16px;
  margin: 0 0 22px;
}

@media (min-width: 768px) {
  .featured-banner {
    margin: 32px;
    padding: 80px 40px;
  }
}

/* ============ EDITORIAL GRID (lookbook) ============ */
.editorial {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  padding: 0 16px;
}

@media (min-width: 768px) {
  .editorial {
    grid-template-columns: 1fr 1fr 1fr;
    padding: 0 32px;
    gap: 20px;
  }
}

.editorial-tile {
  position: relative;
  aspect-ratio: 3 / 4;
  border: 1px solid var(--line);
  background: var(--bg-card);
  overflow: hidden;
  cursor: pointer;
}

.editorial-tile:hover {
  border-color: var(--gold-3);
}

.editorial-tile .tile-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  background: linear-gradient(180deg, transparent 30%, rgba(10, 8, 7, 0.85) 100%);
}

.editorial-tile h4 {
  font-family: var(--display);
  font-style: italic;
  font-size: 28px;
  font-weight: 500;
  /* margin: 0 0 4px; */
  margin: 0px -25px -2px;
  color: var(--gold-1);
  background: rgba(255, 255, 255, 1);
  padding: 0 10px;
}

.editorial-tile p {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  /* color: var(--ivory-dim); */
  color: var(--gold-1);
  text-transform: uppercase;
  /* margin: 0; */
  margin: 0px -25px -25px;
  background: rgba(255, 255, 255, 1);
  padding: 0 10px 4px;
}

/* ============ FOOTER ============ */
.site-footer {
  margin-top: 48px;
  padding: 48px 16px 24px;
  border-top: none;
  background: #D4177A;
}

.footer-brand {
  text-align: center;
  margin-bottom: 32px;
}

.footer-brand .brand-mark {
  font-size: 36px;
  color: #FFFFFF !important;
  -webkit-text-fill-color: #FFFFFF !important;
}

.footer-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 20px;
  max-width: 900px;
  margin: 0 auto 32px;
}

@media (min-width: 768px) {
  .footer-cols {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-col h5 {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: #FFFFFF;
  text-transform: uppercase;
  margin: 0 0 14px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col li {
  font-family: var(--body);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
}

.footer-col a {
  font-family: var(--body);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
}

.footer-col a:hover {
  color: #FFFFFF;
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
}

/* ============ MODAL / DRAWER ============ */
.scrim {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  z-index: 100;
  animation: fadeIn .2s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
  }

  to {
    transform: translateX(0);
  }
}

@keyframes slideInUp {
  from {
    transform: translateY(40px);
    opacity: 0;
  }

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

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 440px;
  background: var(--bg-soft);
  border-left: 1px solid var(--line);
  z-index: 101;
  display: flex;
  flex-direction: column;
  animation: slideInRight .3s cubic-bezier(.2, .8, .2, 1);
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.10);
}

.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--line);
}

.drawer-head .icon-btn {
  color: var(--ivory);
}

.drawer-head .icon-btn:hover {
  background: rgba(0, 0, 0, 0.08);
}

.drawer-title {
  font-family: var(--display);
  font-style: italic;
  font-size: 22px;
  margin: 0;
  color: var(--gold-1);
}

.drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
}

.drawer-foot {
  padding: 18px 24px 24px;
  border-top: 1px solid var(--line);
  background: var(--bg);
}

.cart-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-soft);
}

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

.cart-thumb {
  aspect-ratio: 3 / 4;
  background: var(--bg-card);
  border: 1px solid var(--line);
  background-image: repeating-linear-gradient(135deg, rgba(139, 35, 51, 0.04) 0 1px, transparent 1px 8px);
}

.cart-item-name {
  font-family: var(--display);
  font-style: italic;
  font-size: 16px;
  color: var(--ivory);
  margin: 0 0 2px;
}

.cart-item-meta {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.18em;
  color: var(--ivory-mute);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.qty-stepper {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
}

.qty-stepper button {
  width: 26px;
  height: 26px;
  background: transparent;
  border: none;
  color: var(--ivory-dim);
  font-size: 14px;
}

.qty-stepper button:hover {
  color: var(--gold-1);
}

.qty-stepper span {
  min-width: 24px;
  text-align: center;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ivory);
}

.cart-item-price {
  text-align: right;
  font-family: var(--display);
  font-size: 16px;
  color: var(--gold-1);
}

.cart-remove {
  background: none;
  border: none;
  color: var(--ivory-mute);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 6px;
  padding: 0;
}

.cart-remove:hover {
  color: var(--gold-1);
}

.cart-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--ivory-mute);
}

.cart-empty .icon {
  font-family: var(--display);
  font-style: italic;
  font-size: 64px;
  color: rgba(139, 35, 51, 0.15);
  display: block;
  margin-bottom: 12px;
}

.cart-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ivory-dim);
}

.cart-row.total {
  font-family: var(--display);
  font-style: italic;
  font-size: 22px;
  color: var(--gold-1);
  text-transform: none;
  letter-spacing: 0.02em;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  margin-top: 12px;
  margin-bottom: 18px;
}

.btn-primary {
  width: 100%;
  background: var(--gold-1);
  color: #FFFFFF;
  border: none;
  padding: 16px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  transition: all .2s ease;
}

.btn-primary:hover {
  background: var(--gold-2);
  box-shadow: 0 4px 20px var(--gold-glow);
}

.btn-ghost {
  width: 100%;
  background: transparent;
  color: var(--gold-1);
  border: 1px solid var(--gold-3);
  padding: 14px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  transition: all .2s ease;
}

.btn-ghost:hover {
  background: rgba(139, 35, 51, 0.06);
  border-color: var(--gold-2);
}

/* ============ PRODUCT PAGE ============ */
.pp-page {
  min-height: 80vh;
  padding: 106px 16px 80px;
  background: var(--bg);
}
@media (min-width: 768px) {
  .pp-page { padding-top: 112px; }
}

/* Breadcrumb */
.pp-breadcrumb {
  font-size: 13px;
  color: var(--ivory-dim);
  margin-bottom: 20px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.pp-breadcrumb a { color: var(--ivory-dim); }
.pp-bc-sep { margin: 0 6px; }

/* Two-column layout */
.pp-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}
@media (min-width: 768px) {
  .pp-layout { grid-template-columns: 1.05fr 1fr; gap: 52px; }
  .pp-page { padding-left: 40px; padding-right: 40px; }
}

/* Media: thumbnail strip + main image */
.pp-media {
  display: flex;
  gap: 10px;
}

.pp-thumbs {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 72px;
  flex-shrink: 0;
}

.pp-thumb {
  width: 72px;
  height: 86px;
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid var(--line);
  cursor: pointer;
}
.pp-thumb--active { border-color: #D4177A; }
.pp-thumb img { width: 100%; height: 100%; object-fit: cover; object-position: top; }

.pp-main-img {
  flex: 1;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  height: 400px;
}
.pp-main-img img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; }
@media (min-width: 768px) { .pp-main-img { height: auto; aspect-ratio: 3/4; } }

.pp-badge {
  position: absolute;
  top: 14px; right: 14px;
  background: rgba(255,255,255,0.95);
  color: #1C1A18;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 4px;
}

/* Info panel */
.pp-name {
  font-family: var(--body);
  font-size: clamp(20px, 4vw, 28px);
  font-weight: 700;
  color: var(--ivory);
  margin: 0 0 10px;
  line-height: 1.25;
}

.pp-price {
  font-size: 20px;
  font-weight: 600;
  color: var(--ivory);
  margin-bottom: 14px;
}
.pp-mrp {
  color: var(--ivory-mute);
  text-decoration: line-through;
  font-size: 15px;
  margin-left: 10px;
}

.pp-divider { border: none; border-top: 1px solid var(--line); margin: 14px 0; }

.pp-sku { font-size: 13px; color: var(--ivory-dim); margin-bottom: 20px; }

.pp-section { margin-bottom: 20px; }
.pp-section-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.pp-section-label { font-size: 14px; font-weight: 500; color: var(--ivory); }
.pp-link { font-size: 13px; color: #D4177A; text-decoration: none; }

/* Size circles */
.pp-sizes { display: flex; gap: 8px; flex-wrap: wrap; }
.pp-size-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  background: transparent;
  font-size: 12px;
  font-family: var(--body);
  color: var(--ivory);
  cursor: pointer;
  transition: border-color .15s;
}
.pp-size-btn:hover { border-color: var(--ivory); }
.pp-size-btn--active { border-color: #D4177A; border-width: 2px; font-weight: 700; }
.pp-size-btn--oos { opacity: 0.35; cursor: not-allowed; text-decoration: line-through; }
.pp-size-btn--oos:hover { border-color: var(--line); }

/* Qty stepper */
.pp-qty {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
}
.pp-qty button { width: 40px; height: 40px; background: none; border: none; font-size: 20px; cursor: pointer; color: var(--ivory); line-height: 1; }
.pp-qty span { min-width: 44px; text-align: center; font-size: 15px; font-weight: 500; border-left: 1px solid var(--line); border-right: 1px solid var(--line); padding: 0 4px; line-height: 40px; }

/* Trust badge */
.pp-trust {
  display: inline-block;
  background: #D4177A;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 9px 18px;
  border-radius: 20px;
  margin-bottom: 16px;
}

/* Shipping box */
.pp-shipping {
  border: 1.5px solid #D4177A;
  border-radius: 6px;
  padding: 12px 16px;
  margin-bottom: 22px;
  font-size: 13px;
  color: var(--ivory-dim);
  line-height: 1.6;
}
.pp-shipping-title { font-weight: 600; color: var(--ivory); margin-bottom: 6px; }
.pp-shipping p { margin: 2px 0; }

/* Add to cart button */
.pp-add-cart {
  width: 100%;
  background: #D4177A;
  color: #fff;
  border: none;
  padding: 16px;
  font-family: var(--body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 4px;
  margin-bottom: 28px;
  transition: background .2s;
}
.pp-add-cart:hover { background: #A80E5E; }

/* Spec list */
.pp-specs { border-top: 1px solid var(--line); padding-top: 4px; }
.pp-spec-row {
  display: flex;
  gap: 8px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: 14px;
}
.pp-spec-key { font-weight: 600; color: var(--ivory); min-width: 70px; }
.pp-spec-val { color: var(--ivory-dim); }

/* ============ TOAST ============ */
.toast-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 9500;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: toastFadeIn .22s ease;
}
.toast-popup {
  background: #1C1A18;
  border: 1px solid rgba(196, 120, 138, 0.35);
  color: #FAF8F6;
  padding: 36px 40px 32px;
  max-width: 380px;
  width: calc(100% - 48px);
  text-align: center;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255,255,255,0.04);
  animation: toastPopIn .3s cubic-bezier(0.34, 1.4, 0.64, 1);
}
.toast-icon-ring {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(196,120,138,0.18) 0%, rgba(139,35,51,0.18) 100%);
  border: 1.5px solid rgba(196, 120, 138, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.toast-msg {
  font-family: var(--body);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.55;
  color: #FAF8F6;
  letter-spacing: 0;
  text-transform: none;
}
@keyframes toastPopIn {
  from { transform: scale(0.82); opacity: 0; }
  to   { transform: scale(1);    opacity: 1; }
}
@keyframes toastFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ============ SHOWCASE / VALUES ============ */
.values-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin: 32px 0 0;
}

@media (min-width: 768px) {
  .values-strip {
    grid-template-columns: repeat(4, 1fr);
  }
}

.value-cell {
  background: var(--bg-soft);
  padding: 24px 18px;
  text-align: center;
}

.value-cell .v-icon {
  font-family: var(--display);
  font-style: italic;
  font-size: 28px;
  color: var(--gold-1);
  margin-bottom: 8px;
}

.value-cell h6 {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--ivory);
  text-transform: uppercase;
  margin: 0 0 4px;
}

.value-cell p {
  font-size: 11px;
  color: var(--ivory-mute);
  margin: 0;
  line-height: 1.5;
}

/* ============ MARQUEE ============ */
.marquee {
  overflow: hidden;
  white-space: nowrap;
  display: flex;
}

.marquee-track {
  display: inline-flex;
  gap: 32px;
  animation: marquee 40s linear infinite;
  padding-right: 32px;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ============ SECTION DIVIDER ORNAMENT ============ */
.divider-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 24px 16px;
  color: var(--gold-2);
}

.divider-ornament::before,
.divider-ornament::after {
  content: '';
  flex: 1;
  max-width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-3), transparent);
}

.divider-ornament .di-mark {
  font-family: var(--display);
  font-style: italic;
  font-size: 18px;
  letter-spacing: 0.2em;
  color: var(--gold-1);
}

/* utility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Hide scrollbars on rails for desktop too */
.no-scrollbar::-webkit-scrollbar {
  display: none;
}

.no-scrollbar {
  scrollbar-width: none;
}