/* ==========================================================================
   Yoga Love — main.css
   Premium wellness brand design system
   Palette: White / Soft Green / Light Beige / Lavender / Dark Charcoal
   ========================================================================== */

/* ---------- Design tokens ---------- */
:root {
  --white: #ffffff;
  --green: #8db18c;
  --green-dark: #6f9470;
  --green-soft: #eef4ec;
  --beige: #f5f0e8;
  --beige-deep: #ece4d6;
  --lavender: #b9a6d6;
  --lavender-soft: #f1ecf8;
  --charcoal: #2d2d2d;
  --charcoal-soft: #5a5a5a;
  --line: #e7e1d6;
  --gold: #d9b98a;

  --grad-main: linear-gradient(135deg, #eef4ec 0%, #f5f0e8 50%, #f1ecf8 100%);
  --grad-cta: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  --grad-lav: linear-gradient(135deg, #b9a6d6 0%, #8db18c 100%);

  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow-soft: 0 10px 30px rgba(45, 45, 45, .08);
  --shadow-lift: 0 18px 45px rgba(45, 45, 45, .14);
  --glass: rgba(255, 255, 255, .72);

  --font-head: "Playfair Display", Georgia, serif;
  --font-body: "Jost", "Segoe UI", sans-serif;

  --header-h: 76px;
  --ease: cubic-bezier(.22, .68, .35, 1);
}

/* Dark mode tokens */
[data-theme="dark"] {
  --white: #232323;
  --charcoal: #f0ede6;
  --charcoal-soft: #c6c2b8;
  --beige: #2b2a28;
  --beige-deep: #343230;
  --green-soft: #2c332b;
  --lavender-soft: #322e3a;
  --line: #43403a;
  --glass: rgba(35, 35, 35, .78);
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, .35);
  --shadow-lift: 0 18px 45px rgba(0, 0, 0, .45);
  --grad-main: linear-gradient(135deg, #262b25 0%, #2b2a28 50%, #2c2833 100%);
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.65;
  font-size: 16.5px;
  overflow-x: hidden;
  transition: background .35s var(--ease), color .35s var(--ease);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select, textarea { font-family: inherit; font-size: 1rem; color: var(--charcoal); }
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 600; line-height: 1.2; }
::selection { background: var(--lavender); color: #fff; }

:focus-visible { outline: 3px solid var(--green); outline-offset: 3px; border-radius: 4px; }

.container { width: min(1200px, 92%); margin-inline: auto; }
.section { padding: 96px 0; }
.section.tight { padding: 64px 0; }

.eyebrow {
  display: inline-block; font-size: .8rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--green-dark); font-weight: 600; margin-bottom: 14px;
}
[data-theme="dark"] .eyebrow { color: var(--green); }
[data-theme="dark"] .hero h1 { color: #f0ede6; }
[data-theme="dark"] .hero h1 em { color: var(--green); }
.section-title { font-size: clamp(1.9rem, 3.4vw, 2.7rem); margin-bottom: 16px; }
.section-sub { color: var(--charcoal-soft); max-width: 640px; font-size: 1.05rem; }
.text-center { text-align: center; }
.text-center .section-sub { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 34px; border-radius: 999px; font-weight: 500; font-size: 1rem;
  letter-spacing: .02em; transition: all .3s var(--ease); border: 2px solid transparent;
}
.btn-primary { background: var(--grad-cta); color: #fff; box-shadow: 0 8px 22px rgba(111, 148, 112, .35); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(111, 148, 112, .45); }
.btn-outline { border-color: var(--charcoal); color: var(--charcoal); background: transparent; }
.btn-outline:hover { background: var(--charcoal); color: var(--white); transform: translateY(-3px); }
.btn-light { background: var(--white); color: var(--charcoal); box-shadow: var(--shadow-soft); }
.btn-light:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); }
.btn-block { width: 100%; justify-content: center; }
.btn[disabled] { opacity: .55; pointer-events: none; }

/* ---------- Announcement bar ---------- */
.announcement-bar {
  background: var(--charcoal); color: #f3efe7; text-align: center;
  font-size: .82rem; letter-spacing: .08em; padding: 9px 16px;
}
[data-theme="dark"] .announcement-bar { background: #191919; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 900;
  background: var(--glass); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent; transition: all .3s var(--ease);
}
.site-header.scrolled { border-bottom-color: var(--line); box-shadow: 0 6px 24px rgba(45,45,45,.07); }
.header-main { display: flex; align-items: center; gap: 26px; height: var(--header-h); }

.logo { font-family: var(--font-head); font-size: 1.65rem; font-weight: 700; letter-spacing: .01em; white-space: nowrap; }
.logo span { color: var(--green-dark); font-style: italic; }
.logo .lotus { color: var(--lavender); margin-right: 6px; }

.main-nav { margin-left: 12px; }
.main-nav > ul { display: flex; align-items: center; gap: 6px; }
.main-nav > ul > li > a {
  display: inline-flex; align-items: center; gap: 7px; padding: 12px 16px;
  font-weight: 500; font-size: .98rem; border-radius: 999px; transition: all .25s var(--ease);
}
.main-nav > ul > li > a:hover, .main-nav > ul > li > a.active { background: var(--green-soft); color: var(--green-dark); }
[data-theme="dark"] .main-nav > ul > li > a:hover,
[data-theme="dark"] .main-nav > ul > li > a.active { color: var(--green); }

/* Mega menu */
.has-mega { position: static; }
.mega-menu {
  position: absolute; left: 0; right: 0; top: 100%;
  background: var(--white); border-top: 1px solid var(--line);
  box-shadow: var(--shadow-lift); padding: 38px 0 44px;
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: all .3s var(--ease);
}
.has-mega:hover .mega-menu, .has-mega:focus-within .mega-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.mega-grid { display: grid; grid-template-columns: repeat(4, 1fr) 1.3fr; gap: 36px; }
.mega-col h4 { font-family: var(--font-body); font-size: .8rem; letter-spacing: .18em; text-transform: uppercase; color: var(--charcoal-soft); margin-bottom: 16px; }
.mega-col ul li { margin-bottom: 4px; }
.mega-col ul a { display: block; padding: 7px 0; color: var(--charcoal-soft); transition: color .2s, transform .2s; }
.mega-col ul a:hover { color: var(--green-dark); transform: translateX(5px); }
.mega-feature { border-radius: var(--radius); overflow: hidden; position: relative; min-height: 210px; }
.mega-feature img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.mega-feature .mega-feature-text {
  position: relative; z-index: 2; height: 100%; display: flex; flex-direction: column; justify-content: flex-end;
  padding: 22px; background: linear-gradient(to top, rgba(30,30,30,.55), transparent 60%); color: #fff;
}
.mega-feature-text strong { font-family: var(--font-head); font-size: 1.25rem; }
.mega-feature-text span { font-size: .85rem; opacity: .9; }

/* Header actions */
.header-actions { margin-left: auto; display: flex; align-items: center; gap: 6px; }
.icon-btn {
  position: relative; width: 44px; height: 44px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.05rem; transition: all .25s var(--ease);
}
.icon-btn:hover { background: var(--green-soft); color: var(--green-dark); transform: translateY(-2px); }
.cart-count {
  position: absolute; top: 2px; right: 0; min-width: 19px; height: 19px; padding: 0 5px;
  background: var(--green-dark); color: #fff; font-size: .68rem; font-weight: 600;
  border-radius: 999px; display: flex; align-items: center; justify-content: center;
}
.nav-toggle { display: none; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: min(88vh, 820px); display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(245,240,232,.94) 0%, rgba(245,240,232,.78) 38%, rgba(245,240,232,.08) 68%);
}
[data-theme="dark"] .hero-bg::after { background: linear-gradient(100deg, rgba(35,35,35,.94) 0%, rgba(35,35,35,.75) 38%, rgba(35,35,35,.1) 68%); }
.hero-content { position: relative; z-index: 2; max-width: 620px; padding: 80px 0; }
.hero h1 { font-size: clamp(2.6rem, 5.6vw, 4.3rem); margin-bottom: 22px; }
.hero h1 em { color: var(--green-dark); }
.hero p { font-size: 1.14rem; color: var(--charcoal-soft); margin-bottom: 36px; max-width: 520px; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 38px; margin-top: 54px; flex-wrap: wrap; }
.hero-stat strong { display: block; font-family: var(--font-head); font-size: 1.7rem; color: var(--green-dark); }
.hero-stat span { font-size: .85rem; color: var(--charcoal-soft); letter-spacing: .04em; }

/* Floating glass card */
.hero-card {
  position: absolute; z-index: 3; right: 6%; bottom: 9%;
  background: var(--glass); backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.55); border-radius: var(--radius);
  padding: 18px 24px; display: flex; align-items: center; gap: 16px; box-shadow: var(--shadow-soft);
  animation: floaty 5s ease-in-out infinite;
}
.hero-card img { width: 58px; height: 58px; border-radius: 12px; object-fit: cover; }
.hero-card .stars { color: var(--gold); font-size: .8rem; }
.hero-card small { color: var(--charcoal-soft); }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* ---------- Trust bar ---------- */
.trust-bar { background: var(--beige); padding: 30px 0; }
.trust-bar .container { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 13px; font-size: .93rem; font-weight: 500; }
.trust-item i { font-size: 1.35rem; color: var(--green-dark); }
[data-theme="dark"] .trust-item i { color: var(--green); }

