/* ============================================
   SOFFIONATURA - MAIN STYLESHEET
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  --color-primary:    #A8D5BA;
  --color-secondary:  #F5C6AA;
  --color-accent:     #C3AED6;
  --color-accent2:    #B8D8E8;
  --color-bg:         #FDFAF6;
  --color-bg2:        #F4F0EB;
  --color-bg3:        #FFFFFF;
  --color-text:       #3D3D3D;
  --color-text2:      #6B6B6B;
  --color-heading:    #2C2C2C;
  --color-border:     #E8E2DA;
  --color-success:    #8FC9A3;
  --color-warning:    #F0D58C;
  --color-error:      #E8A0A0;

  --font-heading:  'Playfair Display', Georgia, serif;
  --font-body:     'Nunito', sans-serif;
  --font-accent:   'Cormorant Garamond', Georgia, serif;
  --font-price:    'DM Sans', sans-serif;

  --radius-card:   16px;
  --radius-btn:    12px;
  --radius-img:    24px;
  --shadow-card:   0 2px 12px rgba(0,0,0,0.04);
  --shadow-hover:  0 8px 32px rgba(0,0,0,0.09);
  --transition:    0.3s ease;
  --max-width:     1280px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* --- Container --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--color-heading);
  line-height: 1.2;
}
h1 { font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.25rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); font-weight: 500; }
h4 { font-size: 1.1rem; font-weight: 500; }
p { line-height: 1.75; }
.accent-text { font-family: var(--font-accent); font-style: italic; }
.price { font-family: var(--font-price); font-weight: 500; }

/* --- Section Decorators --- */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 12px;
}
.section-heading { margin-bottom: 12px; }
.section-subtitle {
  font-size: 16px;
  color: var(--color-text2);
  max-width: 560px;
}
.section-head-center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 56px;
}
.section-head-center .section-subtitle { text-align: center; }
.deco-line {
  width: 60px;
  height: 2px;
  background: var(--color-primary);
  margin-top: 16px;
  border-radius: 2px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radius-btn);
  transition: background var(--transition), color var(--transition), transform 0.2s ease, box-shadow var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--color-primary);
  color: #fff;
}
.btn-primary:hover {
  background: #96C9A8;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(168,213,186,0.35);
}
.btn-secondary {
  background: transparent;
  border-color: var(--color-secondary);
  color: var(--color-text);
}
.btn-secondary:hover {
  background: var(--color-secondary);
  color: #fff;
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--color-primary);
  padding: 0;
  font-size: 14px;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 400;
  border: none;
  position: relative;
}
.btn-ghost::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-primary);
  transition: width var(--transition);
}
.btn-ghost:hover::after { width: 100%; }
.btn-ghost svg { transition: transform var(--transition); }
.btn-ghost:hover svg { transform: translateX(4px); }
.btn-cart {
  background: var(--color-primary);
  color: #fff;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 13px;
  gap: 6px;
}
.btn-cart:hover {
  background: #96C9A8;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(168,213,186,0.35);
}
.btn-disabled { background: var(--color-border); color: var(--color-text2); cursor: not-allowed; }
.btn-large { padding: 16px 40px; font-size: 15px; }
.btn-full { width: 100%; justify-content: center; }

/* --- Feather Icon Helper --- */
.icon-sm svg { width: 16px; height: 16px; }
.icon-md svg { width: 20px; height: 20px; }
.icon-lg svg { width: 24px; height: 24px; }

/* ============================================
   ANNOUNCEMENT BAR
   ============================================ */
.announcement-bar {
  background: var(--color-bg2);
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.announcement-track {
  display: flex;
  gap: 80px;
  animation: marquee 24s linear infinite;
}
.announcement-item {
  font-size: 13px;
  font-weight: 400;
  color: var(--color-text2);
  white-space: nowrap;
}
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.announcement-close {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-text2);
  opacity: 0.6;
  transition: opacity var(--transition);
  padding: 4px;
}
.announcement-close:hover { opacity: 1; }
.announcement-close svg { width: 16px; height: 16px; }

/* ============================================
   SITE HEADER
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: #fff;
  height: 80px;
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.05); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 32px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-icon { color: var(--color-primary); display: flex; }
.logo-icon svg { width: 22px; height: 22px; }
.logo-text-wrap { display: flex; flex-direction: column; }
.logo-name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 26px;
  color: var(--color-heading);
  line-height: 1;
}
.logo-tagline {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 13px;
  color: var(--color-text2);
  line-height: 1;
  margin-top: 2px;
}

/* Main Nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-link {
  font-size: 15px;
  font-weight: 400;
  color: var(--color-text);
  position: relative;
  transition: color var(--transition);
  padding-bottom: 2px;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width var(--transition);
}
.nav-link:hover { color: var(--color-primary); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link.active { color: var(--color-primary); }

/* Header Icons */
.header-icons { display: flex; align-items: center; gap: 8px; }
.icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text);
  transition: background var(--transition), color var(--transition);
  position: relative;
}
.icon-btn svg { width: 20px; height: 20px; }
.icon-btn:hover { background: var(--color-bg2); color: var(--color-primary); }
.cart-badge {
  position: absolute;
  top: 2px;
  right: 2px;
  background: var(--color-secondary);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

/* ============================================
   SEARCH OVERLAY
   ============================================ */
.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: rgba(253,250,246,0.97);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.search-overlay.open { opacity: 1; pointer-events: all; }
.search-overlay-inner { text-align: center; width: 100%; max-width: 600px; padding: 0 24px; }
.search-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text2);
  transition: background var(--transition);
}
.search-close:hover { background: var(--color-bg2); }
.search-close svg { width: 24px; height: 24px; }
.search-label {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--color-heading);
  margin-bottom: 24px;
}
.search-form { display: flex; border-bottom: 2px solid var(--color-border); }
.search-input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-size: 20px;
  font-family: var(--font-body);
  color: var(--color-text);
  padding: 12px 0;
}
.search-input::placeholder { color: var(--color-border); }
.search-submit {
  background: none;
  border: none;
  color: var(--color-text2);
  cursor: pointer;
  padding: 12px;
  transition: color var(--transition);
}
.search-submit:hover { color: var(--color-primary); }
.search-submit svg { width: 22px; height: 22px; }

