/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   ELRISH — LUXURY FASHION HOUSE
   Rooted in Indian Heritage, Designed for the World
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

:root {
  /* Primary Colors */
  --burgundy: #7A0020;
  --gold: #C9A84C;
  --gold-light: rgba(201,168,76,0.15);

  /* Backgrounds — warm layered system */
  --ivory: #F9F5EF;
  --warm-beige: #EFE8DC;
  --cream: #E8DDD0;
  --white: #FAF7F3;

  /* Text */
  --charcoal: #26180E;
  --subtle: #7A6A57;

  /* Sections */
  --emerald: #0A4D40;
  --dark: #160E07;

  /* Typography */
  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Lato', sans-serif;

  /* Spacing Grid 8px */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 48px;
  --space-xl: 80px;
  --space-2xl: 110px;

  /* Shadows — warmer tones */
  --shadow-sm: 0 2px 24px rgba(38,24,14,0.06);
  --shadow-md: 0 8px 40px rgba(38,24,14,0.10);
  --shadow-lg: 0 20px 60px rgba(38,24,14,0.14);

  /* Transitions */
  --ease-out: cubic-bezier(0.19, 1, 0.22, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   BASE STYLES
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--ivory);
  color: var(--charcoal);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   TYPOGRAPHY
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

h1 {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(1.8rem, 5vw, 3rem);
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  font-size: 1rem;
  font-weight: 400;
  color: var(--charcoal);
}

p.intro {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--subtle);
  max-width: 700px;
}

a {
  color: var(--burgundy);
  text-decoration: none;
  transition: color 0.3s var(--ease-in-out);
}

a:hover {
  color: var(--gold);
}

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

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   LAYOUT
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.container {
  width: min(100%, 1200px);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

section {
  padding: var(--space-2xl) 0;
  position: relative;
  overflow: hidden;
}

/* Schichtsystem — alternating warm backgrounds */
section:nth-child(odd) {
  background-color: var(--ivory);
}

section:nth-child(even) {
  background-color: var(--warm-beige);
}

section.dark {
  background-color: var(--dark);
  color: var(--ivory);
}

section.emerald {
  background-color: var(--emerald);
  color: var(--ivory);
}

section.white {
  background-color: var(--white);
}

section.cream {
  background-color: var(--cream);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   NAVIGATION
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: rgba(255, 248, 240, 0.98);
  border-bottom: 1px solid rgba(139, 0, 0, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 var(--space-md);
  z-index: 1000;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.3s var(--ease-in-out);
}

nav.scrolled {
  background: rgba(255, 248, 240, 0.96);
  box-shadow: var(--shadow-sm);
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--burgundy);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.3s var(--ease-in-out);
}

.nav-logo:hover {
  color: var(--gold);
}

.nav-links {
  display: flex;
  gap: var(--space-lg);
  align-items: center;
}

.nav-links a {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 500;
  color: var(--charcoal);
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--burgundy);
  transition: width 0.3s var(--ease-out);
}

.nav-links a:hover::after {
  width: 100%;
}

.cart-icon {
  position: relative;
  cursor: pointer;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease-in-out);
}

.cart-icon:hover {
  transform: scale(1.1);
}

.cart-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--burgundy);
  stroke-width: 1.5;
}

.cart-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--burgundy);
  color: var(--white);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  display: none;
}

.cart-badge.active {
  display: flex;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--charcoal);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   HERO
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  padding-top: 80px;
  background: linear-gradient(135deg, rgba(10, 77, 64, 0.75) 0%, rgba(6, 50, 42, 0.80) 100%),
              url('https://images.unsplash.com/photo-1583391733956-3750e0ff4e8b?w=2000&q=80&fit=crop') center/cover no-repeat;
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
  animation: pulse-light 8s ease-in-out infinite;
}

@keyframes pulse-light {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 var(--space-md);
}

.hero-tagline {
  display: block;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
  opacity: 0.9;
  animation: fadeInDown 0.8s 0.2s forwards var(--ease-out);
  opacity: 0;
}

@keyframes fadeInDown {
  to { opacity: 0.9; transform: translateY(0); }
}

.hero-content h1 {
  color: var(--white);
  margin-bottom: var(--space-md);
  animation: fadeInDown 0.8s 0.4s forwards var(--ease-out);
  opacity: 0;
}

.hero-subtitle {
  font-size: clamp(0.95rem, 3vw, 1.3rem);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-lg);
  animation: fadeInDown 0.8s 0.6s forwards var(--ease-out);
  opacity: 0;
}

.hero-intro {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.8;
  opacity: 0.95;
  animation: fadeInDown 0.8s 0.8s forwards var(--ease-out);
  opacity: 0;
}

.divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: var(--space-lg) auto;
  opacity: 0.7;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SECTION LABELS
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: var(--space-md);
}

section.dark .section-label,
section.emerald .section-label {
  color: var(--gold);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   ESSENCE / INTRO SECTION
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.essence-text {
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  line-height: 1.8;
  text-align: center;
  max-width: 850px;
  margin: 0 auto;
  color: var(--charcoal);
}

.essence-text .italic {
  font-style: italic;
  color: var(--burgundy);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PRODUCT GRID
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.product-card {
  background: transparent;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  transition: all 0.4s var(--ease-in-out);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  box-shadow: none;
  transform: none;
}

.product-image {
  width: 100%;
  height: 340px;
  overflow: hidden;
  background: var(--warm-beige);
  position: relative;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease-in-out);
}

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

.product-info {
  padding: var(--space-md) 0 var(--space-lg);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-category {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.product-name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--charcoal);
  margin-bottom: var(--space-sm);
  font-weight: 600;
}

.product-price {
  font-size: 1rem;
  color: var(--charcoal);
  font-weight: 400;
  font-family: var(--font-serif);
  margin-bottom: var(--space-md);
  margin-top: auto;
}

.btn-add-cart {
  background: transparent;
  color: var(--charcoal);
  border: 1px solid var(--cream);
  padding: 13px var(--space-md);
  border-radius: 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.75rem;
  transition: all 0.3s var(--ease-in-out);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.btn-add-cart:hover {
  background: var(--charcoal);
  color: var(--ivory);
  border-color: var(--charcoal);
}

.btn-add-cart:active {
  opacity: 0.85;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FOUNDERS / ABOUT SECTION
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.founders-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
}

.founder-image {
  background-size: cover;
  background-position: center;
  min-height: 500px;
}

.founder-content {
  padding: var(--space-xl);
  background: var(--ivory);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.founder-content h2 {
  margin-bottom: var(--space-lg);
}

.founder-content p {
  margin-bottom: var(--space-md);
  color: var(--subtle);
  line-height: 1.8;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PILLARS / VALUES GRID
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.pillars-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}

.pillar-card {
  background: var(--ivory);
  padding: var(--space-xl);
  border-radius: 0;
  border: 1px solid var(--cream);
  transition: all 0.3s var(--ease-in-out);
}

.pillar-card:hover {
  border-color: var(--gold);
  transform: none;
}

.pillar-card h3 {
  color: var(--burgundy);
  margin-bottom: var(--space-md);
}

.pillar-card p {
  color: var(--subtle);
  line-height: 1.8;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   STATEMENT SECTION
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.statement-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.statement-content h2 {
  font-size: clamp(2.2rem, 6vw, 4rem);
  margin-bottom: var(--space-lg);
  color: var(--ivory);
}

.statement-tagline {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--gold);
  margin-top: var(--space-lg);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   MOODBOARD / SIGNATURE
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.moodboard {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.mood-item {
  aspect-ratio: 2.5/3;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
}

.mood-item-bg {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s var(--ease-out);
}

.mood-item:hover .mood-item-bg {
  transform: scale(1.08);
}

.mood-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0, 0, 0, 0.6) 100%);
  display: flex;
  align-items: flex-end;
  padding: var(--space-lg);
  color: var(--white);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   DISTINCTION FEATURES
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}

.feature {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: var(--space-xl);
  border-radius: 8px;
  transition: all 0.3s var(--ease-in-out);
}

section.dark .feature {
  border-color: rgba(255, 255, 255, 0.15);
}

.feature:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-4px);
}

