/* ==========================================================================
   jijino — Official Baby Brand Website Stylesheet
   Modern, Premium Clean, Soft Pastel Baby Atmosphere
   Typography: Nunito (headings) + Plus Jakarta Sans (body & UI)
   Colors based strictly on official logo:
     Primary Purple: #853D86
     Brand Amber/Orange: #F2A849
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@500;600;700;800;900&family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,600&display=swap');

:root {
  /* Brand Core Colors (From Logo) */
  --purple: #853D86;
  --purple-dark: #6B296C;
  --purple-deep: #27122D;
  --purple-light: #A04CA2;
  --purple-50: #FAF4FB;
  --purple-100: #F4E8F6;
  --purple-200: #E9D2EC;
  --purple-glow: rgba(133, 61, 134, 0.16);

  --amber: #F2A849;
  --amber-dark: #D98C28;
  --amber-light: #F7BF75;
  --amber-50: #FFF9F2;
  --amber-100: #FDF1DF;
  --amber-200: #F8DFBA;

  /* Delicate Pastel Accents */
  --pastel-lavender: #F4EDF7;
  --pastel-honey: #FDF2E4;
  --pastel-sage: #EAF4F1;
  --pastel-rose: #FBE8F0;
  --pastel-cream: #FAF4EB;

  /* Surfaces & Canvas */
  --canvas: #FAF6FC;
  --canvas-alt: #F6EFF8;
  --card: #FFFFFF;
  --card-hover: #FFFFFF;

  /* Typography Colors */
  --ink: #26162B;
  --ink-secondary: #4A3A50;
  --muted: #6F5E75;
  --text-light: #9B8AA1;
  --white: #FFFFFF;

  /* Borders & Dividers */
  --line: #EFE5F2;
  --line-strong: #DECDE3;
  --focus-ring: rgba(133, 61, 134, 0.35);

  /* Elevation Shadows */
  --shadow-sm: 0 4px 12px rgba(133, 61, 134, 0.04);
  --shadow-md: 0 10px 28px rgba(133, 61, 134, 0.08);
  --shadow-lg: 0 20px 44px rgba(133, 61, 134, 0.12);
  --shadow-hover: 0 16px 36px rgba(133, 61, 134, 0.14);

  /* Geometry & Layout */
  --radius-xs: 8px;
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 26px;
  --radius-xl: 36px;
  --radius-pill: 9999px;
  --max: 1220px;
  --nav-height: 80px;

  /* Fonts */
  --font-heading: 'Nunito', sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Base Reset & Typography */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background-color: var(--canvas);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  min-height: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--ink);
  line-height: 1.25;
  margin-top: 0;
  font-weight: 800;
  letter-spacing: -0.015em;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