/* ============================================
   MOBILE NAV
   ============================================ */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 950;
  background: rgba(44,44,44,0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.mobile-nav-overlay.open { opacity: 1; pointer-events: all; }
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 960;
  width: 300px;
  height: 100%;
  background: #fff;
  transform: translateX(-100%);
  transition: transform 0.35s ease-in-out;
  display: flex;
  flex-direction: column;
  padding: 24px;
  gap: 0;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}
.logo-small { gap: 8px; }
.logo-small .logo-name { font-size: 20px; }
.mobile-nav-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text2);
  transition: background var(--transition);
}
.mobile-nav-close:hover { background: var(--color-bg2); }
.mobile-nav-close svg { width: 20px; height: 20px; }
.mobile-nav-links { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav-link {
  display: block;
  font-size: 16px;
  font-weight: 400;
  color: var(--color-text);
  padding: 12px 16px;
  border-radius: 10px;
  transition: background var(--transition), color var(--transition);
}
.mobile-nav-link:hover, .mobile-nav-link.active {
  background: rgba(168,213,186,0.12);
  color: var(--color-primary);
}

/* ============================================
   CART DRAWER
   ============================================ */
.cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 950;
  background: rgba(44,44,44,0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.cart-overlay.open { opacity: 1; pointer-events: all; }
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 960;
  width: 400px;
  max-width: 100%;
  height: 100%;
  background: #fff;
  transform: translateX(100%);
  transition: transform 0.35s ease-in-out;
  display: flex;
  flex-direction: column;
  box-shadow: -4px 0 32px rgba(0,0,0,0.08);
}
.cart-drawer.open { transform: translateX(0); }
.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  border-bottom: 1px solid var(--color-border);
}
.cart-drawer-header h3 { font-size: 20px; }
.cart-drawer-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text2);
  transition: background var(--transition);
}
.cart-drawer-close:hover { background: var(--color-bg2); }
.cart-drawer-close svg { width: 20px; height: 20px; }
.cart-drawer-items {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cart-drawer-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 16px;
  color: var(--color-text2);
  text-align: center;
}
.cart-drawer-empty svg { width: 48px; height: 48px; color: var(--color-border); }
.cart-drawer-empty p { font-size: 15px; }
.cart-mini-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.cart-mini-img {
  width: 72px;
  height: 72px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--color-bg2);
}
.cart-mini-info { flex: 1; }
.cart-mini-name {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-heading);
  margin-bottom: 4px;
  line-height: 1.3;
}
.cart-mini-volume { font-size: 12px; color: var(--color-text2); margin-bottom: 8px; }
.cart-mini-row { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.cart-mini-qty { display: flex; align-items: center; gap: 8px; }
.qty-btn {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--color-text2);
  transition: border-color var(--transition), color var(--transition);
}
.qty-btn:hover { border-color: var(--color-primary); color: var(--color-primary); }
.qty-num { font-size: 14px; font-weight: 600; min-width: 20px; text-align: center; }
.cart-mini-price { font-family: var(--font-price); font-size: 15px; color: var(--color-heading); }
.cart-mini-remove {
  color: var(--color-text2);
  transition: color var(--transition);
  padding: 4px;
}
.cart-mini-remove:hover { color: var(--color-error); }
.cart-mini-remove svg { width: 15px; height: 15px; }
.cart-drawer-footer {
  padding: 24px;
  border-top: 1px solid var(--color-border);
}
.cart-subtotal-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.cart-subtotal-label { font-size: 14px; color: var(--color-text2); }
.cart-subtotal-value { font-family: var(--font-price); font-size: 18px; color: var(--color-heading); font-weight: 500; }
.cart-drawer-btns { display: flex; flex-direction: column; gap: 10px; }

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
  min-height: 85vh;
  display: flex;
  align-items: center;
  background: var(--color-bg);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}
.hero-inner {
  display: grid;
  grid-template-columns: 55% 45%;
  align-items: center;
  gap: 64px;
  width: 100%;
}
.hero-content { animation: fadeInUp 0.6s ease-out both; }
.hero-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 20px;
}
.hero-headline { font-size: clamp(2rem, 4.5vw, 3.25rem); font-weight: 700; line-height: 1.15; margin-bottom: 24px; }
.hero-subheadline { font-size: 18px; font-weight: 300; color: var(--color-text2); line-height: 1.65; max-width: 500px; margin-bottom: 40px; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-image-wrap {
  position: relative;
  animation: fadeInUp 0.6s 0.2s ease-out both;
}
.hero-img-inner {
  border-radius: var(--radius-img);
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.hero-img-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.02) saturate(0.95);
  aspect-ratio: 4/5;
}
.hero-deco-circle {
  position: absolute;
  width: 120%;
  height: 120%;
  border-radius: 50%;
  background: var(--color-primary);
  opacity: 0.08;
  top: -10%;
  right: -10%;
  z-index: 0;
}

