:root {
  --cream: #FAF7F1;
  --cream-2: #F3EDE3;
  --paper: #EFE7D8;
  --olive: #6B7C4A;
  --olive-d: #3D4A32;
  --forest: #2A3324;
  --terra: #C45C3E;
  --terra-d: #A3482E;
  --cinnamon: #A67C52;
  --earth: #8B6F4E;
  --espresso: #1F1A14;
  --ink: #2C2416;
  --muted: #6B5E4F;
  --line: rgba(31, 26, 20, .1);
  --white: #FFFcf7;
  --shadow: 0 18px 40px -24px rgba(31, 26, 20, .35);
  --shadow-soft: 0 10px 28px -18px rgba(31, 26, 20, .28);
  --radius: 20px;
  --radius-sm: 14px;
  --header: 84px;
  --font-serif: "Playfair Display", Georgia, serif;
  --font-sans: Inter, system-ui, sans-serif;
  --font-hand: Caveat, "Segoe Script", cursive;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--cream);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; color: inherit; }
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 600; line-height: 1.15; color: var(--espresso); margin: 0 0 .4em; }
p { margin: 0 0 1em; }
.skip-link {
  position: absolute; left: -999px; top: 8px;
}
.skip-link:focus { left: 8px; background: #fff; padding: 8px 12px; z-index: 100; }

.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.kicker {
  font-family: var(--font-hand);
  font-size: 1.45rem;
  color: var(--terra);
  display: block;
  margin-bottom: .35rem;
}
.muted { color: var(--muted); }
.section { padding: 88px 0; }
.section-head { max-width: 640px; margin-bottom: 40px; }
.section-head h2 { font-size: clamp(1.8rem, 3.2vw, 2.7rem); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  min-height: 48px; padding: 0 22px; border-radius: 999px;
  border: 1px solid transparent; cursor: pointer; font-weight: 600;
  letter-spacing: .01em; transition: transform .25s var(--ease), background .25s, color .25s, border-color .25s;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--terra); color: #fff;
  box-shadow: 0 10px 22px -12px rgba(196, 92, 62, .8);
}
.btn-primary:hover { background: var(--terra-d); }
.btn-ghost {
  background: transparent; border-color: rgba(31,26,20,.18); color: var(--espresso);
}
.btn-ghost:hover { border-color: var(--espresso); }
.btn-wa { background: #128C7E; color: #fff; }
.btn:disabled { opacity: .6; cursor: wait; transform: none; }

.icon-btn, .cart-btn, .hamburger {
  width: 44px; height: 44px; border: 0; background: transparent;
  display: grid; place-items: center; cursor: pointer; border-radius: 50%;
  color: inherit;
}
.cart-btn { position: relative; color: inherit; }
.cart-count {
  position: absolute; top: 6px; right: 4px;
  min-width: 18px; height: 18px; padding: 0 4px;
  background: var(--terra); color: #fff; border-radius: 99px;
  font-size: 10px; font-weight: 700; display: grid; place-items: center;
}
.cart-count:empty, .cart-count[data-empty="1"] { display: none; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  height: var(--header);
  display: flex; align-items: center;
  background: rgba(250, 247, 241, .88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: height .3s var(--ease), background .3s, box-shadow .3s;
}
.site-header.is-scrolled {
  height: 68px;
  border-bottom-color: var(--line);
  box-shadow: 0 8px 24px -20px rgba(31,26,20,.4);
}
body.is-home .site-header.is-transparent {
  position: absolute; inset: 0 0 auto 0;
  background: transparent; backdrop-filter: none;
}
body.is-home .site-header.is-transparent.is-scrolled,
body.is-home .site-header.is-solid {
  position: sticky;
  background: rgba(250, 247, 241, .92);
  backdrop-filter: blur(16px);
}
.header-inner {
  width: min(1240px, calc(100% - 32px));
  margin-inline: auto;
  display: flex; align-items: center; gap: 28px;
}
.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-mark {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--olive-d); color: var(--cream);
  font-family: var(--font-serif); display: grid; place-items: center; font-size: 1.05rem;
}
.logo-text { font-family: var(--font-serif); font-size: 1.2rem; letter-spacing: .01em; }
.logo-text em { font-style: italic; font-weight: 500; color: var(--olive); }
.nav-desktop { display: none; align-items: center; gap: 8px; margin-left: 12px; }
.nav-desktop > a, .nav-drop-btn {
  padding: 8px 12px; background: none; border: 0; cursor: pointer;
  font-weight: 500; color: var(--ink); border-radius: 99px;
}
.nav-desktop > a.is-active, .nav-desktop > a:hover, .nav-drop-btn:hover { color: var(--terra-d); }
.nav-drop { position: relative; }
.nav-drop-menu {
  position: absolute; top: 120%; left: 0; min-width: 200px;
  background: var(--white); border-radius: 16px; padding: 10px;
  box-shadow: var(--shadow); display: none;
}
.nav-drop:hover .nav-drop-menu, .nav-drop:focus-within .nav-drop-menu { display: grid; }
.nav-drop-menu a { padding: 10px 12px; border-radius: 10px; }
.nav-drop-menu a:hover { background: var(--cream-2); }
.header-actions { margin-left: auto; display: flex; align-items: center; gap: 2px; }
.hamburger { display: grid; gap: 6px; }
.hamburger span { display: block; width: 18px; height: 1.6px; background: currentColor; }
@media (min-width: 960px) {
  .nav-desktop { display: flex; }
  .hamburger { display: none; }
  .hide-sm { display: grid; }
}

/* Search & mobile menu */
.search-overlay, .mobile-menu {
  position: fixed; inset: 0; z-index: 80;
  background: rgba(31, 26, 20, .35);
}
.search-panel {
  width: min(640px, calc(100% - 24px));
  margin: 12vh auto 0; background: var(--white);
  border-radius: 24px; padding: 28px;
  box-shadow: var(--shadow);
}
.search-form { display: flex; gap: 8px; }
.search-form input {
  flex: 1; border: 1px solid var(--line); background: var(--cream);
  border-radius: 999px; padding: 14px 18px; min-height: 48px; outline: none;
}
.search-form button { border: 0; background: var(--terra); color: #fff; border-radius: 999px; padding: 0 18px; cursor: pointer; }
.search-results { margin-top: 16px; display: grid; gap: 8px; }
.search-hit { display: flex; gap: 12px; align-items: center; padding: 8px; border-radius: 12px; }
.search-hit img { width: 56px; height: 56px; object-fit: contain; background: var(--cream-2); border-radius: 10px; }
.search-close, .mobile-menu { color: inherit; }
.search-close { margin-top: 12px; background: none; border: 0; cursor: pointer; color: var(--muted); }
.mobile-menu-inner {
  position: absolute; right: 0; top: 0; bottom: 0; width: min(360px, 100%);
  background: var(--cream); padding: 88px 28px 40px;
  display: flex; flex-direction: column; gap: 6px;
}
.mobile-menu-inner a { padding: 12px 0; font-size: 1.15rem; border-bottom: 1px solid var(--line); min-height: 44px; }
.mobile-menu-inner .btn { margin-top: 18px; border-bottom: 0; }

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: calc(var(--header) + 24px) 0 48px;
  background:
    radial-gradient(1200px 500px at 80% 20%, rgba(196, 92, 62, .08), transparent 50%),
    radial-gradient(900px 600px at 10% 80%, rgba(107, 124, 74, .12), transparent 55%),
    var(--cream);
}
.hero-grid {
  width: min(1240px, calc(100% - 32px));
  margin-inline: auto;
  display: grid; gap: 32px; align-items: center;
}
.hero-copy h1 {
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  letter-spacing: -0.02em;
  white-space: pre-line;
  margin-bottom: 16px;
}
.hero-copy p { font-size: 1.08rem; color: var(--muted); max-width: 440px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.hero-stage {
  position: relative;
  min-height: 420px;
}
.hero-blob {
  position: absolute; inset: 8% 6% 4% 10%;
  background: #e8dcc8;
  border-radius: 46% 54% 48% 52% / 52% 42% 58% 48%;
  z-index: 0;
}
.hero-photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  border-radius: 36px; opacity: .35;
  filter: saturate(1.05);
  z-index: 0;
}
.hero-main {
  position: relative; z-index: 2;
  width: min(88%, 520px); margin: 0 auto;
  filter: drop-shadow(0 28px 30px rgba(20, 14, 8, .28));
  transform: translate3d(0,0,0);
}
.hero-float {
  position: absolute; z-index: 3; width: 38%;
  filter: drop-shadow(0 16px 18px rgba(20,14,8,.22));
  pointer-events: none;
}
.hero-float.is-sarma { right: -2%; top: 8%; width: 34%; }
.hero-float.is-trilece { left: -4%; bottom: 4%; width: 32%; }
.hero-leaf {
  position: absolute; z-index: 1; width: 90px; opacity: .7;
  pointer-events: none;
}
.hero-leaf.a { left: 6%; top: 12%; transform: rotate(-18deg); }
.hero-leaf.b { right: 8%; bottom: 18%; width: 70px; transform: rotate(24deg); }
.hero-badge {
  position: absolute; z-index: 4; left: 8%; top: 18%;
  background: var(--white); border-radius: 999px;
  padding: 8px 14px; font-size: .82rem; font-weight: 600;
  box-shadow: var(--shadow-soft); color: var(--olive-d);
}
@media (min-width: 900px) {
  .hero-grid { grid-template-columns: .92fr 1.08fr; gap: 20px; }
  .hero-stage { min-height: 640px; }
}

/* Categories */
.cat-rail {
  display: flex; gap: 22px; overflow-x: auto;
  scroll-snap-type: x mandatory; padding-bottom: 8px;
  -webkit-overflow-scrolling: touch;
}
.cat-rail::-webkit-scrollbar { height: 0; }
.cat-card {
  flex: 0 0 220px; scroll-snap-align: start; text-align: center;
}
.cat-card figure {
  width: 200px; height: 200px; margin: 0 auto 16px;
  border-radius: 50% 46% 50% 50% / 48% 50% 46% 54%;
  overflow: hidden; background: #1a140f;
}
.cat-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s var(--ease);
}
.cat-card img[src$=".png"] { object-fit: contain; padding: 8%; }
.cat-card:hover img { transform: scale(1.07); }
.cat-card h3 { font-size: 1.35rem; margin: 0 0 4px; }
.cat-card p { font-size: .92rem; color: var(--muted); margin: 0; }
@media (min-width: 900px) {
  .cat-rail { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); overflow: visible; gap: 28px; }
  .cat-card { flex: none; }
  .cat-card figure { width: min(240px, 100%); height: auto; aspect-ratio: 1; }
}