/* ---------- Feature cards (Why choose) ---------- */
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }

.feature-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 38px 30px; transition: all .35s var(--ease);
}
.feature-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lift); border-color: transparent; }
.feature-icon {
  width: 62px; height: 62px; border-radius: 18px; display: flex; align-items: center; justify-content: center;
  font-size: 1.45rem; margin-bottom: 22px; color: #fff; background: var(--grad-lav); box-shadow: 0 8px 18px rgba(185,166,214,.35);
}
.feature-card:nth-child(even) .feature-icon { background: var(--grad-cta); box-shadow: 0 8px 18px rgba(111,148,112,.35); }
.feature-card h3 { font-size: 1.28rem; margin-bottom: 10px; }
.feature-card p { color: var(--charcoal-soft); font-size: .96rem; }

/* ---------- Product cards ---------- */
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.product-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); transition: all .35s var(--ease); position: relative; display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lift); }
.product-media { position: relative; aspect-ratio: 1; overflow: hidden; background: var(--beige); }
.product-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.product-card:hover .product-media img { transform: scale(1.07); }
.badge-sale {
  position: absolute; top: 14px; left: 14px; z-index: 2; background: var(--lavender); color: #fff;
  font-size: .72rem; font-weight: 600; letter-spacing: .08em; padding: 6px 13px; border-radius: 999px; text-transform: uppercase;
}
.badge-tag { background: var(--green-dark); }
.product-actions {
  position: absolute; left: 14px; right: 14px; bottom: 14px; display: flex; gap: 10px;
  opacity: 0; transform: translateY(12px); transition: all .3s var(--ease);
}
.product-card:hover .product-actions, .product-card:focus-within .product-actions { opacity: 1; transform: translateY(0); }
.product-actions .btn { padding: 11px 18px; font-size: .88rem; flex: 1; justify-content: center; }
.product-actions .icon-btn { background: var(--white); box-shadow: var(--shadow-soft); flex: 0 0 44px; border-radius: 12px; }
.product-info { padding: 20px 22px 24px; display: flex; flex-direction: column; gap: 7px; flex: 1; }
.product-cat { font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; color: var(--lavender); font-weight: 600; }
.product-name { font-family: var(--font-head); font-size: 1.16rem; }
.product-name a:hover { color: var(--green-dark); }
.stars { color: var(--gold); font-size: .82rem; letter-spacing: 2px; }
.stars small { color: var(--charcoal-soft); letter-spacing: 0; margin-left: 6px; }
.price-row { display: flex; align-items: baseline; gap: 11px; margin-top: auto; }
.price { font-weight: 600; font-size: 1.14rem; color: var(--green-dark); }
.price-old { color: var(--charcoal-soft); text-decoration: line-through; font-size: .92rem; }