a {
  color: var(--purple);
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

a:hover {
  color: var(--purple-dark);
}

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

button, input, select, textarea {
  font-family: inherit;
}

:focus-visible {
  outline: 3px solid var(--purple);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 12px;
  background: var(--purple);
  color: #fff;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  z-index: 9999;
  font-weight: 600;
}
.skip-link:focus {
  left: 16px;
}

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

/* ==========================================================================
   Top Announcement Bar
   ========================================================================== */
.top-bar {
  background: linear-gradient(90deg, #FAF2FB 0%, #FFF8EE 100%);
  border-bottom: 1px solid var(--line);
  padding: 8px 20px;
  font-size: 0.85rem;
  color: var(--ink-secondary);
  text-align: center;
  font-weight: 500;
}
.top-bar-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.top-bar a {
  color: var(--purple);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.top-bar a:hover {
  color: var(--amber-dark);
}

/* ==========================================================================
   Header Navigation
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: all 0.3s ease;
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  transition: transform 0.25s ease;
}

.brand-link:hover .brand-logo-img {
  transform: scale(1.02);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  color: var(--ink-secondary);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 8px 0;
  position: relative;
  transition: color 0.2s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2.5px;
  background: var(--purple);
  border-radius: var(--radius-pill);
  transition: width 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--purple);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.action-icon-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  transition: all 0.2s ease;
}

.action-icon-btn:hover {
  border-color: var(--purple);
  color: var(--purple);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.marketplace-nav-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--amber-50);
  border: 1px solid var(--amber-200);
  color: var(--amber-dark);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  transition: all 0.2s ease;
}

.marketplace-nav-pill:hover {
  background: var(--amber);
  color: #fff;
  border-color: var(--amber);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(242, 168, 73, 0.28);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--ink);
  cursor: pointer;
  padding: 6px;
}

/* ==========================================================================
   Buttons & Badges
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 26px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s ease;
  border: none;
}

.btn-primary {
  background: var(--purple);
  color: #fff;
  box-shadow: 0 8px 22px var(--purple-glow);
}

.btn-primary:hover {
  background: var(--purple-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(133, 61, 134, 0.24);
}

.btn-secondary {
  background: #fff;
  color: var(--purple);
  border: 1.5px solid var(--line-strong);
}

.btn-secondary:hover {
  background: var(--purple-50);
  border-color: var(--purple);
  color: var(--purple);
  transform: translateY(-2px);
}

.btn-amber {
  background: var(--amber);
  color: #fff;
  box-shadow: 0 8px 20px rgba(242, 168, 73, 0.25);
}

.btn-amber:hover {
  background: var(--amber-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(242, 168, 73, 0.35);
}

.btn-uzum {
  background: #7000FF;
  color: #fff !important;
}
.btn-uzum:hover {
  background: #5900cc;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(112, 0, 255, 0.25);
}

.btn-wb {
  background: #CB11AB;
  color: #fff !important;
}
.btn-wb:hover {
  background: #a90e8f;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(203, 17, 171, 0.25);
}

.btn-ozon {
  background: #005BFF;
  color: #fff !important;
}
.btn-ozon:hover {
  background: #0046c7;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 91, 255, 0.25);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 16px 34px;
  font-size: 1.05rem;
}

.eyebrow-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  background: #FFFFFF;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--purple);
  box-shadow: var(--shadow-sm);
  margin-bottom: 18px;
}

.eyebrow-badge span.dot {
  width: 8px;
  height: 8px;
  background: var(--amber);
  border-radius: 50%;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
  background: var(--purple-50);
  color: var(--purple);
  border: 1px solid var(--purple-100);
  transition: all 0.2s ease;
}

.tag:hover, .tag.active {
  background: var(--purple);
  color: #fff;
  border-color: var(--purple);
}

/* ==========================================================================
   Hero Section (Matching Reference Style: Soft Lilac + Cloud Divider)
   ========================================================================== */
.hero-section {
  position: relative;
  background: linear-gradient(180deg, #F5EDF8 0%, #FAF6FC 75%, #FFFFFF 100%);
  padding: 60px 24px 100px;
  overflow: hidden;
}

.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 48px;
  position: relative;
  z-index: 2;
}

.hero-copy {
  max-width: 620px;
}

.hero-title {
  font-size: clamp(2.4rem, 4.2vw, 3.8rem);
  font-weight: 900;
  line-height: 1.12;
  margin-bottom: 20px;
  color: var(--ink);
}

.hero-title .brand-gradient {
  background: linear-gradient(135deg, var(--purple) 0%, #B856BC 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-title .amber-text {
  color: var(--amber);
  -webkit-text-fill-color: var(--amber);
}

.hero-lead {
  font-size: 1.15rem;
  line-height: 1.65;
  color: var(--ink-secondary);
  margin-bottom: 32px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-trust-bullets {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 20px;
  border-top: 1px solid rgba(133, 61, 134, 0.12);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
}

.trust-item-icon {
  width: 20px;
  height: 20px;
  color: var(--purple);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-img-wrap {
  position: relative;
  width: 100%;
  max-width: 520px;
  border-radius: var(--radius-xl);
  overflow: visible;
}

.hero-img-wrap img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  filter: drop-shadow(0 18px 36px rgba(133, 61, 134, 0.1));
}

/* Gentle Cloud Wave Section Divider */
.cloud-wave-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 1;
}

.cloud-wave-divider svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 48px;
}

/* ==========================================================================
   Shop By Age Section (Infants & Newborns only 0–24m)
   ========================================================================== */
.section {
  padding: 80px 24px;
  max-width: var(--max);
  margin: 0 auto;
}

.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
}

.section-head h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 12px;
}

.section-head p {
  color: var(--muted);
  font-size: 1.05rem;
  margin: 0;
}

.age-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-bottom: 24px;
}

.age-card {
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px 16px;
  text-align: center;
  text-decoration: none;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: var(--shadow-sm);
}

.age-card:hover {
  transform: translateY(-6px);
  border-color: var(--purple-200);
  box-shadow: var(--shadow-hover);
}

.age-icon-wrap {
  width: 96px;
  height: 96px;
  margin-bottom: 16px;
  transition: transform 0.25s ease;
}

.age-card:hover .age-icon-wrap {
  transform: scale(1.06);
}