/* Product cards */
.product-grid {
  display: grid; gap: 22px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .product-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform .35s var(--ease), box-shadow .35s;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.product-card-media {
  position: relative; display: block; background: #1a140f;
  aspect-ratio: 4/3; overflow: hidden;
}
.product-card-media a { display: block; height: 100%; }
.product-card-media img {
  width: 100%; height: 100%; object-fit: contain;
  transition: transform .7s var(--ease);
}
.product-card:hover .product-card-media img { transform: scale(1.06); }
.product-card-cat {
  position: absolute; left: 14px; top: 14px;
  background: rgba(250,247,241,.92); padding: 6px 10px;
  border-radius: 999px; font-size: .75rem; font-weight: 600; letter-spacing: .04em;
  text-transform: uppercase;
}
.fav-btn {
  position: absolute; right: 12px; top: 12px;
  width: 40px; height: 40px; border: 0; border-radius: 50%;
  background: rgba(250,247,241,.92); cursor: pointer; display: grid; place-items: center;
}
.fav-btn svg { fill: none; stroke: var(--espresso); stroke-width: 1.6; }
.fav-btn.is-on svg { fill: var(--terra); stroke: var(--terra); animation: heart .45s var(--ease); }
@keyframes heart { 50% { transform: scale(1.25); } }
.product-card-body { padding: 18px 18px 20px; }
.product-card-body h3 { font-size: 1.28rem; }
.product-card-body p { color: var(--muted); font-size: .95rem; min-height: 3em; }
.product-card-meta { display: flex; gap: 8px; align-items: center; font-size: .88rem; margin-bottom: 14px; }
.stars { color: var(--cinnamon); letter-spacing: 1px; }
.product-card-foot { display: flex; align-items: end; justify-content: space-between; gap: 12px; }
.price-label { display: block; font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.price strong { font-family: var(--font-serif); font-size: 1.35rem; }
.btn-add { padding: 0 16px; min-height: 44px; font-size: .9rem; }

/* Trust */
.trust {
  background: var(--olive-d);
  color: #f4efe6;
  padding: 72px 0;
}
.trust h2 { color: #f4efe6; font-size: clamp(1.7rem, 3vw, 2.4rem); max-width: 18ch; }
.trust-list {
  display: grid; gap: 10px 32px; margin-top: 28px;
  grid-template-columns: 1fr;
}
.trust-list span { display: flex; gap: 10px; align-items: baseline; font-size: 1.05rem; }
.trust-list b { color: #d7c39a; font-weight: 500; }
@media (min-width: 720px) { .trust-list { grid-template-columns: 1fr 1fr; } }

/* Story */
.story-grid { display: grid; gap: 40px; align-items: center; }
.story-photo {
  margin: 0;
  border-radius: 42% 58% 48% 52% / 48% 42% 58% 52%;
  overflow: hidden; aspect-ratio: 1; background: var(--cream-2);
  box-shadow: var(--shadow);
}
.story-photo img { width: 100%; height: 100%; object-fit: cover; }
.story-copy { max-width: 520px; }
.story-copy p { white-space: pre-line; color: var(--muted); font-size: 1.05rem; }
@media (min-width: 880px) { .story-grid { grid-template-columns: .9fr 1.1fr; } }

/* Reviews */
.review-rail {
  display: flex; gap: 16px; overflow-x: auto;
  scroll-snap-type: x mandatory; padding-bottom: 8px;
}
.review-card {
  flex: 0 0 min(320px, 86vw); scroll-snap-align: start;
  background: var(--white); border-radius: var(--radius); padding: 24px;
  box-shadow: var(--shadow-soft);
}
.review-card p { font-size: 1.02rem; }
.review-card footer { font-weight: 600; font-size: .92rem; }

/* Gallery / reels */
.reel-rail {
  display: flex; gap: 14px; overflow-x: auto;
  scroll-snap-type: x mandatory;
}
.reel {
  flex: 0 0 220px; aspect-ratio: 9/16; scroll-snap-align: start;
  border-radius: 18px; overflow: hidden; position: relative; background: #1a140f;
}
.reel img, .reel video {
  width: 100%; height: 100%; object-fit: cover;
}
.reel span {
  position: absolute; left: 12px; bottom: 12px; color: #fff;
  font-size: .82rem; font-weight: 600; text-shadow: 0 8px 16px rgba(0,0,0,.45);
}

/* Blog editorial */
.blog-feature {
  display: grid; gap: 0; border-radius: 24px; overflow: hidden;
  background: #1a140f; color: #f6f0e6; min-height: 420px;
}
.blog-feature img { width: 100%; height: 280px; object-fit: cover; }
.blog-feature-copy { padding: 28px; }
.blog-feature-copy h2 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.4rem); }
.blog-mini-grid { display: grid; gap: 18px; margin-top: 22px; }
.blog-mini { display: grid; grid-template-columns: 92px 1fr; gap: 14px; align-items: center; }
.blog-mini img { width: 92px; height: 92px; object-fit: cover; border-radius: 14px; }
@media (min-width: 900px) {
  .blog-layout { display: grid; grid-template-columns: 1.4fr .8fr; gap: 28px; align-items: stretch; }
  .blog-feature { grid-template-columns: 1.1fr .9fr; }
  .blog-feature img { height: 100%; min-height: 460px; }
  .blog-mini-grid { margin-top: 0; }
}

/* Product detail */
.pdp { padding: 32px 0 120px; }
.pdp-grid { display: grid; gap: 32px; }
.pdp-gallery {
  background: linear-gradient(#1c1610, #2a2118);
  border-radius: 24px; overflow: hidden; min-height: 320px;
  display: grid; place-items: center;
}
.pdp-gallery img { width: min(92%, 520px); }
.thumbs { display: flex; gap: 8px; margin-top: 10px; }
.thumbs button {
  width: 72px; height: 72px; border-radius: 12px; overflow: hidden;
  border: 1px solid var(--line); padding: 0; background: #1a140f; cursor: pointer;
}
.thumbs img { width: 100%; height: 100%; object-fit: contain; }
.pdp-price { font-family: var(--font-serif); font-size: 2rem; margin: 8px 0 18px; }
.variants { display: flex; flex-wrap: wrap; gap: 8px; margin: 12px 0 20px; }
.chip {
  min-height: 44px; padding: 0 14px; border-radius: 999px;
  border: 1px solid var(--line); background: transparent; cursor: pointer;
}
.chip.is-on { background: var(--olive-d); color: #fff; border-color: var(--olive-d); }
.qty {
  display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: 999px;
}
.qty button { width: 44px; height: 44px; border: 0; background: none; cursor: pointer; }
.qty input { width: 42px; text-align: center; border: 0; background: none; }
.pdp-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.sticky-buy {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 40;
  background: rgba(250,247,241,.94); backdrop-filter: blur(12px);
  border-top: 1px solid var(--line); padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  display: flex; gap: 10px; align-items: center;
}
.sticky-buy .btn { flex: 1; }
@media (min-width: 900px) {
  .pdp-grid { grid-template-columns: 1.05fr .95fr; align-items: start; }
  .sticky-buy { display: none; }
  .pdp { padding-bottom: 64px; }
}

/* Cart */
.cart-layout { display: grid; gap: 24px; padding: 32px 0 80px; }
.cart-item {
  display: grid; grid-template-columns: 92px 1fr auto; gap: 14px;
  padding: 16px 0; border-bottom: 1px solid var(--line); align-items: center;
}
.cart-item img { width: 92px; height: 92px; object-fit: contain; background: #1a140f; border-radius: 16px; }
.cart-summary {
  background: var(--white); border-radius: 20px; padding: 22px;
  box-shadow: var(--shadow-soft); height: fit-content;
}
.cart-row { display: flex; justify-content: space-between; padding: 8px 0; }
.cart-row.total { font-size: 1.2rem; font-weight: 700; border-top: 1px solid var(--line); margin-top: 8px; padding-top: 14px; }
@media (min-width: 880px) { .cart-layout { grid-template-columns: 1.3fr .7fr; } }

/* Checkout */
.steps { display: flex; gap: 8px; margin: 12px 0 28px; }
.step {
  flex: 1; text-align: center; padding: 10px 8px; border-radius: 999px;
  background: var(--cream-2); font-size: .85rem; font-weight: 600; color: var(--muted);
}
.step.is-on { background: var(--olive-d); color: #fff; }
.form-grid { display: grid; gap: 12px; }
.form-grid label { display: grid; gap: 6px; font-size: .88rem; font-weight: 600; }
.form-grid input, .form-grid textarea, .form-grid select {
  min-height: 48px; border-radius: 12px; border: 1px solid var(--line);
  background: var(--white); padding: 10px 12px; outline: none;
}
.iban-box {
  background: var(--olive-d); color: #f4efe6;
  border-radius: 20px; padding: 22px; display: grid; gap: 8px;
}
.iban-box .iban { font-family: ui-monospace, monospace; font-size: 1.05rem; letter-spacing: .04em; }
.checkout-wa { width: 100%; margin-top: 12px; min-height: 52px; }

/* Empty */
.empty {
  text-align: center; padding: 72px 16px;
}
.empty img { width: min(280px, 70%); margin: 0 auto 18px; }
.empty h2 { font-size: 1.8rem; }

/* Legal / page */
.prose { max-width: 68ch; }
.prose p { color: var(--muted); font-size: 1.05rem; }

/* Account */
.auth-card {
  width: min(440px, calc(100% - 32px));
  margin: 48px auto; background: var(--white); border-radius: 24px;
  padding: 32px; box-shadow: var(--shadow-soft);
}

/* WhatsApp FAB */
.wa-fab {
  position: fixed; right: 16px; bottom: 18px; z-index: 45;
  display: flex; align-items: center; gap: 0;
  color: #fff;
}
.wa-fab-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: #128C7E; display: grid; place-items: center;
  box-shadow: 0 12px 24px -10px rgba(18, 140, 126, .8);
}
.wa-fab-label {
  max-width: 0; overflow: hidden; white-space: nowrap;
  background: #075E54; height: 44px; display: flex; align-items: center;
  padding: 0; border-radius: 999px 0 0 999px; font-size: .85rem; font-weight: 600;
  transition: max-width .35s var(--ease), padding .35s;
}
@media (hover: hover) {
  .wa-fab:hover .wa-fab-label { max-width: 240px; padding: 0 14px 0 16px; }
}
body.has-sticky-buy .wa-fab { bottom: 86px; }

/* Toast */
.toast {
  position: fixed; left: 50%; bottom: 24px; transform: translateX(-50%);
  background: var(--espresso); color: #fff; padding: 12px 18px;
  border-radius: 999px; z-index: 90; font-size: .92rem;
}

/* Reveal */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal-scale { opacity: 0; transform: scale(.96); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal-scale.is-in { opacity: 1; transform: none; }

/* Skeleton */
.skel {
  background: linear-gradient(90deg, var(--cream-2) 25%, #fff 50%, var(--cream-2) 75%);
  background-size: 200% 100%; animation: skel 1.2s infinite;
  border-radius: 12px;
}
@keyframes skel { to { background-position: -200% 0; } }

/* Admin */
.admin-body { display: grid; grid-template-columns: 240px 1fr; min-height: 100svh; }
.admin-side { background: var(--forest); color: #efe8dc; padding: 28px 18px; }
.admin-side a { display: block; padding: 10px 12px; border-radius: 10px; color: #efe8dc; }
.admin-side a.is-on, .admin-side a:hover { background: rgba(255,255,255,.08); }
.admin-main { padding: 28px; }
.table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: 16px; overflow: hidden; }
.table th, .table td { padding: 12px 14px; border-bottom: 1px solid var(--line); text-align: left; font-size: .92rem; }
.notice { background: #eef3e4; border-radius: 12px; padding: 12px 14px; margin-bottom: 16px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .reveal-scale { opacity: 1; transform: none; transition: none; }
  .product-card, .btn, .cat-card img, .hero-main, .hero-float { transition: none; }
  .skel { animation: none; }
}
@media (max-width: 720px) {
  .section { padding: 64px 0; }
  .hero { min-height: auto; padding-top: calc(var(--header) + 12px); }
  .hero-stage { min-height: 360px; margin: 0 -4px; }
  .hero-float.is-sarma { width: 30%; top: 2%; }
  .hero-float.is-trilece { width: 28%; }
  .hero-badge { top: 6%; left: 4%; }
  .hero-copy h1 { font-size: 2.35rem; }
}

.page-hero { padding: 48px 0 12px; }
.filter-bar { display: flex; gap: 8px; overflow-x: auto; margin: 8px 0 24px; }
.filter-bar a {
  min-height: 44px; display: inline-flex; align-items: center;
  padding: 0 14px; border-radius: 999px; border: 1px solid var(--line); white-space: nowrap;
}
.filter-bar a.is-on { background: var(--olive-d); color: #fff; border-color: var(--olive-d); }

.success-box { text-align: center; padding: 72px 16px; }
.success-box h1 { font-size: 2.2rem; }

.related { margin-top: 56px; }
.reviews-block { margin-top: 48px; }
.review-form { display: grid; gap: 10px; margin-top: 20px; max-width: 520px; }
.ok { color: var(--olive-d); font-weight: 600; }
.err { color: var(--terra-d); }

body.no-fab .wa-fab { display: none; }
.admin-login { min-height: 100svh; display: grid; place-items: center; }
.admin-login form { width: min(380px, 92vw); background: var(--white); padding: 32px; border-radius: 24px; box-shadow: var(--shadow); display: grid; gap: 12px; }
.admin-login input { min-height: 48px; border: 1px solid var(--line); border-radius: 12px; padding: 0 12px; }
.admin-top { display: flex; justify-content: space-between; gap: 12px; align-items: center; margin-bottom: 22px; }
textarea.full { min-height: 160px; width: 100%; }
.admin-body .btn { border-radius: 12px; }
@media (max-width: 800px) {
  .admin-body { grid-template-columns: 1fr; }
  .admin-side { display: flex; gap: 8px; overflow-x: auto; padding: 12px; }
  .admin-side a { white-space: nowrap; }
}
