:root {
  --green: #166534;
  --green-2: #15803d;
  --green-dark: #14532d;
  --green-deep: #0f3d24;
  --green-soft: #ecf8ef;
  --gold: #c9a227;
  --gold-soft: #f6ecd0;
  --red: #b91c1c;
  --saffron: #ff9933;
  --india-green: #138808;
  --bg: #ffffff;
  --bg-muted: #f4f6f5;
  --text: #1a1f1c;
  --text-2: #4b5563;
  --text-3: #6b7280;
  --line: #e5e7eb;
  --white: #fff;
  --shadow-sm: 0 1px 2px rgba(15, 61, 36, 0.06);
  --shadow-md: 0 8px 24px rgba(15, 61, 36, 0.1);
  --shadow-lg: 0 18px 40px rgba(15, 61, 36, 0.14);
  --radius: 12px;
  --container: 1220px;
  --header-h: 92px;
  --font: "Plus Jakarta Sans", "Noto Sans Devanagari", system-ui, sans-serif;
  --display: "Lora", "Noto Sans Devanagari", Georgia, serif;
  --transition: 200ms ease;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; overflow-x: clip; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  min-height: 100dvh;
  overflow-x: clip;
  touch-action: manipulation;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; cursor: pointer; }
button, input, select { font-family: inherit; }
button { cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }

.skip-link {
  position: absolute;
  left: 12px;
  top: -40px;
  background: var(--green);
  color: #fff;
  padding: 8px 14px;
  z-index: 100;
  border-radius: 6px;
}
.skip-link:focus { top: 8px; }

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

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

/* Sticky chrome + scrolling announcement */
.site-chrome {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  box-shadow: 0 6px 18px rgba(15, 61, 36, 0.08);
  overflow: visible;
}