.feature h3 {
  color: var(--ivory);
  margin-bottom: var(--space-md);
}

.feature p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CART PAGE
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.cart-container {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}

.cart-items {
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.cart-item {
  display: flex;
  gap: var(--space-lg);
  padding: var(--space-lg);
  border-bottom: 1px solid var(--warm-beige);
  align-items: center;
}

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

.cart-item-image {
  width: 120px;
  height: 120px;
  border-radius: 4px;
  overflow: hidden;
  flex-shrink: 0;
}

.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-info {
  flex: 1;
}

.cart-item-name {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--charcoal);
  margin-bottom: var(--space-sm);
  font-weight: 600;
}

.cart-item-price {
  color: var(--burgundy);
  font-weight: 700;
  margin-bottom: var(--space-md);
}

.cart-controls {
  display: flex;
  gap: var(--space-sm);
  align-items: center;
}

.qty-btn {
  background: var(--warm-beige);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.2s var(--ease-in-out);
}

.qty-btn:hover {
  background: var(--gold);
  color: var(--charcoal);
}

.qty-display {
  min-width: 40px;
  text-align: center;
  font-weight: 600;
}

.btn-remove {
  background: transparent;
  color: var(--burgundy);
  border: 1px solid var(--burgundy);
  padding: var(--space-sm);
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.8rem;
  transition: all 0.2s var(--ease-in-out);
  margin-left: var(--space-md);
}

.btn-remove:hover {
  background: var(--burgundy);
  color: var(--white);
}

.cart-summary {
  background: var(--warm-beige);
  padding: var(--space-xl);
  border-radius: 8px;
  height: fit-content;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: var(--space-md);
  font-size: 0.95rem;
}

.summary-row.total {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--burgundy);
  border-top: 1px solid var(--warm-beige);
  padding-top: var(--space-md);
}

.coupon-section {
  display: flex;
  gap: var(--space-sm);
  margin: var(--space-lg) 0;
}

.coupon-input {
  flex: 1;
  padding: var(--space-md);
  border: 1px solid var(--gold);
  border-radius: 4px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
}

.coupon-input:focus {
  outline: none;
  border-color: var(--burgundy);
  box-shadow: 0 0 0 3px rgba(139, 0, 0, 0.1);
}

.coupon-btn {
  background: var(--burgundy);
  color: var(--white);
  border: none;
  padding: var(--space-md) var(--space-lg);
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  transition: all 0.2s var(--ease-in-out);
}

.coupon-btn:hover {
  background: var(--gold);
  color: var(--charcoal);
}

.btn-checkout {
  width: 100%;
  background: var(--burgundy);
  color: var(--white);
  border: none;
  padding: var(--space-lg);
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.3s var(--ease-in-out);
  margin-bottom: var(--space-md);
}

.btn-checkout:hover {
  background: var(--gold);
  color: var(--charcoal);
  transform: translateY(-2px);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FOOTER
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

footer {
  background: var(--dark);
  color: var(--ivory);
  padding: var(--space-2xl) 0;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.footer-column h3 {
  color: var(--gold);
  margin-bottom: var(--space-md);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.footer-column p {
  color: rgba(255, 248, 240, 0.8);
  font-size: 0.95rem;
  line-height: 1.8;
}

.footer-column a {
  display: block;
  color: rgba(255, 248, 240, 0.8);
  font-size: 0.9rem;
  margin-bottom: var(--space-sm);
  transition: color 0.2s var(--ease-in-out);
}

.footer-column a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 248, 240, 0.1);
  padding-top: var(--space-lg);
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 248, 240, 0.6);
  letter-spacing: 0.15em;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PAGE HEADER (inner pages: collection, about, cart, checkout)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.page-header {
  padding: 160px 0 80px;
  text-align: center;
  background: var(--ivory);
  border-bottom: 1px solid var(--cream);
}

.page-header .section-label {
  margin-bottom: var(--space-md);
}

.page-header h1 {
  font-size: clamp(2rem, 6vw, 3.5rem);
  color: var(--charcoal);
  margin-bottom: var(--space-md);
}

.page-header p {
  color: var(--subtle);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CATEGORY FILTER
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.filter-bar {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: var(--space-xl);
}

.filter-pill {
  padding: 8px 0;
  border: none;
  border-bottom: 1px solid transparent;
  border-radius: 0;
  background: transparent;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--subtle);
  cursor: pointer;
  transition: all 0.25s var(--ease-in-out);
  margin: 0 14px;
}

.filter-pill:hover {
  color: var(--charcoal);
  border-bottom-color: var(--charcoal);
}

.filter-pill.active {
  color: var(--burgundy);
  border-bottom-color: var(--burgundy);
  background: transparent;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PRODUCT CARD — ENHANCEMENTS
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--burgundy);
  color: var(--white);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 2px;
  z-index: 2;
}

/* Stock Badges */
.product-stock-badge {
  position: absolute;
  bottom: 16px;
  right: 16px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 20px;
  z-index: 5;
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  border: 1px solid rgba(255,255,255,0.4);
  transition: all 0.3s ease;
}