.age-card h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
  color: var(--ink);
}

.age-card p {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
  font-weight: 500;
}

/* ==========================================================================
   Shop By Category (Pastel Tinted Reference Cards)
   ========================================================================== */
.category-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.cat-card {
  position: relative;
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  padding: 32px 28px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 260px;
  transition: all 0.25s ease;
  box-shadow: var(--shadow-sm);
}

.cat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.cat-card-bodi { background: linear-gradient(135deg, #FAF4FC 0%, #FFFFFF 100%); }
.cat-card-slipy { background: linear-gradient(135deg, #FFF9F2 0%, #FFFFFF 100%); }
.cat-card-kombi { background: linear-gradient(135deg, #F3FAF7 0%, #FFFFFF 100%); }
.cat-card-pants { background: linear-gradient(135deg, #FDF4F8 0%, #FFFFFF 100%); }
.cat-card-sets { background: linear-gradient(135deg, #FCF7F0 0%, #FFFFFF 100%); }
.cat-card-access { background: linear-gradient(135deg, #F5EFF9 0%, #FFFFFF 100%); }

.cat-card-badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 8px;
}

.cat-card h3 {
  font-size: 1.45rem;
  margin-bottom: 8px;
  color: var(--ink);
}

.cat-card p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 20px;
  max-width: 80%;
}

.cat-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.cat-card-link-text {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--purple);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.cat-card-img-thumb {
  width: 90px;
  height: 90px;
  object-fit: contain;
  margin-right: -10px;
  margin-bottom: -10px;
  transition: transform 0.25s ease;
}

.cat-card:hover .cat-card-img-thumb {
  transform: scale(1.08) rotate(3deg);
}

/* ==========================================================================
   Why Choose jijino (Values & Quality Strip)
   ========================================================================== */
.values-section {
  background: #FFFFFF;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 80px 24px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  max-width: var(--max);
  margin: 0 auto;
}

.value-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.value-icon-box {
  width: 76px;
  height: 76px;
  margin-bottom: 20px;
  border-radius: var(--radius-md);
  transition: transform 0.25s ease;
}

.value-card:hover .value-icon-box {
  transform: translateY(-4px) scale(1.05);
}

.value-card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.value-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

/* ==========================================================================
   Product Cards & Showcase
   ========================================================================== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}

.product-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.25s ease;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: var(--purple-200);
  box-shadow: var(--shadow-hover);
}

.product-img-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--canvas-alt);
  overflow: hidden;
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--purple);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.04em;
  z-index: 2;
  box-shadow: 0 4px 10px var(--purple-glow);
}

.product-heart-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--muted);
  transition: all 0.2s ease;
  z-index: 2;
}

.product-heart-btn:hover {
  color: #E63946;
  background: #fff;
  transform: scale(1.1);
}

.product-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 8px;
}

.product-title {
  font-size: 1.05rem;
  margin-bottom: 6px;
  font-weight: 700;
  line-height: 1.35;
}

.product-title a {
  color: var(--ink);
}

.product-title a:hover {
  color: var(--purple);
}

.product-material-pill {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.product-price-row {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.price-box {
  display: flex;
  flex-direction: column;
}

.current-price {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.1;
}

.old-price {
  font-size: 0.82rem;
  color: var(--text-light);
  text-decoration: line-through;
}

.buy-marketplace-btn {
  background: var(--amber-50);
  color: var(--amber-dark);
  border: 1px solid var(--amber-200);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
}

.buy-marketplace-btn:hover {
  background: var(--amber);
  color: #fff;
  border-color: var(--amber);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(242, 168, 73, 0.3);
}

/* ==========================================================================
   Brand Story & Philosophy Section
   ========================================================================== */
.philosophy-section {
  background: linear-gradient(135deg, #FAF4FC 0%, #FFF9F2 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 90px 24px;
}

.philosophy-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
}

.philosophy-text h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 20px;
}

.philosophy-text p {
  color: var(--ink-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.philosophy-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.stat-item h4 {
  font-size: 1.8rem;
  color: var(--purple);
  margin-bottom: 4px;
}

.stat-item p {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
}

/* ==========================================================================
   Parent Reviews / Testimonials Section (From Reference)
   ========================================================================== */
.reviews-section {
  padding: 80px 24px;
  background: var(--canvas);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.review-card {
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.stars-row {
  display: flex;
  gap: 4px;
  color: var(--amber);
  margin-bottom: 16px;
  font-size: 1.1rem;
}

.review-card blockquote {
  margin: 0 0 24px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--ink);
  font-style: italic;
  flex-grow: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--purple-100);
  color: var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
}

.author-info h4 {
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.author-info p {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0;
}

.verified-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #2E7D32;
  font-size: 0.75rem;
  font-weight: 700;
}

/* ==========================================================================
   Where To Buy Marketplace Banner
   ========================================================================== */
.marketplace-banner {
  background: linear-gradient(135deg, #FAF4FC 0%, #FFF8EE 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 48px;
  margin: 40px auto 80px;
  max-width: var(--max);
  text-align: center;
}

.marketplace-banner h2 {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.marketplace-banner p {
  max-width: 620px;
  margin: 0 auto 32px;
  color: var(--muted);
  font-size: 1.05rem;
}

.marketplace-buttons {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* ==========================================================================
   Product Detail Page (/product/{slug})
   ========================================================================== */
.product-detail-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: flex-start;
  margin-top: 24px;
}

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

.gallery-main {
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  box-shadow: var(--shadow-sm);
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-meta-header {
  margin-bottom: 24px;
}

.product-meta-header h1 {
  font-size: clamp(2rem, 3.2vw, 2.7rem);
  margin-bottom: 10px;
}

.product-meta-header .subtitle {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 16px;
}

.product-price-large {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 24px;
}

.product-price-large .val {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--ink);
}

.product-price-large .old {
  font-size: 1.25rem;
  color: var(--text-light);
  text-decoration: line-through;
}

.marketplace-buy-box {
  background: #FFFFFF;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 32px;
  box-shadow: var(--shadow-sm);
}

.marketplace-buy-box h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.marketplace-buy-box p {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 18px;
}

.marketplace-cta-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.features-bullets-box {
  background: var(--purple-50);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 28px;
}

.features-bullets-box h4 {
  font-size: 1rem;
  margin-bottom: 10px;
  color: var(--purple-dark);
}

.features-bullets-box ul {
  margin: 0;
  padding-left: 20px;
  font-size: 0.92rem;
  color: var(--ink-secondary);
  line-height: 1.6;
}

/* ==========================================================================
   Catalog Page Filters
   ========================================================================== */
.catalog-filter-bar {
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow-sm);
}

.filter-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.filter-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--muted);
  min-width: 90px;
}

/* ==========================================================================
   Size Table & Guide
   ========================================================================== */
.size-table-container {
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 32px;
}

.size-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.size-table th,
.size-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
}

.size-table th {
  background: var(--canvas);
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--ink);
  font-size: 0.95rem;
}

.size-table tr:last-child td {
  border-bottom: none;
}

.size-table tr:hover td {
  background: var(--purple-50);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--purple-deep);
  color: #FFFFFF;
  padding: 70px 24px 30px;
  margin-top: 80px;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-brand p {
  color: #C8B8D0;
  font-size: 0.92rem;
  line-height: 1.6;
  margin-top: 16px;
  max-width: 320px;
}

.footer-logo {
  height: 40px;
  width: auto;
}

.footer-col h4 {
  color: #FFFFFF;
  font-size: 1.05rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin-bottom: 12px;
}

.footer-col a {
  color: #C8B8D0;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--amber);
}

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: #9B8BA3;
  flex-wrap: wrap;
  gap: 16px;
}

/* ==========================================================================
   Responsive Adaptations (Desktop & Mobile)
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 36px;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-cta-group,
  .hero-trust-bullets {
    justify-content: center;
  }

  .hero-visual {
    order: -1;
  }

  .hero-img-wrap {
    max-width: 440px;
  }

  .philosophy-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .product-detail-layout {
    grid-template-columns: 1fr;
  }

  .product-gallery {
    position: static;
  }
}

@media (max-width: 768px) {
  .site-header {
    padding: 10px 0;
  }

  .header-inner {
    padding: 10px 16px;
  }

  .main-nav {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .mobile-menu-active .main-nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #FFFFFF;
    padding: 24px 20px;
    border-bottom: 2px solid var(--line);
    box-shadow: var(--shadow-lg);
    gap: 16px;
  }

  .hero-section {
    padding: 40px 16px 70px;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .section {
    padding: 50px 16px;
  }

  .values-section {
    padding: 50px 16px;
  }

  .category-cards-grid {
    grid-template-columns: 1fr;
  }

  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
  }

  .product-info {
    padding: 14px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .marketplace-banner {
    padding: 28px 20px;
  }

  .marketplace-buttons {
    flex-direction: column;
  }

  .marketplace-buttons .btn {
    width: 100%;
  }
}