.topbar {
  background: var(--saffron);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  overflow: hidden;
  padding-top: env(safe-area-inset-top);
}
.topbar-inner {
  display: flex;
  align-items: stretch;
  gap: 10px;
  min-height: 38px;
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}
.topbar-inner .marquee {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.show-sm { display: none; }
.topbar-lang {
  position: relative;
  flex-shrink: 0;
  z-index: 60;
  display: flex;
  align-items: center;
}
.header-lang {
  position: relative;
  z-index: 55;
  flex-shrink: 0;
}
.header-lang .lang-select-btn {
  min-height: 40px;
  height: 40px;
  padding: 0 12px;
  border: 1px solid var(--line, #e5e7eb);
  background: var(--green-soft, #eef7f0);
  color: var(--green-dark, #1b5e3b);
  font-size: 13px;
}
.header-lang .lang-select-btn:hover,
.header-lang .lang-select-btn:focus-visible {
  background: #e2f3e8;
}
.lang-select {
  position: relative;
  flex-shrink: 0;
}
.lang-select--compact .lang-select-btn {
  min-height: 34px;
  height: 34px;
  padding: 0 8px;
  gap: 4px;
  border-color: var(--line, #e5e7eb);
  background: var(--green-soft, #eef7f0);
  color: var(--green-dark, #1b5e3b);
  font-size: 12px;
}
.lang-select--compact .lang-select-menu {
  right: 0;
  left: auto;
}
.lang-select-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 32px;
  min-height: 32px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}
.lang-select-btn:hover,
.lang-select-btn:focus-visible {
  background: rgba(255, 255, 255, 0.2);
  outline: none;
}
.lang-select-value {
  font-weight: 700;
}
.lang-select-caret {
  font-size: 11px;
  opacity: 0.85;
}
.lang-select-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 168px;
  max-height: min(60vh, 320px);
  overflow: auto;
  margin: 0;
  padding: 6px 0;
  list-style: none;
  background: #fff;
  color: var(--text, #222);
  border: 1px solid var(--line, #e5e7eb);
  border-radius: 10px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
  z-index: 10000;
}
.lang-select-menu button {
  display: block;
  width: 100%;
  padding: 10px 16px;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}
.lang-select-menu button:hover,
.lang-select-menu button:focus-visible {
  background: var(--green-soft, #eef7f0);
  outline: none;
}
.lang-select-menu button.is-active {
  color: var(--green-dark, #1b5e3b);
  font-weight: 700;
}
.marquee {
  overflow: hidden;
  width: 100%;
}
.marquee-track {
  display: flex;
  width: max-content;
  align-items: center;
  animation: marquee-scroll 32s linear infinite;
  will-change: transform;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  padding: 0 28px;
  min-height: 38px;
  line-height: 1.2;
}
.marquee-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.marquee-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  flex-shrink: 0;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.marquee:hover .marquee-track,
.marquee:focus-within .marquee-track {
  animation-play-state: paused;
}

/* Scroll reveal */
html.js .reveal:not(.in) {
  opacity: 0;
  transform: translateY(28px);
}
html.js .reveal.in {
  opacity: 1;
  transform: none;
  transition: opacity 420ms ease, transform 420ms ease;
  transition-delay: var(--d, 0ms);
}

/* Header */
.header {
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.header-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-areas: "brand search actions";
  align-items: center;
  gap: 28px;
  min-height: var(--header-h);
  padding-block: 12px;
}
.brand {
  grid-area: brand;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.brand img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: contain;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(201, 162, 39, 0.45);
}
.brand-text { line-height: 1.15; }
.brand-text strong {
  display: block;
  font-family: var(--display);
  font-size: 22px;
  color: var(--red);
  letter-spacing: 0.01em;
}
.brand-text span,
.brand-text .brand-tagline {
  display: block;
  font-size: 11px;
  color: var(--green);
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
}

.search {
  display: flex;
  align-items: stretch;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
  height: 46px;
  flex: 1;
  min-width: 0;
}
.search-lang-row {
  grid-area: search;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  width: 100%;
}
.search:focus-within {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(22, 101, 52, 0.15);
}
.search select {
  border: 0;
  background: #f8faf9;
  padding: 0 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  border-right: 1px solid var(--line);
  min-width: 140px;
  outline: none;
  cursor: pointer;
}
.search input {
  flex: 1;
  border: 0;
  outline: none;
  padding: 0 14px;
  font-size: 14px;
  min-width: 0;
}
.search button {
  width: 52px;
  border: 0;
  background: var(--green);
  color: #fff;
  display: grid;
  place-items: center;
  transition: background var(--transition);
}
.search button:hover,
.search button:focus-visible { background: var(--green-dark); }

.header-actions {
  grid-area: actions;
  display: flex;
  align-items: center;
  gap: 8px;
}
.icon-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: 0;
  padding: 8px 10px;
  border-radius: 8px;
  color: var(--text);
  min-height: 44px;
  transition: background var(--transition);
}
.icon-btn:hover,
.icon-btn:focus-visible { background: var(--green-soft); }
.icon-btn svg { width: 22px; height: 22px; color: var(--green); flex-shrink: 0; }
.icon-btn small { display: block; font-size: 11px; color: var(--text-3); font-weight: 500; }
.icon-btn b { display: block; font-size: 13px; font-weight: 700; }
.icon-btn .badge {
  position: absolute;
  top: 2px;
  right: 2px;
  background: var(--red);
  color: #fff;
  font-size: 10px;
  min-width: 16px;
  height: 16px;
  border-radius: 99px;
  display: grid;
  place-items: center;
  font-weight: 700;
}
.cart-wrap { position: relative; }

.menu-toggle {
  display: none;
  background: var(--green);
  color: #fff;
  border: 0;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  place-items: center;
}

/* Nav */
.nav {
  background: var(--green);
  color: #fff;
  position: relative;
}
.nav .container {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
}
.cat-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green-dark);
  color: #fff;
  border: 0;
  height: 48px;
  padding: 0 18px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}
.cat-btn:hover,
.cat-btn:focus-visible { background: var(--green-deep); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}
.nav-links a {
  padding: 10px 14px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.01em;
  border-radius: 4px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: #fff;
  text-decoration: none;
  box-sizing: border-box;
}
.nav-links a:hover,
.nav-links a:focus-visible { background: rgba(255,255,255,0.12); }
.nav-links a.is-active {
  box-shadow: inset 0 -3px 0 #fff;
}

.cat-panel {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: #fff;
  color: var(--text);
  box-shadow: var(--shadow-lg);
  z-index: 40;
  padding: 20px 0;
}
.cat-panel.open { display: block; }
.cat-panel-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.cat-panel a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 8px;
  font-weight: 600;
}
.cat-panel a:hover,
.cat-panel a:focus-visible { background: var(--green-soft); }
.cat-panel img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

/* Hero — full-width image-only slider */
.hero {
  position: relative;
  background: #111;
  overflow: hidden;
  width: 100%;
}
.hero-track {
  display: flex;
  align-items: stretch;
  transition: transform 450ms ease;
  will-change: transform;
}
.hero-slide {
  min-width: 100%;
  position: relative;
  margin: 0;
  padding: 0;
  background: #111;
}
.hero-media {
  display: block;
  position: relative;
  inset: auto;
  width: 100%;
  line-height: 0;
}
.hero-media img,
.hero-media picture,
.hero-media picture img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 6;
  object-fit: cover;
  object-position: center;
}
.hero-slide img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 6;
  object-fit: cover;
  object-position: center;
}
.hero-slide::after {
  display: none;
}
.hero-copy {
  display: none !important;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 22px;
  border-radius: 4px;
  border: 0;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-primary {
  background: var(--green);
  color: #fff;
}
.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--green-dark);
  transform: translateY(-1px);
}
.btn-dark {
  background: #1f2933;
  color: #fff;
}
.btn-dark:hover,
.btn-dark:focus-visible { background: #111827; }
.btn:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 0;
  background: rgba(255,255,255,0.9);
  color: var(--green);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-sm);
}
.hero-nav:hover { background: #fff; }
.hero-nav.prev { left: 16px; }
.hero-nav.next { right: 16px; }
.hero-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 8px;
}
.hero-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background: rgba(22,101,52,0.3);
  padding: 0;
}
.hero-dots button.is-active { background: var(--green); }