.product-stock-badge.sold-out {
  background: rgba(224, 92, 92, 0.94);
  color: #fff;
}

.product-stock-badge.low-stock {
  background: rgba(255, 152, 0, 0.94);
  color: #fff;
}

.product-stock-badge.moderate-stock {
  background: rgba(76, 175, 142, 0.94);
  color: #fff;
}

.product-image .img-primary,
.product-image .img-hover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.5s var(--ease-in-out), transform 0.5s var(--ease-in-out);
}

.product-image .img-hover {
  opacity: 0;
}

.product-card:hover .product-image .img-primary {
  opacity: 0;
}

.product-card:hover .product-image .img-hover {
  opacity: 1;
}

.product-card:hover .product-image .img-primary,
.product-card:hover .product-image .img-hover {
  transform: scale(1.06);
}

.btn-view {
  display: inline-block;
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--subtle);
  margin-top: 8px;
  padding: 0;
  border: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
  font-weight: 600;
}

.btn-view:hover {
  color: var(--charcoal);
  border-bottom-color: var(--charcoal);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PRODUCT DETAIL PAGE
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: start;
  padding: var(--space-2xl) 0;
}

.product-detail-gallery {
  position: sticky;
  top: 100px;
}

.product-detail-main-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}

.product-detail-info {
  padding-top: var(--space-lg);
}

.product-detail-info .product-category {
  margin-bottom: var(--space-md);
}

.product-detail-info h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: var(--space-md);
}

.product-detail-price {
  font-size: 1.8rem;
  color: var(--burgundy);
  font-weight: 700;
  margin-bottom: var(--space-xl);
  font-family: var(--font-serif);
  letter-spacing: -0.02em;
}

@media (max-width: 768px) {
  .product-detail-price {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .product-detail-price {
    font-size: 1.3rem;
  }
}

.product-detail-description {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--subtle);
  margin-bottom: var(--space-xl);
  border-left: 2px solid var(--gold);
  padding-left: var(--space-lg);
}

.size-label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: var(--space-md);
  display: block;
}

.size-selector {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-bottom: var(--space-xl);
}

.size-btn {
  min-width: 50px;
  padding: 10px 12px;
  border: 1px solid var(--warm-beige);
  background: transparent;
  border-radius: 2px;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  color: var(--charcoal);
  text-align: center;
  white-space: nowrap;
}

.size-btn:hover {
  border-color: var(--burgundy);
  color: var(--burgundy);
}

.size-btn.selected {
  background: var(--burgundy);
  border-color: var(--burgundy);
  color: var(--white);
}

.btn-add-to-cart-lg {
  width: 100%;
  background: var(--burgundy);
  color: var(--white);
  border: none;
  padding: 18px var(--space-xl);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  transition: all 0.3s var(--ease-in-out);
  margin-bottom: var(--space-lg);
}

.btn-add-to-cart-lg:hover {
  background: var(--charcoal);
  transform: translateY(-2px);
}

.product-meta {
  border-top: 1px solid var(--warm-beige);
  padding-top: var(--space-xl);
  margin-top: var(--space-xl);
}

.product-meta-item {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--warm-beige);
  font-size: 0.9rem;
}

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

.meta-label {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  color: var(--charcoal);
  min-width: 110px;
  flex-shrink: 0;
}

.meta-value {
  color: var(--subtle);
  line-height: 1.6;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   ABOUT PAGE — MAGAZINE LAYOUT
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.about-intro {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  padding: var(--space-2xl) 0;
}

.about-intro p {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  line-height: 1.85;
  color: var(--subtle);
}

.founder-profile {
  display: grid;
  gap: 0;
  margin-bottom: 1px;
}

.founder-profile:nth-child(odd) {
  grid-template-columns: 1fr 1fr;
}

.founder-profile:nth-child(even) {
  grid-template-columns: 1fr 1fr;
  direction: rtl;
}

.founder-profile:nth-child(even) > * {
  direction: ltr;
}

.founder-profile-img {
  aspect-ratio: 4/5;
  object-fit: cover;
  width: 100%;
  display: block;
}

.founder-profile-text {
  padding: var(--space-2xl);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--ivory);
}

.founder-profile:nth-child(even) .founder-profile-text {
  background: var(--warm-beige);
}

.founder-number {
  font-family: var(--font-serif);
  font-size: 5rem;
  color: var(--cream);
  line-height: 1;
  margin-bottom: var(--space-md);
  font-weight: 700;
}

.founder-profile:nth-child(even) .founder-number {
  color: var(--warm-beige);
}

.founder-name {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--charcoal);
  margin-bottom: var(--space-sm);
}

.founder-role {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: var(--space-xl);
}

.founder-quote {
  font-size: 1.15rem;
  font-style: italic;
  font-family: var(--font-serif);
  color: var(--burgundy);
  margin-bottom: var(--space-xl);
  line-height: 1.6;
}

.founder-bio p {
  color: var(--subtle);
  line-height: 1.85;
  margin-bottom: var(--space-md);
  font-size: 0.95rem;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CHECKOUT FORM
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: var(--space-xl);
  align-items: start;
  padding: var(--space-2xl) 0;
}

.checkout-form-section {
  background: var(--ivory);
  border-radius: 0;
  padding: var(--space-xl);
  border: 1px solid var(--cream);
  margin-bottom: var(--space-lg);
}

.checkout-form-section h3 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--charcoal);
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--warm-beige);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.form-grid.full {
  grid-template-columns: 1fr;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--charcoal);
}

.form-group input,
.form-group select {
  padding: 14px var(--space-md);
  border: 1px solid var(--warm-beige);
  border-radius: 2px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--ivory);
  transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--burgundy);
  background: var(--white);
}

.payment-options {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.payment-option {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-lg);
  border: 1px solid var(--warm-beige);
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.payment-option:hover,
.payment-option.selected {
  border-color: var(--burgundy);
  background: rgba(139, 0, 0, 0.03);
}

.payment-option input[type="radio"] {
  accent-color: var(--burgundy);
  width: 18px;
  height: 18px;
}

.payment-label {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--charcoal);
}

.checkout-order-summary {
  background: var(--warm-beige);
  border-radius: 4px;
  padding: var(--space-xl);
  position: sticky;
  top: 100px;
}

.checkout-order-summary h3 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: var(--space-xl);
  color: var(--charcoal);
}

.order-item {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(0,0,0,0.07);
}

.order-item:last-of-type {
  border-bottom: none;
}

.order-item-img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 2px;
  flex-shrink: 0;
}

.order-item-info {
  flex: 1;
}

.order-item-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 4px;
}