/* Wave Divider */
.wave-divider { display: block; width: 100%; overflow: hidden; line-height: 0; }
.wave-divider svg { display: block; }

/* ============================================
   CATEGORY SHOWCASE
   ============================================ */
.categories-section { background: var(--color-bg2); padding: 80px 0; }
.categories-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.category-card {
  background: var(--color-bg3);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
.category-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.category-card-img {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
}
.category-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  filter: brightness(1.02) saturate(0.9);
}
.category-card:hover .category-card-img img { transform: scale(1.03); }
.category-card-body { padding: 24px; }
.category-card-title { font-family: var(--font-heading); font-size: 20px; font-weight: 500; margin-bottom: 8px; }
.category-card-desc { font-size: 14px; color: var(--color-text2); margin-bottom: 16px; line-height: 1.6; }

/* ============================================
   PRODUCT CARDS
   ============================================ */
.featured-products-section { background: var(--color-bg); padding: 80px 0; }
.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; margin-bottom: 48px; }
.product-card {
  background: var(--color-bg3);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.product-card-img-wrap {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--color-bg2);
}
.product-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.02) saturate(0.9);
  transition: opacity 0.4s ease;
}
.product-card-img-hover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.02) saturate(0.9);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.product-card:hover .product-card-img-hover { opacity: 1; }
.product-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--color-accent);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 8px;
  font-family: var(--font-body);
}
.product-card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.product-cat-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--color-text2);
  background: rgba(184,216,232,0.2);
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 4px;
}
.product-name {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 500;
  color: var(--color-heading);
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color var(--transition);
}
.product-name:hover { color: var(--color-primary); }
.product-desc {
  font-size: 13px;
  color: var(--color-text2);
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}
.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 12px;
}
.product-volume { font-size: 13px; color: var(--color-text2); }
.product-price { font-family: var(--font-price); font-size: 19px; font-weight: 500; color: var(--color-heading); }
.product-card-footer {
  padding: 0 20px 20px;
}

/* ============================================
   BRAND STORY PREVIEW
   ============================================ */
.brand-story-section { background: var(--color-bg2); padding: 80px 0; }
.brand-story-inner {
  display: grid;
  grid-template-columns: 45% 55%;
  gap: 80px;
  align-items: center;
}
.brand-story-img-wrap { position: relative; }
.brand-story-img {
  border-radius: 20px;
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  filter: brightness(1.03) saturate(0.9);
  position: relative;
  z-index: 1;
}
.brand-deco-square {
  position: absolute;
  width: 80%;
  height: 80%;
  background: var(--color-secondary);
  opacity: 0.15;
  bottom: -24px;
  left: -24px;
  border-radius: 20px;
  z-index: 0;
}
.brand-story-content { display: flex; flex-direction: column; gap: 20px; }
.brand-story-content p { font-size: 16px; color: var(--color-text); line-height: 1.8; }

/* ============================================
   INGREDIENTS SECTION
   ============================================ */