/* Trust */
.trust {
  background: var(--saffron);
  border-block: 1px solid #e8891f;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  padding: 22px 0;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 4px 8px;
}
.trust-item svg {
  width: 28px;
  height: 28px;
  color: var(--green);
  flex-shrink: 0;
}
.trust-item b { display: block; font-size: 13px; }
.trust-item span { font-size: 12px; color: var(--text-3); }

/* Sections */
.section { padding: 56px 0; }
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}
.section-head h2 {
  margin: 0;
  font-size: 28px;
  font-family: var(--display);
  color: var(--green-dark);
}
.section-head a {
  color: var(--green);
  font-weight: 700;
  font-size: 14px;
}
.section-head a:hover { text-decoration: underline; }
.center-title {
  text-align: center;
  margin-bottom: 28px;
}
.center-title h2 {
  margin: 0 0 8px;
  font-size: 32px;
  font-family: var(--display);
  color: var(--green-dark);
}
.center-title .rule {
  width: 64px;
  height: 4px;
  background: var(--green);
  margin: 0 auto;
  border-radius: 99px;
}

/* Welcome */
.welcome-card {
  position: relative;
  background: #fff;
  padding: 32px 36px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.welcome-card::before,
.welcome-card::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 8px;
}
.welcome-card::before { left: 0; background: linear-gradient(180deg, var(--saffron), #ffb366); }
.welcome-card::after { right: 0; background: linear-gradient(180deg, #3cb043, var(--india-green)); }
.welcome-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}
.welcome-card h2 {
  margin: 0;
  font-size: 28px;
  color: #111;
}
.welcome-card h3 {
  margin: 6px 0 16px;
  font-size: 26px;
  color: var(--india-green);
}
.welcome-card p {
  margin: 0 0 12px;
  color: #222;
  max-width: 920px;
}
.welcome-card svg { width: 36px; height: 36px; color: #222; }

/* Categories */
.cat-row {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 16px;
  align-items: start;
}
.cat-item {
  text-align: center;
  cursor: pointer;
}
.cat-item img {
  width: 108px;
  height: 108px;
  margin: 0 auto 10px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px var(--green-2);
  transition: box-shadow var(--transition), transform var(--transition);
}
.cat-item:hover img,
.cat-item:focus-visible img {
  transform: translateY(-2px);
  box-shadow: 0 0 0 3px var(--green), var(--shadow-md);
}
.cat-item b { display: block; font-size: 13px; }
.cat-item span { font-size: 12px; color: var(--text-3); }
.cat-more {
  width: 56px;
  height: 56px;
  margin: 26px auto 0;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: grid;
  place-items: center;
  border: 0;
}
.cat-more:hover { background: var(--green-dark); }

/* Products */
.product-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.product-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 12px 14px;
  display: flex;
  flex-direction: column;
  min-width: 0;
  transition: box-shadow var(--transition), transform var(--transition);
}
.product-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.product-media {
  position: relative;
  background: #fafafa;
  border-radius: 8px;
  aspect-ratio: 1;
  overflow: hidden;
  margin-bottom: 10px;
}
.product-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.ribbon {
  position: absolute;
  top: 8px;
  left: 8px;
  background: var(--green);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 4px 8px;
  border-radius: 3px;
}
.wish {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 0;
  background: #fff;
  color: var(--text-3);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}
.wish svg { width: 18px; height: 18px; }
.wish:hover,
.wish.is-on { color: var(--red); }
.add-btn svg { width: 16px; height: 16px; }
.product-card h3 {
  margin: 0 0 2px;
  font-size: 12px;
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1.35;
}
.product-card .en {
  font-size: 12.5px;
  font-weight: 600;
  margin: 0 0 6px;
  min-height: 34px;
}
.stars { color: #e0a100; font-size: 12px; letter-spacing: 1px; }
.stars span { color: var(--text-3); font-weight: 600; margin-left: 4px; letter-spacing: 0; }
.size { font-size: 12px; color: var(--text-3); margin: 4px 0; }
.price {
  font-size: 16px;
  font-weight: 800;
  color: var(--text);
  margin: 4px 0 10px;
}
.price s {
  color: var(--text-3);
  font-weight: 500;
  font-size: 12px;
  margin-left: 6px;
}
.add-btn {
  width: 100%;
  margin-top: auto;
  background: var(--green);
  color: #fff;
  border: 0;
  min-height: 40px;
  border-radius: 4px;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-transform: uppercase;
}
.add-btn:hover,
.add-btn:focus-visible { background: var(--green-dark); }
.add-btn[disabled] { opacity: 0.7; cursor: wait; }

/* About */
.about-card {
  background: #fff;
  border: 3px solid var(--green);
  border-radius: 12px;
  padding: 28px 32px;
  box-shadow: 0 10px 30px rgba(22, 101, 52, 0.18);
}
.about-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}
.about-card h3 {
  margin: 0;
  font-size: 22px;
  color: #111;
}
.about-card p {
  margin: 0;
  color: #333;
  max-width: 900px;
}
.about-card svg { width: 34px; height: 34px; color: #333; }

/* Testimonials */
.t-slider {
  position: relative;
}
.t-grid {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 8px;
}
.t-grid::-webkit-scrollbar { display: none; }
.t-card {
  flex: 0 0 calc((100% - 40px) / 3);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 24px;
  box-shadow: var(--shadow-sm);
  scroll-snap-align: start;
}
.t-card .quote { color: var(--green); margin-bottom: 8px; }
.t-card p { color: var(--text-2); min-height: 88px; margin: 8px 0 12px; }
.t-card b { display: block; }
.t-card small { color: var(--text-3); }
.t-nav {
  display: grid;
  place-items: center;
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 0;
  background: #fff;
  color: var(--green);
  box-shadow: var(--shadow-md);
}
.t-nav.prev { left: -8px; }
.t-nav.next { right: -8px; }
.t-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}
.t-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: rgba(22, 101, 52, 0.28);
}
.t-dots button.is-active { background: var(--green); }

/* Values */
.values {
  background: var(--bg-muted);
  border-block: 1px solid var(--line);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  padding: 28px 0;
  text-align: center;
}
.values-grid svg { width: 32px; height: 32px; color: var(--green); margin: 0 auto 8px; }
.values-grid b { font-size: 14px; }

/* Newsletter */
.newsletter {
  background: var(--green);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.newsletter .container {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.9fr;
  gap: 24px;
  align-items: center;
  padding-block: 36px;
  position: relative;
  z-index: 1;
}
.newsletter h2 { margin: 0 0 8px; font-size: 28px; font-family: var(--display); }
.newsletter p { margin: 0; opacity: 0.92; }
.news-form {
  display: flex;
  gap: 0;
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
}
.news-form input {
  flex: 1;
  border: 0;
  outline: none;
  padding: 12px 14px;
  font-size: 15px;
  min-width: 0;
}
.news-form button {
  border: 0;
  background: #1f2933;
  color: #fff;
  padding: 0 18px;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.news-form button:hover { background: #111827; }
.newsletter-art {
  height: 140px;
  border-radius: 12px;
  object-fit: cover;
  width: 100%;
  box-shadow: var(--shadow-md);
}

/* Footer */
.footer {
  background: #111827;
  color: #d1d5db;
  padding-top: 48px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr 1fr;
  gap: 28px;
  padding-bottom: 36px;
}
.footer .brand img { box-shadow: 0 0 0 2px var(--gold); }
.footer .brand-text strong { color: #fff; }
.footer p { font-size: 14px; color: #9ca3af; }
.footer h4 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.footer a { color: #d1d5db; font-size: 14px; }
.footer a:hover,
.footer a:focus-visible { color: #fff; }
.footer li { margin-bottom: 8px; }
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}
.footer-social a { font-weight: 700; }
.socials { display: flex; gap: 10px; margin-top: 14px; }
.socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #1f2937;
  display: grid;
  place-items: center;
  color: #fff;
}
.socials a:hover { background: var(--green); }
.pay-badges { display: flex; flex-wrap: wrap; gap: 8px; }
.pay {
  background: #fff;
  color: #111;
  font-size: 11px;
  font-weight: 800;
  padding: 6px 8px;
  border-radius: 4px;
  letter-spacing: 0.04em;
}
.cod {
  margin-top: 10px;
  border: 1px dashed var(--gold);
  color: var(--gold);
  text-align: center;
  padding: 10px 8px;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.06em;
}
.footer-bottom {
  border-top: 1px solid #1f2937;
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
  flex-wrap: wrap;
}

.wa-float {
  position: fixed;
  right: max(16px, env(safe-area-inset-right));
  bottom: max(16px, env(safe-area-inset-bottom));
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-lg);
  z-index: 60;
}
.wa-float:hover { transform: translateY(-2px); }

/* Mobile bottom navigation */
.bottom-nav {
  display: none;
}
.bottom-nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  min-height: 56px;
  padding: 6px 4px;
  color: #6b7280;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  position: relative;
}
.bottom-nav-item svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.bottom-nav-item.is-active {
  color: var(--green-dark, #1b5e3b);
}
.bottom-nav-badge {
  position: absolute;
  top: 4px;
  right: calc(50% - 18px);
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--red, #c62828);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  display: none;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.bottom-nav-badge:not(:empty) {
  display: inline-flex;
}
.bottom-nav-badge:is(:empty, [data-empty]) {
  display: none;
}

/* Drawer / toast / modal */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
  z-index: 70;
}
.overlay.open { opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(400px, 100%);
  height: 100%;
  background: #fff;
  z-index: 80;
  transform: translateX(100%);
  transition: transform 250ms ease;
  display: flex;
  flex-direction: column;
}
.drawer.open { transform: none; }
.drawer-head, .modal-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
}
.drawer-head h3, .modal-head h3 { margin: 0; }
.icon-close {
  background: none;
  border: 0;
  width: 40px;
  height: 40px;
}
.drawer-body { flex: 1; overflow: auto; padding: 16px; }
.cart-line {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 10px;
  margin-bottom: 14px;
}
.cart-line img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  background: #fafafa;
  border-radius: 8px;
}
.qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  margin-top: 6px;
}
.qty button {
  width: 32px;
  height: 32px;
  border: 0;
  background: #f3f4f6;
}
.qty span { min-width: 28px; text-align: center; font-weight: 700; }
.drawer-foot {
  padding: 16px;
  border-top: 1px solid var(--line);
}
.drawer-foot .row {
  display: flex;
  justify-content: space-between;
  font-weight: 800;
  margin-bottom: 12px;
}
.empty { text-align: center; color: var(--text-3); padding: 40px 10px; }

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%) translateY(20px);
  background: var(--green-dark);
  color: #fff;
  padding: 12px 18px;
  border-radius: 8px;
  opacity: 0;
  pointer-events: none;
  z-index: 90;
  transition: 200ms ease;
  font-weight: 600;
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.96);
  background: #fff;
  width: min(520px, calc(100% - 24px));
  max-height: min(90dvh, 720px);
  border-radius: 16px;
  z-index: 85;
  display: none;
  box-shadow: var(--shadow-xl, var(--shadow-lg));
  overflow: hidden;
}
.modal.open {
  display: flex;
  flex-direction: column;
  transform: translate(-50%, -50%) scale(1);
}
.modal-body {
  padding: 18px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.field { margin-bottom: 12px; }
.field label { display: block; font-size: 13px; font-weight: 700; margin-bottom: 6px; }
.field input {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 16px;
}
.field input:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(22,101,52,0.15);
}
.form-error { color: var(--red); font-size: 13px; min-height: 18px; }