.order-item-detail {
  font-size: 0.8rem;
  color: var(--subtle);
}

.order-item-price {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--burgundy);
  align-self: center;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   UTILITIES & STATES
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.empty-state {
  text-align: center;
  padding: var(--space-2xl);
  color: var(--subtle);
}

.empty-state h3 {
  color: var(--charcoal);
  margin-bottom: var(--space-md);
}

.notification {
  position: fixed;
  top: 100px;
  right: 24px;
  background: var(--burgundy);
  color: var(--white);
  padding: var(--space-lg);
  border-radius: 4px;
  box-shadow: var(--shadow-md);
  z-index: 999;
  animation: slideIn 0.3s var(--ease-out) forwards;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   RESPONSIVE DESIGN
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

@media (max-width: 1100px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .pillars-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .moodboard {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  nav {
    height: 70px;
  }

  /* Mobile nav: cart always visible, text links hidden until menu opens */
  .nav-links {
    display: flex !important;
    flex-direction: row;
    align-items: center;
    background: transparent;
    position: static;
    border: none;
    padding: 0;
    box-shadow: none;
    gap: 4px;
  }

  /* Hide text nav links on mobile — only cart always visible */
  .nav-links > a:not(.cart-icon) {
    display: none !important;
  }

  /* Dropdown: all links visible when open */
  .nav-links.open {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(255, 248, 240, 0.98);
    border-bottom: 1px solid var(--warm-beige);
    padding: var(--space-md);
    gap: var(--space-md);
    box-shadow: 0 8px 24px rgba(26,20,16,0.08);
    z-index: 998;
  }
  .nav-links.open > a:not(.cart-icon) {
    display: block !important;
  }

  .menu-toggle {
    display: block;
  }

  #hero {
    padding-top: 70px;
  }

  section {
    padding: var(--space-xl) 0;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
  }

  .product-image {
    height: 280px;
  }

  .founders-grid {
    grid-template-columns: 1fr;
  }

  .founder-image {
    min-height: 300px;
  }

  .founder-content {
    padding: var(--space-lg);
  }

  .moodboard {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .cart-container {
    grid-template-columns: 1fr;
  }

  .cart-summary {
    height: auto;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  nav {
    padding: 0 16px;
  }

  .nav-logo {
    font-size: 1.2rem;
  }

  .nav-links {
    gap: var(--space-md);
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  section {
    padding: var(--space-lg) 0;
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .product-info {
    padding: var(--space-md);
  }

  .essence-text {
    font-size: 1rem;
  }

  .hero-intro {
    font-size: 0.95rem;
  }

  .moodboard {
    grid-template-columns: 1fr;
  }

  .mood-item {
    aspect-ratio: 3/4;
  }

  .pillar-card {
    padding: var(--space-lg);
  }

  .cart-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .cart-item-image {
    width: 100%;
    height: 200px;
  }

  .cart-controls {
    width: 100%;
    justify-content: space-between;
  }

  .btn-remove {
    margin-left: 0;
  }
}

/* ━━ New component responsive additions ━━ */
@media (max-width: 1100px) {
  .product-detail { grid-template-columns: 1fr; gap: var(--space-xl); }
  .product-detail-gallery { position: static; }
  .checkout-layout { grid-template-columns: 1fr; }
  .checkout-order-summary { position: static; }
  .founder-profile:nth-child(odd),
  .founder-profile:nth-child(even) { grid-template-columns: 1fr; direction: ltr; }
}

@media (max-width: 768px) {
  .page-header { padding: 120px 0 60px; }
  .form-grid { grid-template-columns: 1fr; }
  .founder-profile-text { padding: var(--space-xl); }
  .founder-number { font-size: 3.5rem; }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SCROLL FADE-IN ANIMATIONS
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up.delay-1 { transition-delay: 0.1s; }
.fade-up.delay-2 { transition-delay: 0.2s; }
.fade-up.delay-3 { transition-delay: 0.3s; }
.fade-up.delay-4 { transition-delay: 0.4s; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FEATURED PRODUCT SECTION (HOMEPAGE)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.featured-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: var(--space-xl);
}

.featured-main {
  position: relative;
  overflow: hidden;
  background: var(--warm-beige);
}

.featured-main img {
  width: 100%;
  height: 640px;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--ease-out);
}

.featured-main:hover img {
  transform: scale(1.04);
}

.featured-aside {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 2px;
}

.featured-sub {
  position: relative;
  overflow: hidden;
  background: var(--warm-beige);
}

.featured-sub img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--ease-out);
}

.featured-sub:hover img {
  transform: scale(1.04);
}

.featured-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(22,14,7,0.7) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.featured-main:hover .featured-overlay,
.featured-sub:hover .featured-overlay {
  opacity: 1;
}

.featured-overlay-cat {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
  font-weight: 600;
}

.featured-overlay-name {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--ivory);
  margin-bottom: 4px;
}

.featured-overlay-price {
  font-size: 0.9rem;
  color: rgba(249,245,239,0.75);
  font-family: var(--font-serif);
}

.featured-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--burgundy);
  color: var(--ivory);
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 5px 14px;
  z-index: 2;
}

.featured-stock-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  z-index: 3;
  border: 1px solid rgba(255,255,255,0.3);
}

.featured-stock-badge.sold-out {
  background: rgba(224, 92, 92, 0.92);
  color: white;
}

.featured-stock-badge.low-stock {
  background: rgba(255, 152, 0, 0.92);
  color: white;
}

@media (max-width: 900px) {
  .featured-grid { grid-template-columns: 1fr; }
  .featured-aside { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .featured-main img { height: 420px; }
  .featured-overlay { opacity: 1; }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PRODUCT GALLERY THUMBNAILS
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-top: 6px;
}

.gallery-thumb {
  aspect-ratio: 1;
  object-fit: cover;
  cursor: pointer;
  opacity: 0.55;
  transition: opacity 0.2s ease;
  display: block;
  width: 100%;
}

.gallery-thumb.active,
.gallery-thumb:hover {
  opacity: 1;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   ABOUT PAGE — ENHANCEMENTS
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--cream);
  border: 1px solid var(--cream);
  margin-top: var(--space-xl);
}

.about-value-item {
  background: var(--ivory);
  padding: var(--space-xl) var(--space-lg);
  text-align: center;
}

.about-value-number {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--cream);
  font-weight: 700;
  display: block;
  line-height: 1;
  margin-bottom: var(--space-md);
}

.about-value-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--charcoal);
  margin-bottom: var(--space-sm);
}

.about-value-text {
  font-size: 0.9rem;
  color: var(--subtle);
  line-height: 1.75;
}