.ingredients-section { background: var(--color-bg); padding: 80px 0; }
.ingredients-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.ingredient-card { text-align: center; padding: 32px 24px; }
.ingredient-icon-wrap {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.ingredient-icon-wrap i, .ingredient-icon-wrap .ph { font-size: 36px; }
.ingredient-name { font-family: var(--font-heading); font-size: 18px; font-weight: 500; margin-bottom: 10px; }
.ingredient-desc { font-size: 14px; color: var(--color-text2); line-height: 1.6; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section { background: var(--color-bg2); padding: 80px 0; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.testimonial-card {
  background: var(--color-bg3);
  border-radius: var(--radius-card);
  padding: 32px;
  box-shadow: var(--shadow-card);
}
.stars { display: flex; gap: 4px; margin-bottom: 16px; color: var(--color-warning); }
.stars svg { width: 16px; height: 16px; fill: var(--color-warning) !important; stroke: var(--color-warning) !important; }
.testimonial-quote {
  font-size: 15px;
  color: var(--color-text);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}
.testimonial-divider { width: 40px; height: 1px; background: var(--color-border); margin-bottom: 16px; }
.testimonial-author { font-size: 14px; font-weight: 600; color: var(--color-heading); margin-bottom: 2px; }
.testimonial-location { font-size: 13px; color: var(--color-text2); }

/* ============================================
   NEWSLETTER
   ============================================ */
.newsletter-section {
  background: var(--color-bg);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.newsletter-deco {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: var(--color-accent);
  opacity: 0.05;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.newsletter-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.newsletter-inner h2 { margin-bottom: 16px; }
.newsletter-inner p { font-size: 16px; color: var(--color-text2); margin-bottom: 32px; line-height: 1.7; }
.newsletter-form {
  display: flex;
  border-radius: var(--radius-btn);
  overflow: hidden;
  border: 1px solid var(--color-border);
  background: #fff;
  box-shadow: var(--shadow-card);
}
.newsletter-input {
  flex: 1;
  padding: 14px 20px;
  border: none;
  outline: none;
  font-size: 15px;
  background: transparent;
  color: var(--color-text);
}
.newsletter-input::placeholder { color: var(--color-border); }
.newsletter-btn {
  background: var(--color-primary);
  color: #fff;
  border: none;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: background var(--transition);
  white-space: nowrap;
}
.newsletter-btn:hover { background: #96C9A8; }
.newsletter-note { font-size: 12px; color: var(--color-text2); margin-top: 12px; }

/* ============================================
   TRUST BAR (FOOTER PRE-SECTION)
   ============================================ */
.trust-bar { background: var(--color-bg2); padding: 40px 0; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.trust-item { display: flex; gap: 20px; align-items: flex-start; }
.trust-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(168,213,186,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-primary);
}
.trust-icon-wrap svg { width: 24px; height: 24px; }
.trust-text { display: flex; flex-direction: column; gap: 4px; }
.trust-text strong { font-size: 15px; font-weight: 600; color: var(--color-heading); }
.trust-text span { font-size: 13px; color: var(--color-text2); line-height: 1.5; }

/* ============================================
   SITE FOOTER
   ============================================ */
.site-footer { background: var(--color-heading); color: var(--color-border); padding: 64px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 40px; }
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 22px;
  color: #fff;
  margin-bottom: 16px;
}
.footer-logo svg { width: 20px; height: 20px; color: var(--color-primary); }
.footer-brand p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(232,226,218,0.75);
  margin-bottom: 12px;
}
.footer-contact {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(232,226,218,0.65);
  margin-bottom: 4px;
}
.footer-contact svg { width: 14px; height: 14px; }
.footer-heading {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-primary);
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 14px;
  color: rgba(232,226,218,0.65);
  transition: color var(--transition);
}
.footer-links a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid #3D3D3D;
  padding-top: 20px;
  text-align: center;
}
.footer-bottom p { font-size: 13px; color: rgba(232,226,218,0.5); }

/* ============================================
   PAGE HERO BANNER (inner pages)
   ============================================ */
.page-hero {
  background: var(--color-bg2);
  padding: 80px 0;
  text-align: center;
}
.page-hero-content { max-width: 640px; margin: 0 auto; }
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: var(--color-text2);
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.breadcrumb svg { width: 14px; height: 14px; color: var(--color-border); }
.breadcrumb a { transition: color var(--transition); }
.breadcrumb a:hover { color: var(--color-primary); }
.page-hero h1 { margin-bottom: 16px; }
.page-hero .page-hero-sub { font-size: 16px; color: var(--color-text2); line-height: 1.65; }

/* ============================================
   FILTER BAR (products page)
   ============================================ */
.filter-bar {
  background: #fff;
  border-bottom: 1px solid var(--color-border);
  padding: 16px 0;
  position: sticky;
  top: 80px;
  z-index: 800;
}
.filter-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.filter-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.filter-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 20px;
  border-radius: 24px;
  border: 1px solid var(--color-border);
  font-size: 14px;
  color: var(--color-text);
  cursor: pointer;
  transition: all var(--transition);
  background: transparent;
  font-family: var(--font-body);
}
.filter-pill:hover { border-color: var(--color-primary); color: var(--color-primary); }
.filter-pill.active {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}
.sort-select-wrap { position: relative; }
.sort-select {
  appearance: none;
  padding: 8px 36px 8px 16px;
  border-radius: 24px;
  border: 1px solid var(--color-border);
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--color-text);
  background: transparent;
  cursor: pointer;
  outline: none;
}
.sort-select-wrap::after {
  content: '';
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid var(--color-text2);
  pointer-events: none;
}

/* ============================================
   PRODUCT CATALOG SECTION
   ============================================ */
.catalog-section { background: var(--color-bg); padding: 64px 0; }
.catalog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.product-card.hidden { display: none; }

/* ============================================
   GIFT SETS
   ============================================ */