/* Inner pages */
.page-hero {
  background: var(--green-soft);
  padding: 36px 0;
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { margin: 0 0 6px; font-family: var(--display); color: var(--green-dark); }
.crumb { font-size: 13px; color: var(--text-3); }
.page { padding: 40px 0 64px; }
.prose { max-width: 760px; }
.prose h2 { color: var(--green-dark); }
.filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.chip {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 99px;
  padding: 8px 14px;
  font-weight: 600;
  font-size: 13px;
  min-height: 40px;
}
.chip.is-on, .chip:hover { background: var(--green); color: #fff; border-color: var(--green); }

.pdp {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.pdp-img {
  background: #fafafa;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
}
.pdp-img img { width: 100%; aspect-ratio: 1; object-fit: contain; }

@media (max-width: 1100px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .cat-row { grid-template-columns: repeat(4, 1fr); }
  .trust-grid, .values-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .newsletter .container { grid-template-columns: 1fr 1fr; }
  .newsletter-art { display: none; }
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

@media (max-width: 860px) {
  .container { width: min(100% - 24px, var(--container)); }
  .hide-sm { display: none !important; }
  .show-sm { display: block !important; }
  .menu-toggle { display: grid; }

  .topbar {
    overflow: hidden;
  }
  .topbar-inner {
    width: 100%;
    margin: 0;
    padding: 0;
    min-height: 34px;
    gap: 0;
  }
  .topbar-inner .marquee {
    width: 100%;
  }
  .marquee-item {
    padding: 0 18px;
    min-height: 34px;
    font-size: 12px;
  }

  .header-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "brand actions"
      "search search";
    gap: 8px 8px;
    min-height: 0;
    padding-block: 8px;
    align-items: center;
  }
  .brand {
    grid-area: brand;
    min-width: 0;
    gap: 8px;
    overflow: hidden;
  }
  .brand img { width: 42px; height: 42px; flex-shrink: 0; }
  .brand-text { min-width: 0; overflow: hidden; }
  .brand-text strong {
    font-size: 15px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .brand-text span {
    font-size: 9px;
    letter-spacing: 0;
    text-transform: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }
  .header-actions {
    grid-area: actions;
    gap: 0;
    flex-wrap: nowrap;
    flex-shrink: 0;
    max-width: 100%;
  }
  .icon-btn {
    padding: 6px;
    min-width: 36px;
    min-height: 36px;
    justify-content: center;
  }
  .icon-btn svg { width: 20px; height: 20px; }
  .search-lang-row {
    grid-area: search;
    gap: 8px;
  }
  .header-lang {
    margin-right: 0;
    flex-shrink: 0;
  }
  .header-lang .lang-select-btn {
    min-height: 44px;
    height: 44px;
    padding: 0 10px;
    border-radius: 8px;
    font-size: 12px;
  }
  .search { width: 100%; height: 44px; }
  .search select { min-width: 0; max-width: 118px; font-size: 12px; padding: 0 8px; }
  .search input { font-size: 16px; }

  .nav {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    max-height: min(80dvh, 640px);
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 200ms ease, transform 200ms ease, visibility 200ms ease;
    box-shadow: var(--shadow-lg);
  }
  .nav.open {
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .nav .container {
    flex-direction: column;
    align-items: stretch;
    padding-bottom: 12px;
  }
  .nav-links {
    flex-direction: column;
    width: 100%;
    gap: 0;
    align-items: stretch;
  }
  .nav-links a {
    width: 100%;
    font-size: 15px !important;
    font-weight: 600 !important;
    line-height: 1.35 !important;
    letter-spacing: 0.01em;
    padding: 14px 16px !important;
    min-height: 48px;
    border-radius: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: none !important;
  }
  .nav-links a.is-active {
    background: rgba(255, 255, 255, 0.12);
    box-shadow: none !important;
  }
  .nav-links a:last-child {
    border-bottom: 0;
  }
  .cat-btn { width: 100%; justify-content: center; }
  .cat-panel {
    position: relative;
    top: 0;
    box-shadow: none;
    padding: 0 0 12px;
  }
  .cat-panel.open { display: block; }

  .hero {
    background: #111;
  }
  .hero-slide {
    display: block;
    min-height: 0;
    height: auto;
    background: #111;
  }
  .hero-media {
    position: relative;
    inset: auto;
    width: 100%;
    display: block;
  }
  .hero-media img,
  .hero-media picture,
  .hero-media picture img {
    width: 100%;
    height: auto;
    aspect-ratio: auto;
    object-fit: contain;
    object-position: center;
    background: #111;
  }
  .hero-slide img {
    height: auto;
    min-height: 0;
    aspect-ratio: auto;
    object-fit: contain;
  }
  .hero-slide::after {
    display: none;
  }
  .hero-copy {
    display: none !important;
  }
  .hero-nav {
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    z-index: 3;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.16);
  }
  .hero-nav.prev { left: 8px; }
  .hero-nav.next { right: 8px; }
  .hero-dots {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 12px;
    top: auto !important;
    margin: 0;
    z-index: 3;
    width: max-content;
  }
  .hero-dots button {
    background: rgba(255, 255, 255, 0.45);
  }
  .hero-dots button.is-active {
    background: #fff;
  }

  .section { padding: 36px 0; }
  .section-head { margin-bottom: 18px; }
  .section-head h2, .center-title h2 { font-size: 24px; }

  .trust {
    background: var(--saffron);
  }
  .trust-grid {
    grid-template-columns: 1fr 1fr;
    justify-items: stretch;
    padding: 20px 0 24px;
    gap: 12px;
  }
  .trust-item {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    width: 100%;
    margin: 0;
    padding: 16px 10px;
    gap: 8px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 1px 4px rgba(15, 61, 36, 0.07);
  }
  .trust-item:last-child {
    grid-column: 1 / -1;
  }
  .trust-item svg {
    width: 32px;
    height: 32px;
  }
  .trust-item b {
    color: var(--green-dark);
    font-size: 14px;
  }
  .trust-item span {
    font-size: 12px;
    line-height: 1.4;
  }
  .trust-item > div { text-align: center; }
  .values-grid { grid-template-columns: 1fr 1fr; gap: 20px; }

  .cat-row {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 14px;
    padding: 4px 2px 12px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .cat-row::-webkit-scrollbar { display: none; }
  .cat-item { flex: 0 0 92px; scroll-snap-align: start; }
  .cat-item img { width: 84px; height: 84px; }
  .cat-more { flex: 0 0 56px; margin: 14px 8px 0; }

  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .product-card { padding: 8px 8px 10px; }
  .product-card h3, .product-card .en { font-size: 12px; }
  .product-card .en { min-height: 32px; }
  .add-btn { font-size: 11px; letter-spacing: 0.03em; min-height: 40px; }

  .t-slider { overflow: hidden; padding: 0 8px; }
  .t-grid {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 4px 2px 12px;
  }
  .t-grid::-webkit-scrollbar { display: none; }
  .t-card {
    flex: 0 0 100%;
    width: 100%;
    scroll-snap-align: center;
    text-align: center;
  }
  .t-card p { min-height: 0; }
  .t-nav {
    display: grid;
    place-items: center;
    position: absolute;
    top: 42%;
    transform: translateY(-50%);
    z-index: 2;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 0;
    background: #fff;
    color: var(--green);
    box-shadow: var(--shadow-sm);
  }
  .t-nav.prev { left: -4px; }
  .t-nav.next { right: -4px; }
  .t-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 8px;
  }
  .t-dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 0;
    padding: 0;
    background: rgba(22, 101, 52, 0.28);
  }
  .t-dots button.is-active { background: var(--green); }
  .pdp, .cat-panel-grid, .contact-grid { grid-template-columns: 1fr; }
  .footer-grid, .newsletter .container { grid-template-columns: 1fr; }
  .news-form { flex-direction: column; }
  .news-form input { font-size: 16px; min-height: 44px; }
  .news-form button { min-height: 44px; }
  .welcome-card, .about-card { padding: 20px 18px 20px 24px; }
  .welcome-card h2, .welcome-card h3 { font-size: 22px; }
  .filters { overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; scrollbar-width: none; }
  .chip { flex: 0 0 auto; }
  .footer { padding-bottom: 100px; }
  .drawer { width: 100%; }
  .page { padding: 24px 0 48px; }
  .page-hero { padding: 24px 0; }

  .bottom-nav {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 65;
    background: #fff;
    border-top: 1px solid #e5e7eb;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.06);
    padding: 4px 2px calc(4px + env(safe-area-inset-bottom));
    align-items: stretch;
  }
  .wa-float {
    bottom: calc(72px + env(safe-area-inset-bottom));
  }
  body {
    padding-bottom: calc(64px + env(safe-area-inset-bottom));
  }
}

@media (max-width: 420px) {
  .brand-text strong { font-size: 14px; }
  .brand-text span {
    display: block;
    font-size: 8px;
    max-width: 42vw;
  }
  .header-lang .lang-select-value { max-width: 4.5em; overflow: hidden; text-overflow: ellipsis; }
  .icon-btn { padding: 5px; min-width: 34px; min-height: 34px; }
  .marquee-item { font-size: 11px; padding: 0 14px; }
}



@media (max-width: 520px) {
  .values-grid { grid-template-columns: 1fr; }
  .search select { display: none; }
  .hero-media img,
  .hero-media picture img,
  .hero-slide img {
    aspect-ratio: auto;
    object-fit: contain;
  }
  .hero-nav {
    top: 50%;
    transform: translateY(-50%);
  }
  .product-grid { gap: 8px; }
  .price { font-size: 15px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee-track { animation: none !important; }
  html.js .reveal:not(.in),
  html.js .reveal.in {
    opacity: 1;
    transform: none;
    transition: none;
  }
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
  }
}

/* Checkout */
.checkout-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: start;
}
.checkout-form h2 { font-family: var(--display); color: var(--green-dark); }
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.field select {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 16px;
  background: #fff;
}
.muted { color: var(--text-3); font-size: 14px; }
.order-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 18px;
  margin-bottom: 12px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.order-card p { margin: 4px 0 0; font-size: 14px; color: var(--text-2); }
.order-card .muted { margin-top: 2px; font-size: 13px; }

/* Ship invoice / packing label */
.invoice-toolbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
}
.invoice-toolbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.invoice-page {
  background: #eef1ef;
  min-height: 100dvh;
  padding: 28px 0 48px;
}
.invoice-missing {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
}

.ship-label {
  width: min(100%, 420px);
  margin: 0 auto;
  background: #fff;
  border: 2px solid #111;
  color: #111;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  line-height: 1.35;
  box-shadow: var(--shadow-md);
}
.ship-block {
  padding: 12px 14px;
  border-bottom: 2px solid #111;
}
.ship-block:last-child { border-bottom: 0; }
.ship-label h2 {
  margin: 0 0 6px;
  font-size: 14px;
  font-weight: 700;
}
.ship-name { font-weight: 700; margin: 0 0 2px; }
.ship-label p { margin: 0 0 2px; }
.ship-meta {
  display: grid;
  grid-template-columns: 1.35fr 0.9fr;
  gap: 10px;
  align-items: start;
}
.ship-courier { font-weight: 700; margin-bottom: 8px !important; }
.ship-meta-right {
  text-align: right;
  padding-top: 22px;
  font-size: 12px;
}
.ship-barcode {
  overflow: hidden;
  line-height: 0;
}
.ship-barcode svg {
  max-width: 100%;
  height: auto;
  display: block;
}
.ship-awb { margin-top: 6px !important; font-weight: 600; letter-spacing: 0.02em; }
.ship-items { padding: 0; }
.ship-items table {
  width: 100%;
  border-collapse: collapse;
}
.ship-items th,
.ship-items td {
  padding: 8px 10px;
  border-bottom: 1px solid #bbb;
  text-align: left;
  vertical-align: top;
  font-size: 12px;
}
.ship-items th {
  background: #d9d9d9;
  font-weight: 700;
  border-bottom: 1px solid #111;
}
.ship-items .num { text-align: right; white-space: nowrap; }
.ship-items tfoot td {
  border-bottom: 0;
  font-size: 13px;
}
.ship-footer {
  display: grid;
  grid-template-columns: 1.25fr 0.95fr;
  gap: 12px;
}
.ship-order {
  text-align: right;
  border-left: 1px solid #ccc;
  padding-left: 10px;
}
.ship-order .ship-barcode {
  display: flex;
  justify-content: flex-end;
  margin: 6px 0;
}
.ship-pay {
  margin-top: 10px !important;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1;
}

@media (max-width: 900px) {
  .checkout-layout { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .field-row { grid-template-columns: 1fr; }
  .order-card { flex-direction: column; align-items: flex-start; }
  .ship-meta,
  .ship-footer { grid-template-columns: 1fr; }
  .ship-meta-right,
  .ship-order { text-align: left; border-left: 0; padding-left: 0; }
  .ship-order .ship-barcode { justify-content: flex-start; }
}

@media print {
  body { background: #fff !important; }
  .no-print,
  .site-chrome,
  #site-header,
  #site-footer,
  .wa-float,
  .bottom-nav,
  .invoice-toolbar { display: none !important; }
  .invoice-page {
    background: #fff;
    padding: 0;
    min-height: 0;
  }
  .invoice-page .container {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
  }
  .ship-label {
    width: 100%;
    max-width: none;
    box-shadow: none;
    border-width: 1.5pt;
    page-break-inside: avoid;
  }
}

/* Categories page + video finds */
.cat-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.cat-page-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}
.cat-page-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.cat-page-card img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.cat-page-card b {
  display: block;
  color: var(--green-dark);
  font-size: 15px;
}
.cat-page-card span {
  display: block;
  color: var(--text-3);
  font-size: 13px;
  margin-top: 2px;
}
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.video-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.video-thumb {
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, #1a3d28, #166534);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 28px;
}
.video-card h3 {
  margin: 12px 14px 4px;
  font-size: 16px;
  color: var(--green-dark);
}
.video-card p {
  margin: 0 14px 14px;
  color: var(--text-3);
  font-size: 13px;
}
@media (max-width: 900px) {
  .cat-page-grid,
  .video-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .cat-page-grid,
  .video-grid { grid-template-columns: 1fr; }
}

.photo-preview {
  margin-top: 10px;
}
.photo-preview img,
.store-saved-photo {
  width: 100%;
  max-width: 280px;
  height: auto;
  border-radius: 10px;
  border: 1px solid var(--line);
  object-fit: cover;
  display: block;
}
.offer-tag {
  display: inline-block;
  margin: 6px 0 10px;
  padding: 4px 10px;
  background: #fff4e5;
  color: #9a3412;
  border: 1px solid #fdba74;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}
.field input[type="file"] {
  padding: 10px;
  background: #fafafa;
}

/* Shipping tracking + client contact note */
.track-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: start;
}
.contact-note-card {
  background: #f9d8d6;
  border: 1px solid #f0c4c0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.contact-note-card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 280px;
}
.contact-note-body {
  padding: 16px 18px 20px;
}
.contact-note-body h2,
.contact-note-body h3 {
  margin: 0 0 6px;
  font-size: 16px;
  color: var(--green-dark);
}
.contact-note-body p {
  margin: 0 0 10px;
  color: var(--text-2);
}
.track-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  margin-bottom: 14px;
  box-shadow: var(--shadow-sm);
}
.track-card-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 18px;
}
.track-card-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.track-status {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--saffron);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}
.track-timeline {
  list-style: none;
  margin: 0;
  padding: 0 0 0 8px;
  border-left: 2px solid #e5e7eb;
}
.track-step {
  position: relative;
  padding: 0 0 18px 22px;
}
.track-step:last-child { padding-bottom: 0; }
.track-dot {
  position: absolute;
  left: -7px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #d1d5db;
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px #d1d5db;
}
.track-step.is-done .track-dot,
.track-step.is-active .track-dot {
  background: var(--green);
  box-shadow: 0 0 0 1px var(--green);
}
.track-step.is-active b { color: var(--green-dark); }
.track-step b { display: block; font-size: 14px; }
.track-step p { margin: 2px 0 0; font-size: 13px; color: var(--text-3); }
@media (max-width: 900px) {
  .track-layout { grid-template-columns: 1fr; }
  .track-card-head { flex-direction: column; }
  .track-card-actions { align-items: flex-start; }
}