.brand-statement-bar {
  background: var(--dark);
  padding: var(--space-2xl) 0;
  text-align: center;
}

.brand-statement-bar blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 4vw, 2.8rem);
  color: var(--ivory);
  font-style: italic;
  font-weight: 400;
  max-width: 860px;
  margin: 0 auto;
  line-height: 1.5;
  padding: 0 var(--space-md);
}

.brand-statement-bar cite {
  display: block;
  margin-top: var(--space-lg);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
  font-family: var(--font-sans);
  font-weight: 600;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   COLLECTION PAGE — ELEGANT GRID
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.products-grid.editorial {
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 32px;
}

@media (max-width: 1000px) {
  .products-grid.editorial { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .products-grid.editorial { grid-template-columns: 1fr; }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   MINI SCROLL INDICATOR (HERO)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.scroll-cue {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(249,245,239,0.5);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: pulse-down 2s ease-in-out infinite;
}

.scroll-cue-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(249,245,239,0.5), transparent);
}

@keyframes pulse-down {
  0%, 100% { opacity: 0.5; transform: translateX(-50%) translateY(0); }
  50% { opacity: 1; transform: translateX(-50%) translateY(8px); }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PRODUCT CARD IMAGE — TALLER FOR FASHION
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.product-image {
  height: 400px;
}

@media (max-width: 768px) {
  .product-image { height: 300px; }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PRODUCT DETAIL — GALLERY SIDE STICKY
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.product-detail-main-img {
  cursor: zoom-in;
  transition: transform 0.5s var(--ease-out);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FILTER BAR — WIDER SEPARATION
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.filter-bar {
  border-bottom: 1px solid var(--cream);
  padding-bottom: var(--space-md);
  margin-bottom: var(--space-xl);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PRODUCT CATEGORY LABEL — SLIMMER
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.product-name {
  font-size: 1rem;
  font-weight: 600;
}

.product-category {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PRODUCT BADGE — THINNER / MORE ELEGANT
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.product-badge {
  background: rgba(249,245,239,0.92);
  color: var(--charcoal);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  padding: 4px 10px;
  border-radius: 0;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SECTION LABEL — CONSISTENT
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.section-label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  margin-bottom: var(--space-sm);
}

/* Correct product-info mobile padding */
@media (max-width: 480px) {
  .product-info { padding: 12px 0 var(--space-md); }
  .about-values-grid { grid-template-columns: 1fr; }
  .featured-aside { grid-template-columns: 1fr; }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FIXES & IMPROVEMENTS — v2
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* 1. Fix black bar: featured section needs no top margin */
#featured .featured-grid {
  margin-top: 0;
}

/* 2. Product cards — refined hover lift */
.product-card {
  cursor: pointer;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(38,24,14,0.10);
}

/* 3. Product image — ensure relative for overlay */
.product-image {
  position: relative;
}

/* 4. "Add to Cart" button — warmer, more refined */
.btn-add-cart {
  background: var(--warm-beige);
  color: var(--charcoal);
  border: 1px solid var(--cream);
  padding: 12px var(--space-md);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  transition: background 0.25s var(--ease-in-out), color 0.25s var(--ease-in-out), border-color 0.25s var(--ease-in-out);
}
.btn-add-cart:hover {
  background: var(--charcoal);
  color: var(--ivory);
  border-color: var(--charcoal);
}

/* 5. Pill/filter bar buttons — refined underline style already set;
      ensure the bar itself doesn't look like a white box */
.filter-bar {
  background: transparent;
  margin-top: 0;
}

/* 6. Homepage "Curated Elegance" section — reduce harsh white */
#collections {
  background: var(--ivory);
}

/* 7. Section white → use ivory, not FAF7F3 */
section.white {
  background-color: var(--ivory);
}

/* 8. About page — alternating founder layout via explicit .reversed class */
.founder-profile {
  grid-template-columns: 1fr 1fr;
}
.founder-profile.reversed {
  grid-template-columns: 1fr 1fr;
  direction: rtl;
}
.founder-profile.reversed > * {
  direction: ltr;
}
/* Keep the nth-child overrides disabled for about page by overriding */
.founder-profile:nth-child(odd),
.founder-profile:nth-child(even) {
  grid-template-columns: 1fr 1fr;
  direction: ltr;
}
.founder-profile.reversed {
  direction: rtl;
}

/* 9. Product detail — accordion sections */
.product-accordion {
  border-top: 1px solid var(--warm-beige);
  margin-top: var(--space-xl);
}
.accordion-item {
  border-bottom: 1px solid var(--warm-beige);
}
.accordion-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-md) 0;
  cursor: pointer;
  list-style: none;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--charcoal);
  user-select: none;
  transition: color 0.2s ease;
}
.accordion-item summary::-webkit-details-marker { display: none; }
.accordion-item summary:hover { color: var(--burgundy); }
.accordion-item summary::after {
  content: '+';
  font-size: 1.1rem;
  font-weight: 300;
  transition: transform 0.25s ease;
}
.accordion-item[open] summary::after {
  content: '−';
}
.accordion-body {
  padding: 0 0 var(--space-lg);
  font-size: 0.9rem;
  color: var(--subtle);
  line-height: 1.8;
}
.accordion-body p { margin-bottom: var(--space-sm); color: var(--subtle); }
.accordion-body ul {
  padding-left: var(--space-md);
  margin-top: var(--space-sm);
}
.accordion-body li { margin-bottom: 6px; }

/* 10. Size guide link on product page */
.size-guide-link {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--subtle);
  border-bottom: 1px solid var(--cream);
  padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
}
.size-guide-link:hover {
  color: var(--burgundy);
  border-bottom-color: var(--burgundy);
}

/* 11. Related products grid — consistent height */
#relatedGrid .product-image {
  height: 360px;
}

/* 12. Product gallery — larger thumbnails, more breathing room */
.gallery-thumbs {
  gap: 8px;
  margin-top: 8px;
}
.gallery-thumb {
  aspect-ratio: 3/4;
  border: 2px solid transparent;
  transition: opacity 0.2s ease, border-color 0.2s ease;
}
.gallery-thumb.active,
.gallery-thumb:hover {
  border-color: var(--burgundy);
}

/* 13. Page header — warm up the background */
.page-header {
  background: var(--ivory);
  border-bottom: 1px solid var(--warm-beige);
}

/* 14. Checkout form sections — warmer background */
.checkout-form-section {
  background: var(--ivory);
  border-color: var(--warm-beige);
}