.gift-sets-section { background: var(--color-bg2); padding: 48px 0; margin-top: 0; }
.gift-sets-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.gift-set-card {
  background: var(--color-bg3);
  border-radius: var(--radius-card);
  overflow: hidden;
  display: flex;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gift-set-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.gift-set-img {
  width: 40%;
  flex-shrink: 0;
  object-fit: cover;
  filter: brightness(1.02) saturate(0.9);
}
.gift-set-body { padding: 28px; display: flex; flex-direction: column; gap: 10px; }
.gift-set-name { font-family: var(--font-heading); font-size: 20px; font-weight: 600; }
.gift-set-contents { font-size: 13px; color: var(--color-text2); line-height: 1.6; }
.gift-set-desc { font-size: 14px; color: var(--color-text); line-height: 1.6; }
.gift-set-price { font-family: var(--font-price); font-size: 22px; margin-top: auto; }

/* ============================================
   PRODUCT DETAIL PAGE
   ============================================ */
.product-detail-section { background: var(--color-bg); padding: 64px 0; }
.product-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.product-gallery {}
.gallery-main {
  aspect-ratio: 1;
  border-radius: 20px;
  overflow: hidden;
  background: var(--color-bg2);
  margin-bottom: 16px;
}
.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.02) saturate(0.9);
  transition: opacity 0.35s ease;
}
.gallery-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.gallery-thumb {
  aspect-ratio: 1;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color var(--transition);
}
.gallery-thumb.active { border-color: var(--color-primary); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; filter: brightness(1.02) saturate(0.9); }
.product-info { display: flex; flex-direction: column; gap: 16px; }
.product-info .product-cat-tag { align-self: flex-start; }
.product-info h1 { font-size: clamp(1.5rem, 3vw, 2rem); }
.product-tagline { font-family: var(--font-accent); font-style: italic; font-size: 16px; color: var(--color-text2); }
.product-rating { display: flex; align-items: center; gap: 8px; }
.product-rating .stars { margin-bottom: 0; }
.rating-count { font-size: 13px; color: var(--color-text2); }
.product-price-wrap {}
.product-price-big { font-family: var(--font-price); font-size: 28px; color: var(--color-heading); }
.product-price-note { font-size: 12px; color: var(--color-text2); margin-top: 2px; }
.product-divider { height: 1px; background: var(--color-border); margin: 4px 0; }
.product-short-desc { font-size: 15px; color: var(--color-text); line-height: 1.7; }
.volume-selector { display: flex; gap: 10px; }
.volume-btn {
  padding: 8px 24px;
  border-radius: 24px;
  border: 1px solid var(--color-border);
  font-size: 14px;
  color: var(--color-text);
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font-body);
  background: transparent;
}
.volume-btn.active { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }
.quantity-selector { display: flex; align-items: center; gap: 0; border: 1px solid var(--color-border); border-radius: 12px; width: fit-content; overflow: hidden; }
.qty-control {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--color-text2);
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
  background: none;
  border: none;
  font-family: var(--font-body);
}
.qty-control:hover { background: var(--color-bg2); color: var(--color-primary); }
.qty-display {
  width: 48px;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  border-left: 1px solid var(--color-border);
  border-right: 1px solid var(--color-border);
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.add-to-cart-btn {
  width: 100%;
  height: 54px;
  background: var(--color-primary);
  color: #fff;
  border-radius: var(--radius-btn);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: background var(--transition), transform 0.2s ease, box-shadow var(--transition);
  border: none;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.add-to-cart-btn:hover {
  background: #96C9A8;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(168,213,186,0.35);
}
.add-to-cart-btn svg { width: 20px; height: 20px; }
.product-shipping-info { display: flex; flex-direction: column; gap: 8px; }
.product-ship-line { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--color-text2); }
.product-ship-line svg { width: 14px; height: 14px; flex-shrink: 0; }

/* Product Tabs */
.product-tabs-section { background: var(--color-bg); padding: 0 0 80px; }
.tabs-nav { display: flex; border-bottom: 1px solid var(--color-border); gap: 32px; }
.tab-btn {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--color-text2);
  padding: 16px 0;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  cursor: pointer;
  transition: color var(--transition), border-color var(--transition);
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
}
.tab-btn:hover, .tab-btn.active { color: var(--color-heading); border-bottom-color: var(--color-primary); }
.tab-content { padding: 32px 0; display: none; }
.tab-content.active { display: block; }
.tab-content p { font-size: 15px; line-height: 1.75; color: var(--color-text); margin-bottom: 16px; }
.tab-benefits { list-style: none; margin: 16px 0; display: flex; flex-direction: column; gap: 10px; }
.tab-benefits li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--color-text); line-height: 1.5; }
.tab-benefits li svg { width: 16px; height: 16px; color: var(--color-primary); flex-shrink: 0; margin-top: 2px; }
.inci-note { font-size: 13px; color: var(--color-text2); background: rgba(168,213,186,0.1); padding: 12px 16px; border-radius: 8px; margin-bottom: 16px; border-left: 3px solid var(--color-primary); }
.inci-list { font-size: 14px; color: var(--color-text); line-height: 1.8; }
.inci-list strong { color: var(--color-heading); }
.usage-steps { display: flex; flex-direction: column; gap: 16px; }
.usage-step { display: flex; gap: 16px; align-items: flex-start; }
.step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(168,213,186,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-primary);
  flex-shrink: 0;
}
.step-text { font-size: 14px; color: var(--color-text); line-height: 1.6; padding-top: 4px; }

/* Related Products */
.related-products-section { background: var(--color-bg2); padding: 80px 0; }
.related-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ============================================
   CART PAGE
   ============================================ */
.cart-section { background: var(--color-bg); padding: 64px 0; }
.cart-layout { display: grid; grid-template-columns: 65% 35%; gap: 48px; align-items: start; }
.cart-items-list { display: flex; flex-direction: column; gap: 16px; }
.cart-item-card {
  background: var(--color-bg3);
  border-radius: var(--radius-btn);
  padding: 20px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  box-shadow: var(--shadow-card);
}
.cart-item-img { width: 100px; height: 100px; border-radius: 8px; object-fit: cover; flex-shrink: 0; background: var(--color-bg2); filter: brightness(1.02) saturate(0.9); }
.cart-item-info { flex: 1; }
.cart-item-name { font-family: var(--font-heading); font-size: 16px; font-weight: 500; margin-bottom: 4px; }
.cart-item-variant { font-size: 13px; color: var(--color-text2); margin-bottom: 8px; }
.cart-item-unit-price { font-family: var(--font-price); font-size: 15px; color: var(--color-text2); }
.cart-item-controls { display: flex; align-items: center; gap: 16px; justify-content: flex-end; }
.cart-item-total { font-family: var(--font-price); font-size: 18px; color: var(--color-heading); }
.cart-item-remove { color: var(--color-text2); transition: color var(--transition); padding: 4px; }
.cart-item-remove:hover { color: var(--color-error); }
.cart-item-remove svg { width: 16px; height: 16px; }
.cart-back-link { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; color: var(--color-primary); margin-top: 16px; transition: gap var(--transition); }
.cart-back-link:hover { gap: 10px; }
.cart-back-link svg { width: 16px; height: 16px; }