/* Payment gateway + order success */
.pay-gateway { z-index: 90; }
.pay-brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  margin-bottom: 14px;
  border-radius: 10px;
  background: linear-gradient(135deg, #0f3d2e, #1a5c45);
  color: #fff;
}
.pay-brand span { font-size: 13px; font-weight: 600; opacity: 0.9; }
.pay-brand b { font-size: 22px; }
.pay-processing {
  text-align: center;
  padding: 28px 12px 18px;
}
.pay-spinner {
  width: 42px;
  height: 42px;
  margin: 0 auto 14px;
  border: 3px solid #e5e7eb;
  border-top-color: var(--green, #1a5c45);
  border-radius: 50%;
  animation: pay-spin 0.8s linear infinite;
}
@keyframes pay-spin { to { transform: rotate(360deg); } }
.pay-ok {
  width: 52px;
  height: 52px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--green, #1a5c45);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 26px;
  font-weight: 700;
}
.order-success-card { text-align: left; }
.order-success-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--green, #1a5c45);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 32px;
  font-weight: 700;
}
.referral-code-box {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px 18px;
  border-radius: 12px;
  background: linear-gradient(135deg, #0f3d2e, #1a5c45);
  color: #fff;
}
.referral-code-box .muted { color: rgba(255,255,255,0.75); font-size: 13px; }
.referral-code-box b {
  font-size: 28px;
  letter-spacing: 0.06em;
  font-family: var(--sans, "Plus Jakarta Sans", sans-serif);
}