/* 15. About page — values grid improvements */
.about-values-grid {
  background: var(--warm-beige);
}
.about-value-item {
  background: var(--ivory);
  transition: background 0.25s ease;
}
.about-value-item:hover {
  background: var(--white);
}
.about-value-number {
  color: var(--warm-beige);
}

/* 16. About page — brand statement bar in emerald for mid-page contrast */
.brand-statement-bar.emerald {
  background: var(--emerald);
}
.brand-statement-bar.emerald blockquote {
  color: var(--ivory);
}

/* 17. Mobile improvements — touch targets */
@media (max-width: 768px) {
  .size-btn {
    min-width: 52px;
    padding: 12px 14px;
    font-size: 0.8rem;
  }
  .size-selector {
    gap: 8px;
  }
  .product-detail {
    gap: var(--space-xl);
  }
  .product-detail-info {
    padding-top: var(--space-md);
  }
  .accordion-item summary {
    padding: 14px 0;
  }
  .checkout-layout {
    gap: var(--space-lg);
  }
}

@media (max-width: 480px) {
  .size-btn {
    min-width: 46px;
    padding: 10px 8px;
    font-size: 0.75rem;
  }
  .size-selector {
    gap: 6px;
  }
  .product-accordion {
    margin-top: var(--space-lg);
  }
  .about-values-grid {
    grid-template-columns: 1fr;
    gap: 1px;
  }
  .gallery-thumbs {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* 18. Transition smoothness for all interactive elements */
button, a, input, select {
  transition-timing-function: var(--ease-in-out);
}

/* 19. Subtle product card fade for items list on mobile */
@media (max-width: 600px) {
  .products-grid.editorial {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 16px;
  }
  .products-grid.editorial .product-image {
    height: 240px;
  }
}

/* 20. Fix potential overflow on sections */
.founder-profile {
  overflow: hidden;
}

/* 21. Improved footer link hover */
.footer-column a::before {
  content: '';
  display: inline-block;
  width: 0;
  height: 1px;
  background: var(--gold);
  vertical-align: middle;
  margin-right: 0;
  transition: width 0.2s ease, margin-right 0.2s ease;
}
.footer-column a:hover::before {
  width: 12px;
  margin-right: 6px;
}

/* 22. Nav links — active page indicator */
.nav-links a.active {
  color: var(--burgundy);
}
.nav-links a.active::after {
  width: 100%;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SESSION 2: Desktop Visual Warmth + Button Refinements
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* Weiß auf Creme/Off-White reduzieren — Desktop */
@media (min-width: 768px) {
  .white, section.white, .section-white { background: var(--ivory) !important; }
  body { background: var(--ivory); }
  .product-card { background: var(--ivory); }
}

/* Button Overhaul — keine Pill-Buttons, keine weißen Boxen */
.btn, .btn-primary, .btn-secondary, .btn-ghost,
.btn-add-cart, .btn-checkout-lg, .btn-shop,
button.btn-add-cart {
  border-radius: 2px !important;
  transition: all 0.25s ease !important;
}

/* Warme Hover-Effekte auf Ghost-Buttons */
.btn-ghost {
  border: 1px solid var(--charcoal) !important;
  background: transparent !important;
  color: var(--charcoal) !important;
}
.btn-ghost:hover {
  background: var(--charcoal) !important;
  color: var(--ivory) !important;
}

/* Produktkarten Hover */
.product-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}
.product-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 12px 32px rgba(26,20,16,0.12) !important;
}

/* Navbar always solid on mobile — keep fixed positioning */
@media (max-width: 768px) {
  #navbar {
    background: rgba(255, 248, 240, 0.98) !important;
    border-bottom: 1px solid rgba(139,0,0,0.1) !important;
  }
}

/* Cart-Icon: always visible on mobile (safety override) */
@media (max-width: 768px) {
  .nav-links .cart-icon {
    display: flex !important;
    margin-right: 4px;
  }
}

/* Smooth button transitions global */
button, a.btn, .btn { transition: all 0.2s ease; }

/* ═══════════════════════════════════════════════════
   DESKTOP COLOR DEPTH — warmer, deutlich weniger hell
   ═══════════════════════════════════════════════════ */
@media (min-width: 769px) {
  :root {
    --ivory:      #E8DFD2;   /* statt #F9F5EF — deutlich wärmer/dunkler */
    --white:      #EDE6DC;   /* statt #FAF7F3 */
    --warm-beige: #D9CEBC;   /* statt #EFE8DC */
    --cream:      #CBBFA8;   /* statt #E8DDD0 */
  }

  /* Body und allgemeine Hintergründe */
  body { background-color: var(--ivory); }

  /* Produktkarten — leicht abgehoben vom Hintergrund */
  .product-card {
    background: #EDE6DC;
    box-shadow: 0 2px 12px rgba(38,24,14,0.06);
  }

  /* Nav — tieferer Hintergrund auf Desktop */
  nav, nav.scrolled {
    background: rgba(232, 223, 210, 0.97) !important;
    border-bottom: 1px solid rgba(38,24,14,0.08) !important;
  }

  /* Filter-Bar Collection */
  .filter-section { background: var(--ivory); }

  /* Checkout + Cart Summary — etwas dunkler als zuvor */
  .checkout-form-section { background: var(--white); }

  /* Footer wärmer */
  footer { background: var(--dark) !important; }

  /* Sections mit white-class — jetzt Ivory */
  section.white, .section-white { background: var(--ivory) !important; }

  /* About page values */
  .value-block { background: var(--white); }
  .value-block:hover { background: var(--ivory); }

  /* Auth card */
  .auth-card { background: var(--white); }
  .auth-divider span { background: var(--white); }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SESSION 3: UX ANIMATIONS, SPACING, MICRO-INTERACTIONS
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* Spacing content variable */
:root {
  --space-content: 40px;
}

/* ── Product image consistency — 3/4 aspect ratio ── */
.featured-main img,
.featured-sub img {
  aspect-ratio: 3/4;
  object-fit: cover;
}
/* Product detail main image keeps existing aspect-ratio: 3/4 from .product-detail-main-img */

/* ── Product card hover: translateY(-6px) ── */
.product-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 14px 36px rgba(26,20,16,0.13) !important;
}

/* ── All buttons: transition all 0.2s ease ── */
button, a.btn, .btn,
.btn-add-to-cart-lg, .btn-add-cart,
.btn-checkout, .btn-checkout-lg,
.btn-wishlist, .size-btn, .filter-pill,
.coupon-apply, .ci-qty-btn {
  transition: all 0.2s ease;
}

/* ── Cart badge pulse animation ── */
@keyframes cartBadgePulse {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.35); }
  70%  { transform: scale(0.9); }
  100% { transform: scale(1); }
}
.cart-badge.pulse {
  animation: cartBadgePulse 0.4s ease;
}