/* Order Summary Card */
.order-summary-card {
  background: var(--color-bg2);
  border-radius: var(--radius-card);
  padding: 32px;
  position: sticky;
  top: 112px;
}
.order-summary-card h3 { font-size: 18px; margin-bottom: 24px; }
.summary-line { display: flex; justify-content: space-between; align-items: center; font-size: 15px; margin-bottom: 12px; }
.summary-line.total { padding-top: 16px; border-top: 1px solid var(--color-border); margin-top: 8px; }
.summary-total-label { font-size: 17px; font-weight: 600; }
.summary-total-value { font-family: var(--font-price); font-size: 22px; }
.summary-vat { font-size: 12px; color: var(--color-text2); text-align: right; margin-top: 2px; margin-bottom: 16px; }
.free-shipping-bar { margin: 16px 0; }
.free-shipping-msg { font-size: 13px; color: var(--color-text2); margin-bottom: 6px; }
.progress-bar { height: 6px; border-radius: 3px; background: var(--color-border); overflow: hidden; }
.progress-fill { height: 100%; background: var(--color-primary); border-radius: 3px; transition: width 0.5s ease; }
.promo-form { display: flex; gap: 8px; margin: 16px 0; }
.promo-input {
  flex: 1;
  padding: 10px 16px;
  border-radius: var(--radius-btn);
  border: 1px solid var(--color-border);
  font-size: 14px;
  outline: none;
  font-family: var(--font-body);
  transition: border-color var(--transition);
}
.promo-input:focus { border-color: var(--color-primary); }
.promo-apply-btn {
  padding: 10px 16px;
  border-radius: var(--radius-btn);
  border: 2px solid var(--color-secondary);
  background: transparent;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font-body);
  color: var(--color-text);
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.promo-apply-btn:hover { background: var(--color-secondary); color: #fff; }
.cart-trust-line { display: flex; align-items: center; justify-content: center; gap: 12px; font-size: 12px; color: var(--color-text2); margin-top: 12px; }
.cart-trust-line svg { width: 14px; height: 14px; }

/* Empty Cart */
.cart-empty {
  text-align: center;
  padding: 80px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.cart-empty svg { width: 80px; height: 80px; color: var(--color-border); }
.cart-empty h2 { font-size: 24px; }
.cart-empty p { font-size: 16px; color: var(--color-text2); max-width: 380px; }

/* ============================================
   CHECKOUT PAGE
   ============================================ */
.checkout-header {
  background: #fff;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
}
.checkout-progress {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 8px;
}
.checkout-step { display: flex; align-items: center; gap: 0; }
.step-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  border: 2px solid var(--color-border);
  color: var(--color-text2);
  transition: all var(--transition);
}
.step-circle.active { background: var(--color-primary); border-color: var(--color-primary); color: #fff; }
.step-circle.done { background: var(--color-success); border-color: var(--color-success); color: #fff; }
.step-label { font-size: 12px; color: var(--color-text2); margin-top: 4px; }
.step-connector { width: 60px; height: 2px; background: var(--color-border); margin: 0 8px; margin-bottom: 12px; }
.step-connector.done { background: var(--color-primary); }
.checkout-step-wrap { display: flex; flex-direction: column; align-items: center; }

.checkout-section { background: var(--color-bg); padding: 48px 0 80px; }
.checkout-layout { display: grid; grid-template-columns: 60% 40%; gap: 48px; align-items: start; }
.checkout-form-area {}
.form-section { margin-bottom: 32px; }
.form-section-title { font-family: var(--font-heading); font-size: 20px; margin-bottom: 20px; }
.form-row { display: flex; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; flex: 1; }
.form-group.full { flex: none; width: 100%; }
.form-label { font-size: 14px; font-weight: 600; color: var(--color-text2); }
.form-input, .form-select, .form-textarea {
  padding: 14px 16px;
  border-radius: var(--radius-btn);
  border: 1px solid var(--color-border);
  font-size: 15px;
  font-family: var(--font-body);
  color: var(--color-text);
  outline: none;
  background: var(--color-bg3);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(168,213,186,0.15);
}
.form-input.error { border-color: var(--color-error); }
.form-error { font-size: 13px; color: var(--color-error); }
.form-textarea { resize: vertical; min-height: 80px; }
.form-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236B6B6B' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; cursor: pointer; }
.form-checkbox { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; cursor: pointer; }
.form-checkbox input { width: 18px; height: 18px; accent-color: var(--color-primary); cursor: pointer; flex-shrink: 0; margin-top: 2px; }
.form-checkbox span { font-size: 14px; color: var(--color-text); line-height: 1.5; }

/* Shipping method cards */
.shipping-options, .payment-options { display: flex; flex-direction: column; gap: 12px; }
.option-card {
  border: 2px solid var(--color-border);
  border-radius: var(--radius-btn);
  padding: 16px 20px;
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.option-card:hover, .option-card.selected { border-color: var(--color-primary); background: rgba(168,213,186,0.06); }
.option-card input[type="radio"] { accent-color: var(--color-primary); width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; }
.option-card-body {}
.option-card-title { font-size: 15px; font-weight: 600; color: var(--color-heading); }
.option-card-desc { font-size: 13px; color: var(--color-text2); margin-top: 2px; }

/* Payment fields */
.card-fields { display: none; padding: 16px; background: var(--color-bg2); border-radius: var(--radius-btn); margin-top: 8px; }
.card-fields.show { display: block; }

/* Checkout summary sidebar */
.checkout-summary-card {
  background: var(--color-bg2);
  border-radius: var(--radius-card);
  padding: 32px;
  position: sticky;
  top: 100px;
}
.checkout-summary-card h3 { font-size: 18px; margin-bottom: 20px; }
.checkout-item-row { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.checkout-item-thumb { width: 60px; height: 60px; border-radius: 8px; object-fit: cover; flex-shrink: 0; background: var(--color-border); filter: brightness(1.02) saturate(0.9); }
.checkout-item-info { flex: 1; }
.checkout-item-name { font-size: 13px; font-weight: 600; color: var(--color-heading); line-height: 1.3; }
.checkout-item-qty { font-size: 12px; color: var(--color-text2); }
.checkout-item-price { font-family: var(--font-price); font-size: 14px; }

/* Toast */
.toast {
  position: fixed;
  top: 100px;
  left: 50%;
  transform: translateX(-50%) translateY(-20px);
  z-index: 2000;
  background: var(--color-success);
  color: #fff;
  padding: 14px 24px;
  border-radius: var(--radius-btn);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast svg { width: 18px; height: 18px; }

/* ============================================
   ORDER CONFIRMATION
   ============================================ */
.confirm-hero { background: var(--color-bg2); padding: 80px 0; text-align: center; }
.confirm-icon { color: var(--color-primary); margin: 0 auto 24px; }
.confirm-icon svg { width: 80px; height: 80px; }
.confirm-hero h1 { margin-bottom: 16px; }
.confirm-hero p { font-size: 16px; color: var(--color-text2); max-width: 560px; margin: 0 auto; line-height: 1.7; }
.confirm-order-card {
  background: var(--color-bg3);
  max-width: 700px;
  margin: 64px auto;
  border-radius: var(--radius-card);
  padding: 40px;
  box-shadow: var(--shadow-card);
}
.confirm-meta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 32px; }
.confirm-meta-item {}
.confirm-meta-label { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; color: var(--color-text2); margin-bottom: 4px; }
.confirm-meta-value { font-size: 15px; font-weight: 600; color: var(--color-heading); }
.confirm-btns { display: flex; justify-content: center; gap: 16px; padding-bottom: 64px; flex-wrap: wrap; }

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-hero { background: var(--color-bg2); padding: 80px 0; text-align: center; }
.about-story-section { background: var(--color-bg); padding: 80px 0; }
.about-story-row { display: grid; grid-template-columns: 45% 55%; gap: 80px; align-items: center; margin-bottom: 80px; }
.about-story-row.reverse { grid-template-columns: 55% 45%; }
.about-story-row.reverse .about-story-content { order: -1; }
.about-story-img { border-radius: 20px; width: 100%; aspect-ratio: 4/3; object-fit: cover; filter: brightness(1.02) saturate(0.9); }
.about-story-content h3 { font-size: clamp(1.3rem, 2.5vw, 1.75rem); margin-bottom: 20px; }
.about-story-content p { font-size: 16px; line-height: 1.8; color: var(--color-text); margin-bottom: 16px; }
.values-section { background: var(--color-bg2); padding: 80px 0; }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.value-card { text-align: center; padding: 32px 20px; background: var(--color-bg3); border-radius: var(--radius-card); box-shadow: var(--shadow-card); }
.value-icon-wrap { width: 72px; height: 72px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.value-icon-wrap svg { width: 32px; height: 32px; }
.value-card h4 { font-size: 18px; margin-bottom: 10px; }
.value-card p { font-size: 14px; color: var(--color-text2); line-height: 1.6; }
.team-section { background: var(--color-bg); padding: 80px 0; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.team-card { background: var(--color-bg3); border-radius: var(--radius-card); padding: 40px 32px; text-align: center; box-shadow: var(--shadow-card); }
.team-photo { width: 160px; height: 160px; border-radius: 50%; object-fit: cover; border: 3px solid var(--color-primary); margin: 0 auto 20px; filter: brightness(1.02) saturate(0.85); }
.team-name { font-family: var(--font-heading); font-size: 20px; font-weight: 500; margin-bottom: 6px; }
.team-role { font-size: 14px; color: var(--color-accent); margin-bottom: 12px; }
.team-bio { font-size: 14px; color: var(--color-text2); line-height: 1.6; }
.stats-section { background: var(--color-bg2); padding: 80px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
.stat-block {}
.stat-number { font-family: var(--font-price); font-size: 40px; font-weight: 600; color: var(--color-primary); margin-bottom: 8px; }
.stat-label { font-size: 14px; color: var(--color-text2); }

/* ============================================
   METHOD PAGE
   ============================================ */
.method-hero { background: var(--color-bg2); padding: 80px 0; text-align: center; }
.timeline-section { background: var(--color-bg); padding: 80px 0; }
.timeline { position: relative; }
.timeline::before { content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 2px; background: var(--color-primary); transform: translateX(-50%); }
.timeline-item { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; margin-bottom: 72px; position: relative; }
.timeline-item::before { content: ''; position: absolute; left: 50%; top: 50%; width: 16px; height: 16px; border-radius: 50%; background: var(--color-primary); transform: translate(-50%, -50%); border: 3px solid var(--color-bg); box-shadow: 0 0 0 2px var(--color-primary); z-index: 1; }
.timeline-item.right .timeline-content { order: 2; text-align: left; }
.timeline-item.right .timeline-image { order: 1; }
.timeline-item.left .timeline-content { order: 1; text-align: right; }
.timeline-item.left .timeline-image { order: 2; }
.timeline-image img { border-radius: 16px; width: 100%; aspect-ratio: 4/3; object-fit: cover; filter: brightness(1.02) saturate(0.9); }
.timeline-content {}
.timeline-step-num { font-family: var(--font-price); font-size: 48px; color: rgba(168,213,186,0.3); font-weight: 700; line-height: 1; margin-bottom: 8px; }
.timeline-content h3 { font-size: 22px; margin-bottom: 12px; }
.timeline-content p { font-size: 15px; color: var(--color-text); line-height: 1.75; }
.certs-section { background: var(--color-bg2); padding: 80px 0; }
.certs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.cert-card { background: var(--color-bg3); border-radius: var(--radius-card); padding: 40px; text-align: center; box-shadow: var(--shadow-card); }
.cert-icon { width: 80px; height: 80px; border-radius: 50%; margin: 0 auto 20px; display: flex; align-items: center; justify-content: center; }
.cert-icon svg { width: 36px; height: 36px; }
.cert-card h4 { font-size: 18px; margin-bottom: 10px; }
.cert-card p { font-size: 14px; color: var(--color-text2); line-height: 1.6; }
.faq-section { background: var(--color-bg); padding: 80px 0; }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid var(--color-border); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  cursor: pointer;
  gap: 16px;
}
.faq-question h4 { font-size: 17px; font-weight: 500; flex: 1; }
.faq-chevron { flex-shrink: 0; color: var(--color-text2); transition: transform 0.3s ease; }
.faq-chevron svg { width: 20px; height: 20px; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer p { font-size: 15px; color: var(--color-text2); line-height: 1.7; padding-bottom: 20px; }

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-section { background: var(--color-bg); padding: 80px 0; }
.contact-layout { display: grid; grid-template-columns: 40% 60%; gap: 64px; align-items: start; }
.contact-info-blocks { display: flex; flex-direction: column; gap: 32px; margin-bottom: 32px; }
.contact-info-block { display: flex; gap: 20px; align-items: flex-start; }
.contact-info-icon { width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-info-icon svg { width: 22px; height: 22px; }
.contact-info-text h4 { font-size: 16px; font-weight: 600; margin-bottom: 4px; }
.contact-info-text p { font-size: 14px; color: var(--color-text2); line-height: 1.6; }
.hours-table { margin-top: 16px; }
.hours-row { display: flex; justify-content: space-between; font-size: 14px; padding: 8px 0; border-bottom: 1px solid var(--color-border); }
.hours-row:last-child { border-bottom: none; }
.contact-form-card { background: var(--color-bg3); border-radius: var(--radius-card); padding: 40px; box-shadow: var(--shadow-hover); }
.contact-form-card h3 { font-family: var(--font-heading); font-size: 24px; font-weight: 500; margin-bottom: 24px; }
.contact-success { display: none; text-align: center; padding: 40px 0; }
.contact-success.show { display: block; }
.contact-success svg { width: 48px; height: 48px; color: var(--color-primary); margin: 0 auto 16px; }
.contact-success h4 { font-size: 20px; margin-bottom: 8px; }
.contact-success p { font-size: 15px; color: var(--color-text2); }
.contact-faq-section { background: var(--color-bg2); padding: 64px 0; }
.contact-faq-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.contact-faq-card { background: var(--color-bg3); border-radius: var(--radius-card); padding: 28px; box-shadow: var(--shadow-card); transition: transform var(--transition), box-shadow var(--transition); }
.contact-faq-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.contact-faq-icon { width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.contact-faq-icon svg { width: 22px; height: 22px; }
.contact-faq-card h4 { font-size: 16px; font-weight: 600; margin-bottom: 8px; }
.contact-faq-card p { font-size: 14px; color: var(--color-text2); line-height: 1.5; margin-bottom: 12px; }

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-hero { background: var(--color-bg2); padding: 64px 0; text-align: center; }
.legal-content-section { background: var(--color-bg); padding: 64px 0 80px; }
.legal-body { max-width: 860px; margin: 0 auto; }
.legal-body h2 { font-size: 22px; font-weight: 600; margin-top: 40px; margin-bottom: 16px; color: var(--color-heading); }
.legal-body h3 { font-size: 17px; font-weight: 600; margin-top: 24px; margin-bottom: 10px; color: var(--color-heading); }
.legal-body p { font-size: 15px; line-height: 1.8; color: var(--color-text); margin-bottom: 14px; }
.legal-body ul, .legal-body ol { padding-left: 20px; margin-bottom: 14px; }
.legal-body li { font-size: 15px; line-height: 1.75; color: var(--color-text); margin-bottom: 6px; }
.legal-body a { color: var(--color-primary); text-decoration: underline; }
.legal-meta { background: var(--color-bg2); border-radius: var(--radius-btn); padding: 16px 20px; margin-bottom: 32px; font-size: 14px; color: var(--color-text2); }

/* ============================================
   PRODUCT INFO BAR
   ============================================ */
.product-info-bar { background: var(--color-bg); padding: 48px 0; }
.info-bar-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; text-align: center; }
.info-bar-item {}
.info-bar-icon { margin: 0 auto 12px; color: var(--color-primary); }
.info-bar-icon svg { width: 32px; height: 32px; }
.info-bar-item strong { display: block; font-size: 16px; margin-bottom: 4px; }
.info-bar-item span { font-size: 13px; color: var(--color-text2); }

/* ============================================
   SCROLL REVEAL ANIMATION
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================
   UTILITY
   ============================================ */
.text-center { text-align: center; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mt-64 { margin-top: 64px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.hidden { display: none !important; }
.color-primary { color: var(--color-primary); }
.color-success { color: var(--color-success); }

/* Checkout-only header */
.checkout-header-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