/* ---------- Categories ---------- */
.cat-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/5; display: block; }
.cat-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.cat-card:hover img { transform: scale(1.06); }
.cat-card .cat-label {
  position: absolute; inset: auto 18px 18px 18px; background: var(--glass); backdrop-filter: blur(12px);
  border-radius: var(--radius); padding: 16px 20px; display: flex; align-items: center; justify-content: space-between;
  box-shadow: var(--shadow-soft); transition: all .3s var(--ease);
}
.cat-card:hover .cat-label { background: var(--green-dark); color: #fff; }
.cat-label strong { font-family: var(--font-head); font-size: 1.12rem; display: block; }
.cat-label small { color: inherit; opacity: .75; }

/* ---------- Split / benefits ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.split-media { position: relative; }
.split-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lift); }
.split-media .float-badge {
  position: absolute; bottom: -26px; left: -26px; background: var(--white); border-radius: var(--radius);
  padding: 20px 26px; box-shadow: var(--shadow-lift); display: flex; gap: 14px; align-items: center;
}
.float-badge i { font-size: 1.7rem; color: var(--green-dark); }
.float-badge strong { display: block; font-family: var(--font-head); font-size: 1.05rem; }
.float-badge small { color: var(--charcoal-soft); }
.benefit-list li { display: flex; gap: 15px; margin-bottom: 20px; }
.benefit-list i { color: var(--green-dark); font-size: 1.15rem; margin-top: 4px; }
.benefit-list strong { display: block; margin-bottom: 2px; }
.benefit-list p { color: var(--charcoal-soft); font-size: .95rem; }

/* ---------- Steps (How it works) ---------- */
.steps { counter-reset: step; }
.step-card { text-align: center; padding: 40px 26px; position: relative; }
.step-num {
  counter-increment: step; width: 74px; height: 74px; margin: 0 auto 22px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-family: var(--font-head);
  font-size: 1.7rem; color: #fff; background: var(--grad-lav); box-shadow: 0 10px 24px rgba(185,166,214,.4);
}
.step-card:nth-child(2) .step-num { background: var(--grad-cta); box-shadow: 0 10px 24px rgba(111,148,112,.4); }
.step-num::before { content: counter(step, decimal-leading-zero); }
.step-card h3 { font-size: 1.22rem; margin-bottom: 10px; }
.step-card p { color: var(--charcoal-soft); font-size: .95rem; }

/* ---------- Testimonials ---------- */
.testimonials { background: var(--grad-main); }
.testi-card {
  background: var(--white); border-radius: var(--radius); padding: 36px 32px;
  box-shadow: var(--shadow-soft); display: flex; flex-direction: column; gap: 18px; height: 100%;
}
.testi-card .quote-mark { font-family: var(--font-head); font-size: 3rem; line-height: .6; color: var(--lavender); }
.testi-card p { color: var(--charcoal-soft); font-size: .98rem; flex: 1; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.avatar {
  width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 600; color: #fff; background: var(--grad-lav); font-size: 1rem; flex: 0 0 50px;
}
.testi-card:nth-child(2) .avatar { background: var(--grad-cta); }
.testi-author strong { display: block; font-size: .95rem; }
.testi-author small { color: var(--charcoal-soft); }
.demo-note { font-size: .8rem; color: var(--charcoal-soft); font-style: italic; }

/* ---------- Instagram gallery ---------- */
.insta-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.insta-grid a { position: relative; border-radius: var(--radius-sm); overflow: hidden; aspect-ratio: 1; display: block; }
.insta-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.insta-grid a::after {
  content: ""; font-family: "Font Awesome 6 Brands"; position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center; font-size: 1.6rem; color: #fff;
  background: rgba(111,148,112,.55); opacity: 0; transition: opacity .3s;
}
.insta-grid a:hover::after { opacity: 1; }
.insta-grid a:hover img { transform: scale(1.08); }

/* ---------- Blog ---------- */
.blog-card { background: var(--white); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); transition: all .35s var(--ease); display: flex; flex-direction: column; }
.blog-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lift); }
.blog-media { aspect-ratio: 3/2; overflow: hidden; }
.blog-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.blog-card:hover .blog-media img { transform: scale(1.06); }
.blog-body { padding: 26px 28px 30px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.blog-meta { display: flex; gap: 16px; font-size: .82rem; color: var(--charcoal-soft); }
.blog-meta i { margin-right: 6px; color: var(--green-dark); }
.blog-body h3 { font-size: 1.3rem; }
.blog-body h3 a:hover { color: var(--green-dark); }
.blog-body p { color: var(--charcoal-soft); font-size: .95rem; flex: 1; }
.read-more { font-weight: 600; color: var(--green-dark); display: inline-flex; align-items: center; gap: 8px; }
.read-more:hover { gap: 13px; }
.read-more { transition: gap .25s var(--ease); }

/* ---------- Newsletter ---------- */
.newsletter {
  background: var(--grad-lav); border-radius: var(--radius-lg); padding: 70px 8%;
  color: #fff; position: relative; overflow: hidden;
}
.newsletter::before, .newsletter::after {
  content: ""; position: absolute; border-radius: 50%; background: rgba(255,255,255,.14);
}
.newsletter::before { width: 300px; height: 300px; top: -120px; right: -80px; }
.newsletter::after { width: 200px; height: 200px; bottom: -90px; left: -50px; }
.newsletter h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); margin-bottom: 12px; }
.newsletter p { opacity: .92; margin-bottom: 30px; max-width: 520px; }
.newsletter-form { display: flex; gap: 12px; max-width: 520px; position: relative; z-index: 2; flex-wrap: wrap; }
.newsletter-form input {
  flex: 1; min-width: 220px; padding: 16px 24px; border-radius: 999px; border: none; font-size: 1rem;
}
.newsletter-form .btn { background: var(--charcoal); color: #fff; }
.newsletter-form .btn:hover { transform: translateY(-3px); box-shadow: 0 12px 26px rgba(0,0,0,.25); }
.form-note { font-size: .8rem; opacity: .85; margin-top: 14px; position: relative; z-index: 2; }
.form-error { color: #fff; background: rgba(200,70,70,.85); padding: 4px 12px; border-radius: 8px; font-size: .85rem; margin-top: 10px; display: none; position: relative; z-index: 2; }
.form-success { color: #fff; font-weight: 600; margin-top: 12px; display: none; position: relative; z-index: 2; }

/* ---------- FAQ accordion ---------- */
.accordion { max-width: 820px; margin-inline: auto; }
.acc-item { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: 14px; overflow: hidden; }
.acc-btn {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 18px;
  padding: 22px 28px; font-size: 1.05rem; font-weight: 600; text-align: left; font-family: var(--font-body);
}
.acc-btn i { color: var(--green-dark); transition: transform .3s var(--ease); flex: 0 0 auto; }
.acc-item.open .acc-btn i { transform: rotate(180deg); }
.acc-panel { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.acc-panel-inner { padding: 0 28px 24px; color: var(--charcoal-soft); }

.bg-beige { background: var(--beige); }
.bg-lavender { background: var(--lavender-soft); }

/* ---------- Page hero (sub pages) ---------- */
.page-hero { background: var(--grad-main); padding: 84px 0 70px; text-align: center; }
.page-hero h1 { font-size: clamp(2.1rem, 4.4vw, 3.2rem); margin-bottom: 14px; }
.page-hero p { color: var(--charcoal-soft); max-width: 640px; margin-inline: auto; }
.breadcrumb { display: flex; justify-content: center; gap: 10px; font-size: .86rem; margin-top: 20px; color: var(--charcoal-soft); flex-wrap: wrap; }
.breadcrumb a:hover { color: var(--green-dark); }
.breadcrumb .sep { opacity: .5; }

/* ---------- Shop ---------- */
.shop-layout { display: grid; grid-template-columns: 250px 1fr; gap: 44px; align-items: start; }
.shop-filters { position: sticky; top: calc(var(--header-h) + 24px); background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; }
.filter-group { margin-bottom: 28px; }
.filter-group:last-child { margin-bottom: 0; }
.filter-group h4 { font-family: var(--font-body); font-size: .8rem; letter-spacing: .16em; text-transform: uppercase; color: var(--charcoal-soft); margin-bottom: 14px; }
.filter-check { display: flex; align-items: center; gap: 10px; padding: 6px 0; cursor: pointer; color: var(--charcoal-soft); }
.filter-check input { accent-color: var(--green-dark); width: 17px; height: 17px; cursor: pointer; }
.shop-toolbar { display: flex; justify-content: space-between; align-items: center; gap: 16px; margin-bottom: 28px; flex-wrap: wrap; }
.shop-toolbar .result-count { color: var(--charcoal-soft); font-size: .93rem; }
.sort-select {
  padding: 11px 18px; border-radius: 999px; border: 1px solid var(--line); background: var(--white);
}
.shop-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.filters-toggle { display: none; }

/* ---------- Product detail ---------- */
.pd-layout { display: grid; grid-template-columns: 1.05fr 1fr; gap: 60px; align-items: start; }
.pd-gallery { position: sticky; top: calc(var(--header-h) + 24px); }
.pd-main-img { border-radius: var(--radius-lg); overflow: hidden; position: relative; cursor: zoom-in; background: var(--beige); aspect-ratio: 1; }
.pd-main-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s var(--ease); }
.pd-main-img.zoomed img { transform: scale(1.9); }
.pd-thumbs { display: flex; gap: 14px; margin-top: 16px; }
.pd-thumbs button { width: 84px; height: 84px; border-radius: var(--radius-sm); overflow: hidden; border: 2px solid transparent; transition: border .25s; padding: 0; }
.pd-thumbs button.active, .pd-thumbs button:hover { border-color: var(--green-dark); }
.pd-thumbs img { width: 100%; height: 100%; object-fit: cover; }
.pd-info .product-cat { margin-bottom: 8px; display: block; }
.pd-info h1 { font-size: clamp(1.8rem, 3.4vw, 2.5rem); margin-bottom: 12px; }
.pd-sku { font-size: .84rem; color: var(--charcoal-soft); margin-bottom: 16px; }
.pd-price-row { display: flex; align-items: baseline; gap: 14px; margin: 18px 0 6px; }
.pd-price { font-size: 2rem; font-weight: 600; color: var(--green-dark); font-family: var(--font-head); }
.pd-price-old { font-size: 1.15rem; color: var(--charcoal-soft); text-decoration: line-through; }
.pd-save { background: var(--lavender-soft); color: #7a63a8; font-size: .8rem; font-weight: 600; padding: 5px 12px; border-radius: 999px; }
.pd-desc { color: var(--charcoal-soft); margin: 18px 0 26px; }
.stock-note { display: inline-flex; align-items: center; gap: 8px; font-size: .9rem; color: var(--green-dark); font-weight: 500; margin-bottom: 22px; }
.stock-note i { font-size: .6rem; }
.qty-row { display: flex; gap: 16px; align-items: center; margin-bottom: 18px; flex-wrap: wrap; }
.qty-ctrl { display: inline-flex; align-items: center; border: 1.5px solid var(--line); border-radius: 999px; overflow: hidden; }
.qty-ctrl button { width: 46px; height: 50px; font-size: 1.1rem; transition: background .2s; }
.qty-ctrl button:hover { background: var(--green-soft); }
.qty-ctrl input { width: 54px; text-align: center; border: none; background: transparent; font-weight: 600; -moz-appearance: textfield; }
.qty-ctrl input::-webkit-outer-spin-button, .qty-ctrl input::-webkit-inner-spin-button { -webkit-appearance: none; }
.pd-meta-list { border-top: 1px solid var(--line); margin-top: 30px; padding-top: 24px; display: grid; gap: 10px; font-size: .92rem; color: var(--charcoal-soft); }
.pd-meta-list i { color: var(--green-dark); width: 22px; }

/* Tabs */
.tabs { margin-top: 80px; }
.tab-btns { display: flex; gap: 8px; border-bottom: 1px solid var(--line); flex-wrap: wrap; }
.tab-btn { padding: 15px 26px; font-weight: 600; color: var(--charcoal-soft); border-bottom: 3px solid transparent; margin-bottom: -1px; transition: all .25s; }
.tab-btn.active { color: var(--green-dark); border-bottom-color: var(--green-dark); }
.tab-panel { display: none; padding: 36px 4px; }
.tab-panel.active { display: block; animation: fadeUp .45s var(--ease); }
.spec-table { width: 100%; border-collapse: collapse; max-width: 640px; }
.spec-table th, .spec-table td { text-align: left; padding: 13px 16px; border-bottom: 1px solid var(--line); font-size: .95rem; }
.spec-table th { color: var(--charcoal-soft); font-weight: 500; width: 42%; }
.check-list li { display: flex; gap: 12px; margin-bottom: 12px; color: var(--charcoal-soft); }
.check-list i { color: var(--green-dark); margin-top: 5px; }

/* Reviews */
.review-card { border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 28px; margin-bottom: 18px; background: var(--white); }
.review-head { display: flex; justify-content: space-between; gap: 14px; margin-bottom: 10px; flex-wrap: wrap; }
.review-card p { color: var(--charcoal-soft); font-size: .95rem; }
.rating-summary { display: flex; align-items: center; gap: 22px; margin-bottom: 30px; flex-wrap: wrap; }
.rating-big { font-family: var(--font-head); font-size: 3.4rem; color: var(--green-dark); }

/* ---------- Cart drawer ---------- */
.overlay {
  position: fixed; inset: 0; background: rgba(35,35,35,.45); backdrop-filter: blur(3px);
  opacity: 0; visibility: hidden; transition: all .3s var(--ease); z-index: 950;
}
.overlay.show { opacity: 1; visibility: visible; }
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(430px, 94vw); background: var(--white);
  z-index: 960; transform: translateX(105%); transition: transform .45s var(--ease);
  display: flex; flex-direction: column; box-shadow: -14px 0 44px rgba(0,0,0,.14);
}
.cart-drawer.show { transform: translateX(0); }
.cart-drawer-head { display: flex; justify-content: space-between; align-items: center; padding: 24px 28px; border-bottom: 1px solid var(--line); }
.cart-drawer-head h3 { font-size: 1.35rem; }
.cart-items { flex: 1; overflow-y: auto; padding: 22px 28px; }
.cart-item { display: grid; grid-template-columns: 78px 1fr auto; gap: 16px; padding-bottom: 20px; margin-bottom: 20px; border-bottom: 1px solid var(--line); }
.cart-item img { width: 78px; height: 78px; object-fit: cover; border-radius: var(--radius-sm); }
.cart-item h4 { font-size: .98rem; margin-bottom: 4px; }
.cart-item .ci-price { color: var(--green-dark); font-weight: 600; font-size: .92rem; }
.ci-qty { display: inline-flex; align-items: center; gap: 4px; border: 1px solid var(--line); border-radius: 999px; margin-top: 9px; }
.ci-qty button { width: 28px; height: 28px; font-size: .85rem; }
.ci-qty span { min-width: 26px; text-align: center; font-weight: 600; font-size: .9rem; }
.ci-remove { color: var(--charcoal-soft); font-size: .85rem; align-self: start; }
.ci-remove:hover { color: #c05252; }
.cart-empty { text-align: center; padding: 60px 20px; color: var(--charcoal-soft); }
.cart-empty i { font-size: 2.6rem; color: var(--lavender); margin-bottom: 18px; display: block; }
.cart-drawer-foot { border-top: 1px solid var(--line); padding: 22px 28px 28px; }
.cart-line { display: flex; justify-content: space-between; margin-bottom: 9px; font-size: .95rem; color: var(--charcoal-soft); }
.cart-line.total { font-size: 1.12rem; font-weight: 700; color: var(--charcoal); margin-top: 12px; }
.free-ship-note { background: var(--green-soft); color: var(--green-dark); border-radius: var(--radius-sm); padding: 10px 16px; font-size: .85rem; margin-bottom: 16px; text-align: center; }
[data-theme="dark"] .free-ship-note { color: var(--green); }

/* ---------- Search overlay ---------- */
.search-panel {
  position: fixed; top: 0; left: 0; right: 0; background: var(--white); z-index: 960;
  padding: 40px 0 46px; transform: translateY(-110%); transition: transform .45s var(--ease);
  box-shadow: var(--shadow-lift); max-height: 88vh; overflow-y: auto;
}
.search-panel.show { transform: translateY(0); }
.search-box { display: flex; gap: 14px; align-items: center; }
.search-box input {
  flex: 1; font-size: 1.25rem; padding: 16px 26px; border-radius: 999px; border: 1.5px solid var(--line);
  background: var(--beige);
}
.search-box input:focus { outline: none; border-color: var(--green); }
.search-results { margin-top: 30px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.search-hint { margin-top: 26px; color: var(--charcoal-soft); font-size: .92rem; }

/* ---------- Forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-weight: 500; font-size: .92rem; }
.form-field label .req { color: #c05252; }
.form-field input, .form-field select, .form-field textarea {
  padding: 14px 18px; border-radius: var(--radius-sm); border: 1.5px solid var(--line);
  background: var(--white); transition: border .25s, box-shadow .25s;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--green); box-shadow: 0 0 0 4px rgba(141,177,140,.18);
}
.form-field .field-error { color: #c05252; font-size: .82rem; display: none; }
.form-field.invalid input, .form-field.invalid select, .form-field.invalid textarea { border-color: #c05252; }
.form-field.invalid .field-error { display: block; }

/* ---------- Checkout ---------- */
.checkout-layout { display: grid; grid-template-columns: 1.35fr 1fr; gap: 48px; align-items: start; }
.checkout-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 36px; }
.checkout-card h2 { font-size: 1.4rem; margin-bottom: 24px; display: flex; align-items: center; gap: 12px; }
.checkout-card h2 .step-dot {
  width: 34px; height: 34px; border-radius: 50%; background: var(--grad-cta); color: #fff;
  display: inline-flex; align-items: center; justify-content: center; font-size: .95rem; font-family: var(--font-body);
}
.order-summary { position: sticky; top: calc(var(--header-h) + 24px); }
.os-items { max-height: 320px; overflow-y: auto; margin-bottom: 20px; }
.os-item { display: grid; grid-template-columns: 62px 1fr auto; gap: 14px; align-items: center; margin-bottom: 16px; }
.os-item img { width: 62px; height: 62px; border-radius: var(--radius-sm); object-fit: cover; }
.os-item h4 { font-size: .92rem; }
.os-item small { color: var(--charcoal-soft); }
.os-item .os-price { font-weight: 600; font-size: .92rem; }
.secure-note { display: flex; gap: 10px; align-items: center; font-size: .85rem; color: var(--charcoal-soft); margin-top: 18px; }
.secure-note i { color: var(--green-dark); }

/* ---------- Success page ---------- */
.success-wrap { max-width: 640px; margin-inline: auto; text-align: center; padding: 90px 0; }
.success-icon {
  width: 96px; height: 96px; margin: 0 auto 30px; border-radius: 50%; background: var(--grad-cta);
  display: flex; align-items: center; justify-content: center; color: #fff; font-size: 2.3rem;
  box-shadow: 0 16px 38px rgba(111,148,112,.4); animation: pop .6s var(--ease);
}
@keyframes pop { 0% { transform: scale(.4); opacity: 0; } 100% { transform: scale(1); opacity: 1; } }
.order-id-box {
  background: var(--beige); border: 1.5px dashed var(--green); border-radius: var(--radius);
  padding: 20px 28px; margin: 30px 0; font-size: 1.05rem;
}
.order-id-box strong { font-family: var(--font-head); color: var(--green-dark); font-size: 1.25rem; letter-spacing: .04em; }

/* ---------- Contact ---------- */
.contact-info-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; height: 100%; }
.contact-line { display: flex; gap: 16px; margin-bottom: 24px; }
.contact-line i {
  width: 48px; height: 48px; flex: 0 0 48px; border-radius: 14px; background: var(--green-soft);
  color: var(--green-dark); display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}
.contact-line strong { display: block; margin-bottom: 2px; }
.contact-line p, .contact-line a { color: var(--charcoal-soft); font-size: .95rem; }
.contact-line a:hover { color: var(--green-dark); }
.map-placeholder {
  border-radius: var(--radius-lg); background: var(--beige-deep); min-height: 340px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
  color: var(--charcoal-soft); border: 2px dashed var(--line); text-align: center; padding: 30px;
}
.map-placeholder i { font-size: 2.4rem; color: var(--lavender); }

/* ---------- Legal pages ---------- */
.legal-body { max-width: 820px; margin-inline: auto; }
.legal-body h2 { font-size: 1.5rem; margin: 42px 0 16px; }
.legal-body h3 { font-size: 1.15rem; margin: 26px 0 10px; }
.legal-body p { color: var(--charcoal-soft); margin-bottom: 14px; }
.legal-body ul { margin: 0 0 16px 4px; }
.legal-body ul li { color: var(--charcoal-soft); margin-bottom: 8px; padding-left: 26px; position: relative; }
.legal-body ul li::before { content: ""; position: absolute; left: 4px; top: 11px; width: 7px; height: 7px; border-radius: 50%; background: var(--green); }
.legal-updated { font-size: .88rem; color: var(--charcoal-soft); font-style: italic; }
.placeholder-note {
  background: var(--lavender-soft); border-left: 4px solid var(--lavender); border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 14px 20px; font-size: .9rem; color: var(--charcoal-soft); margin: 20px 0;
}

/* ---------- About ---------- */
.value-card { text-align: center; padding: 38px 26px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); transition: all .3s var(--ease); }
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.value-card i { font-size: 1.7rem; color: var(--lavender); margin-bottom: 18px; display: block; }
.value-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.value-card p { color: var(--charcoal-soft); font-size: .94rem; }
.stat-band { background: var(--charcoal); color: #f3efe7; border-radius: var(--radius-lg); padding: 60px 8%; }
.stat-band .grid-4 { text-align: center; }
.stat-band strong { display: block; font-family: var(--font-head); font-size: clamp(2rem, 4vw, 2.9rem); color: var(--lavender); }
.stat-band span { font-size: .92rem; opacity: .85; }

/* ---------- Trust badges section ---------- */
.badges-row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 22px; }
.badge-card {
  text-align: center; padding: 30px 18px; border-radius: var(--radius); background: var(--white);
  border: 1px solid var(--line); transition: all .3s var(--ease);
}
.badge-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.badge-card i { font-size: 1.8rem; color: var(--green-dark); margin-bottom: 14px; display: block; }
.badge-card strong { display: block; font-size: .95rem; margin-bottom: 5px; }
.badge-card small { color: var(--charcoal-soft); font-size: .8rem; line-height: 1.45; display: block; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--grad-main); border-radius: var(--radius-lg); padding: 70px 8%; text-align: center; }

/* ---------- Footer ---------- */
.site-footer { background: var(--charcoal); color: #cfcabf; margin-top: 100px; }
[data-theme="dark"] .site-footer { background: #1b1b1b; }
.footer-main { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1.4fr; gap: 44px; padding: 80px 0 56px; }
.footer-brand .logo { color: #fff; }
.footer-brand p { font-size: .92rem; margin: 18px 0 24px; opacity: .8; max-width: 300px; }
.footer-col h4 { color: #fff; font-family: var(--font-body); font-size: .82rem; letter-spacing: .18em; text-transform: uppercase; margin-bottom: 20px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { font-size: .93rem; opacity: .8; transition: all .25s; }
.footer-col ul a:hover { opacity: 1; color: var(--lavender); padding-left: 5px; }
.footer-news p { font-size: .9rem; opacity: .8; margin-bottom: 16px; }
.footer-news form { display: flex; gap: 8px; align-items: center; }
.footer-news input {
  flex: 1; padding: 13px 18px; border-radius: 999px; border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.07); color: #fff; font-size: .9rem; min-width: 0;
}
.footer-news input::placeholder { color: rgba(255,255,255,.45); }
.footer-news input:focus { outline: none; border-color: var(--green); }
.footer-news button { width: 48px; height: 48px; flex: 0 0 48px; border-radius: 50%; background: var(--grad-cta); color: #fff; transition: transform .25s; }
.footer-news button:hover { transform: scale(1.08); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 26px 0; display: flex; justify-content: space-between; align-items: center; gap: 18px; flex-wrap: wrap; font-size: .86rem; }
.back-top {
  position: fixed; right: 26px; bottom: 26px; width: 52px; height: 52px; border-radius: 50%;
  background: var(--grad-cta); color: #fff; font-size: 1.1rem; z-index: 800;
  opacity: 0; visibility: hidden; transform: translateY(16px); transition: all .35s var(--ease);
  box-shadow: 0 10px 26px rgba(111,148,112,.4);
}
.back-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-top:hover { transform: translateY(-4px); }
.toast {
  position: fixed; bottom: 30px; left: 50%; transform: translate(-50%, 90px); z-index: 990;
  background: var(--charcoal); color: #fff; padding: 15px 28px; border-radius: 999px;
  display: flex; align-items: center; gap: 12px; box-shadow: var(--shadow-lift);
  transition: transform .45s var(--ease); font-size: .95rem; max-width: 90vw;
}
.toast.show { transform: translate(-50%, 0); }
.toast i { color: var(--green); }

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
}

/* ---------- Mobile nav ---------- */
.mobile-nav {
  position: fixed; inset: 0 auto 0 0; width: min(340px, 88vw); background: var(--white); z-index: 960;
  transform: translateX(-105%); transition: transform .45s var(--ease); padding: 30px; overflow-y: auto;
  display: flex; flex-direction: column;
}
.mobile-nav.show { transform: translateX(0); }
.mobile-nav .logo { margin-bottom: 30px; }
.mobile-nav ul li a { display: block; padding: 14px 6px; font-size: 1.06rem; font-weight: 500; border-bottom: 1px solid var(--line); }
.mobile-nav ul li a:hover { color: var(--green-dark); }
.mobile-nav-close { position: absolute; top: 22px; right: 22px; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .badges-row { grid-template-columns: repeat(3, 1fr); }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-main { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-news { grid-column: span 2; }
  .search-results { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 920px) {
  .main-nav { display: none; }
  .nav-toggle { display: inline-flex; }
  .split { grid-template-columns: 1fr; gap: 60px; }
  .pd-layout { grid-template-columns: 1fr; }
  .pd-gallery { position: static; }
  .checkout-layout { grid-template-columns: 1fr; }
  .order-summary { position: static; }
  .shop-layout { grid-template-columns: 1fr; }
  .shop-filters { position: fixed; inset: 0 auto 0 0; width: min(320px, 88vw); z-index: 960; border-radius: 0;
    transform: translateX(-105%); transition: transform .4s var(--ease); overflow-y: auto; }
  .shop-filters.show { transform: translateX(0); }
  .filters-toggle { display: inline-flex; }
  .hero-card { display: none; }
  .section { padding: 70px 0; }
}
@media (max-width: 640px) {
  .product-grid, .shop-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .badges-row { grid-template-columns: repeat(2, 1fr); }
  .insta-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr; gap: 34px; padding: 60px 0 40px; }
  .footer-news { grid-column: auto; }
  .search-results { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { gap: 22px; }
  .product-actions { opacity: 1; transform: none; left: 10px; right: 10px; bottom: 10px; }
  .product-actions .btn { font-size: .8rem; padding: 10px 8px; white-space: nowrap; }
  .product-actions .icon-btn { display: none; }
  .newsletter { padding: 50px 7%; }
  .checkout-card { padding: 26px 20px; }
  .float-badge { display: none; }
}