/* ── Add-to-cart button scale feedback ── */
@keyframes btnClick {
  0%   { transform: scale(1); }
  40%  { transform: scale(0.97); }
  100% { transform: scale(1); }
}
.btn-add-to-cart-lg.clicked {
  animation: btnClick 0.2s ease;
}

/* ── Cart item remove fade animation ── */
.cart-item.removing {
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* ── Cart price flash animation ── */
@keyframes priceFlash {
  0%   { background: transparent; }
  30%  { background: rgba(201,168,76,0.22); border-radius: 3px; }
  100% { background: transparent; }
}
.ci-price.flash {
  animation: priceFlash 0.4s ease;
}

/* ── Mobile sticky add-to-cart bar ── */
.sticky-atc-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--charcoal);
  padding: 14px 20px;
  z-index: 90;
  box-shadow: 0 -4px 24px rgba(22,14,7,0.18);
  align-items: center;
  gap: 16px;
}
.sticky-atc-bar.visible {
  display: flex;
}
.sticky-atc-info {
  flex: 1;
  min-width: 0;
}
.sticky-atc-name {
  font-family: var(--font-serif);
  font-size: 0.88rem;
  color: var(--ivory);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sticky-atc-price {
  font-size: 0.82rem;
  color: var(--gold);
  margin-top: 2px;
}
.sticky-atc-btn {
  background: var(--gold);
  color: var(--dark);
  border: none;
  padding: 12px 22px;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.2s ease;
}
.sticky-atc-btn:hover { opacity: 0.88; }

@media (min-width: 769px) {
  .sticky-atc-bar { display: none !important; }
}

/* ── Input focus states — gold border ── */
.form-input:focus,
.edit-field:focus,
input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus {
  outline: none;
  border-color: var(--gold) !important;
  transition: border-color 0.2s;
}

/* ── Collection card hover overlay ── */
.featured-overlay {
  transition: opacity 0.35s ease;
}

/* ── Section padding consistency ── */
section {
  padding: var(--space-xl) 0;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   MEGA UPDATE — Trust Bar, Mini-Cart, Reviews, Wishlist, Currency
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* ── 1. TRUST BAR ── */
#trust-bar {
  background: var(--dark);
  color: var(--ivory);
  padding: var(--space-lg) 0;
}

.trust-stats {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto var(--space-lg);
  padding: 0 var(--space-lg);
  font-size: 0.95rem;
  text-align: center;
}

.trust-stats span {
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.05em;
}

.trust-icons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-lg);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.trust-icon-card {
  background: rgba(255,255,255,0.05);
  padding: var(--space-lg);
  border-radius: 8px;
  border: 1px solid rgba(201,168,76,0.2);
  text-align: center;
  transition: all 0.3s ease;
}

.trust-icon-card:hover {
  background: rgba(201,168,76,0.1);
  border-color: var(--gold);
  transform: translateY(-4px);
}

.trust-icon-card .icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.trust-icon-card .label {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--gold);
  margin-bottom: 6px;
}

.trust-icon-card .sublabel {
  font-size: 0.8rem;
  color: var(--subtle);
}

@media (max-width: 768px) {
  .trust-stats { flex-direction: column; gap: var(--space-sm); font-size: 0.85rem; }
  .trust-stats span { font-size: 0.8rem; }
  .trust-icons { grid-template-columns: repeat(2, 1fr); gap: var(--space-md); padding: 0 var(--space-md); }
  .trust-icon-card { padding: var(--space-md); }
  .trust-icon-card .icon { font-size: 2rem; margin-bottom: 8px; }
  .trust-icon-card .label { font-size: 0.85rem; margin-bottom: 4px; }
  .trust-icon-card .sublabel { font-size: 0.7rem; }
}

@media (max-width: 480px) {
  .trust-stats { gap: 8px; font-size: 0.75rem; }
  .trust-stats span { font-size: 0.7rem; }
  .trust-icons { grid-template-columns: 1fr; gap: var(--space-sm); padding: 0 var(--space-sm); }
  .trust-icon-card { padding: var(--space-sm); }
  .trust-icon-card .icon { font-size: 1.8rem; margin-bottom: 6px; }
  .trust-icon-card .label { font-size: 0.8rem; margin-bottom: 2px; }
  .trust-icon-card .sublabel { font-size: 0.65rem; }
}

/* ── 2. MINI CART DRAWER ── */
.cart-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: none;
  z-index: 95;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.cart-drawer-overlay.open {
  display: block;
  opacity: 1;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 400px;
  max-width: 100%;
  height: 100vh;
  background: var(--ivory);
  z-index: 96;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.19, 1, 0.22, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
}

.cart-drawer.open {
  transform: translateX(0);
}

.cart-drawer-header {
  padding: var(--space-lg);
  border-bottom: 1px solid var(--warm-beige);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  color: var(--charcoal);
}

.cart-drawer-header button {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--charcoal);
  transition: color 0.2s;
}

.cart-drawer-header button:hover { color: var(--burgundy); }

.cart-drawer-items {
  flex: 1;
  overflow-y: auto;
  padding: var(--space-lg);
}

.cart-drawer-item {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--warm-beige);
}

.cart-drawer-item-img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
}

.cart-drawer-item-content {
  flex: 1;
}

.cart-drawer-item-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--charcoal);
  margin-bottom: 4px;
}

.cart-drawer-item-meta {
  font-size: 0.8rem;
  color: var(--subtle);
  margin-bottom: 8px;
}

.cart-drawer-item-price {
  font-weight: 700;
  color: var(--burgundy);
  font-size: 0.95rem;
}

.cart-drawer-qty {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}

.cart-drawer-qty button {
  width: 28px;
  height: 28px;
  padding: 0;
  background: var(--warm-beige);
  border: 1px solid var(--cream);
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s;
}

.cart-drawer-qty button:hover { background: var(--gold); }

.cart-drawer-qty span {
  min-width: 20px;
  text-align: center;
  font-weight: 600;
}

.cart-drawer-upsell {
  padding: var(--space-lg);
  border-top: 2px solid var(--warm-beige);
  background: rgba(201, 168, 76, 0.08);
}

.cart-drawer-upsell-title {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--charcoal);
  margin-bottom: var(--space-md);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.cart-drawer-upsell-items {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.cart-drawer-upsell-item {
  flex: 1;
  text-align: center;
}

.cart-drawer-upsell-img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 8px;
  cursor: pointer;
  transition: transform 0.2s;
}

.cart-drawer-upsell-img:hover { transform: scale(1.05); }

.cart-drawer-upsell-name {
  font-size: 0.75rem;
  color: var(--charcoal);
  font-weight: 600;
  margin-bottom: 4px;
  line-height: 1.3;
}

.cart-drawer-upsell-price {
  font-size: 0.8rem;
  color: var(--burgundy);
  font-weight: 700;
}

.cart-drawer-footer {
  padding: var(--space-lg);
  border-top: 1px solid var(--warm-beige);
}

.cart-drawer-total {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: var(--space-md);
}

.cart-drawer-cta {
  display: block;
  width: 100%;
  padding: 14px;
  background: var(--burgundy);
  color: var(--white);
  text-align: center;
  border-radius: 2px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: var(--space-sm);
  transition: opacity 0.2s;
}

.cart-drawer-cta:hover { opacity: 0.88; }

.cart-drawer-view {
  display: block;
  width: 100%;
  padding: 12px;
  background: transparent;
  color: var(--charcoal);
  text-align: center;
  border: 1px solid var(--charcoal);
  border-radius: 2px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.8rem;
  transition: all 0.2s;
}

.cart-drawer-view:hover {
  background: var(--charcoal);
  color: var(--ivory);
}

@media (max-width: 480px) {
  .cart-drawer { width: 100%; }
  .cart-drawer-items { padding: var(--space-md); }
  .cart-drawer-item { gap: var(--space-sm); }
  .cart-drawer-item-img { width: 70px; height: 70px; }
}

/* ── 3. REVIEWS SYSTEM ── */
.reviews-section {
  margin-top: var(--space-xl);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--warm-beige);
}

.reviews-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-lg);
}

.reviews-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--charcoal);
}

.reviews-rating {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.rating-stars {
  font-size: 1.2rem;
  color: var(--gold);
  letter-spacing: 2px;
}

.rating-count {
  font-size: 0.9rem;
  color: var(--subtle);
}

.reviews-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.review-card {
  background: var(--warm-beige);
  padding: var(--space-lg);
  border-radius: 8px;
  border-left: 4px solid var(--gold);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--space-sm);
}

.review-meta {
  font-weight: 600;
  color: var(--charcoal);
  font-size: 0.95rem;
}

.review-date {
  font-size: 0.8rem;
  color: var(--subtle);
}

.review-stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.review-text {
  color: var(--charcoal);
  line-height: 1.6;
  font-size: 0.95rem;
}

.review-form {
  background: var(--ivory);
  border: 1px solid var(--warm-beige);
  padding: var(--space-lg);
  border-radius: 8px;
}

.review-form-title {
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: var(--space-lg);
  font-size: 1rem;
}

.review-form-rating {
  margin-bottom: var(--space-lg);
}

.review-form-stars {
  display: flex;
  gap: 8px;
}

.star-input {
  display: none;
}

.star-label {
  font-size: 2rem;
  cursor: pointer;
  color: #ddd;
  transition: color 0.2s;
}

.star-input:checked ~ .star-label,
.star-label:hover,
.star-label:hover ~ .star-label {
  color: var(--gold);
}

.review-form-textarea {
  width: 100%;
  min-height: 100px;
  padding: 12px;
  border: 1px solid var(--warm-beige);
  border-radius: 4px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  resize: vertical;
  margin-bottom: var(--space-lg);
}

.review-form-button {
  width: 100%;
  padding: 14px;
  background: var(--burgundy);
  color: var(--white);
  border: none;
  border-radius: 2px;
  font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: opacity 0.2s;
}

.review-form-button:hover { opacity: 0.88; }

.review-login-prompt {
  text-align: center;
  padding: var(--space-lg);
}

.review-login-prompt p {
  color: var(--subtle);
  margin-bottom: var(--space-md);
}

.review-login-prompt a {
  color: var(--burgundy);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid var(--burgundy);
}

.review-login-prompt a:hover { opacity: 0.8; }

/* ── 4. WISHLIST ── */
.wishlist-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 44px;
  height: 44px;
  background: rgba(255, 248, 240, 0.95);
  border: 1px solid var(--warm-beige);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  z-index: 10;
}

.wishlist-btn:hover {
  background: var(--burgundy);
  border-color: var(--burgundy);
  color: var(--white);
  transform: scale(1.1);
}

.wishlist-btn.saved {
  color: var(--burgundy);
}

.product-card .wishlist-btn {
  opacity: 0;
  transition: opacity 0.2s;
}

.product-card:hover .wishlist-btn {
  opacity: 1;
}

@media (max-width: 768px) {
  .wishlist-btn { opacity: 1; top: 8px; right: 8px; width: 40px; height: 40px; }
}

/* ── 5. IMAGE ZOOM MODAL ── */
.zoom-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.96);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9000;
}

.zoom-modal.open {
  display: flex;
}

.zoom-modal-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}

.zoom-modal-img {
  max-width: 100%;
  max-height: 100%;
  display: block;
}

.zoom-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: rgba(255, 248, 240, 0.9);
  border: none;
  border-radius: 50%;
  font-size: 2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.zoom-modal-close:hover {
  background: var(--ivory);
  transform: rotate(90deg);
}

.zoom-modal-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  padding: 0 20px;
  pointer-events: none;
}

.zoom-modal-prev,
.zoom-modal-next {
  width: 50px;
  height: 50px;
  background: rgba(255, 248, 240, 0.8);
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
  transition: background 0.2s;
}

.zoom-modal-prev:hover,
.zoom-modal-next:hover {
  background: var(--ivory);
}

.zoom-modal-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.7);
  color: var(--ivory);
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 0.9rem;
}

/* ── 6. CURRENCY PICKER ── */
.currency-picker {
  background: transparent;
  color: var(--charcoal);
  border: 1px solid var(--charcoal);
  padding: 8px 12px;
  border-radius: 2px;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.2s;
  margin-left: var(--space-md);
}

.currency-picker:hover {
  border-color: var(--burgundy);
  color: var(--burgundy);
}

.currency-picker:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(201, 168, 76, 0.2);
}

@media (max-width: 768px) {
  .currency-picker { margin-left: 8px; padding: 6px 8px; font-size: 0.8rem; }
}

/* ── 7. REVIEW STARS RATING (for displaying) ── */
.stars-display {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
}

.stars-display.half::after {
  content: '½';
  letter-spacing: 2px;
}

/* ── 8. INVENTORY STATUS ── */
.stock-status {
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 6px;
}

.stock-status.in-stock { color: #4caf8e; }
.stock-status.low-stock { color: #ff9800; }
.stock-status.out-of-stock { color: var(--burgundy); }
