/* ═══════════════════════════════════════════
   Wonder Garden BD — Design System
   Based on Next.js Tailwind v4 theme
   ═══════════════════════════════════════════ */

/* ─── Fonts ─── */
@font-face {
  font-family: 'Geist';
  src: url('https://cdn.jsdelivr.net/npm/geist@1.3.0/dist/fonts/geist-sans/Geist-Variable.woff2') format('woff2');
  font-weight: 100 900;
  font-display: swap;
  font-style: normal;
}

/* ─── CSS Custom Properties (Design Tokens) ─── */
:root {
  --primary-50: #f0fdf4;
  --primary-100: #dcfce7;
  --primary-200: #bbf7d0;
  --primary-300: #86efac;
  --primary-400: #4ade80;
  --primary-500: #22c55e;
  --primary-600: #16a34a;
  --primary-700: #15803d;
  --primary-800: #166534;
  --primary-900: #14532d;
  --primary-950: #052e16;

  --accent-50: #fff7ed;
  --accent-100: #ffedd5;
  --accent-200: #fed7aa;
  --accent-300: #fdba74;
  --accent-400: #fb923c;
  --accent-500: #f97316;
  --accent-600: #ea580c;
  --accent-700: #c2410c;
  --accent-800: #9a3412;
  --accent-900: #7c2d12;

  --text: #0a0a0a;
  --text-muted: #6b7280;
  --text-subtle: #9ca3af;
  --surface: #ffffff;
  --surface-muted: #f9fafb;
  --surface-elevated: #ffffff;
  --border: #e5e7eb;
  --border-light: #f3f4f6;

  --font-sans: "Geist", "Hind Siliguri", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --radius: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.25rem;

  --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
  --shadow: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.05), 0 2px 4px rgba(0,0,0,0.04);
  --shadow-lg: 0 10px 25px rgba(0,0,0,0.06), 0 4px 10px rgba(0,0,0,0.04);
  --shadow-xl: 0 20px 40px rgba(0,0,0,0.08);

  --forest: #166534;
  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
  --dur-fast: 0.2s;
  --z-cursor: 9999;
}

/* ─── Reset & Base ─── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ─── Twemoji global styling ─── */
img.emoji {
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  height: 1em;
  width: 1em;
}

html {
  scroll-behavior: auto;
}

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--surface);
  line-height: 1.7;
  font-size: 1.0625rem;
}

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

a {
  color: inherit;
  text-decoration: none;
}

/* ─── Container ─── */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

/* ─── Search Bar ───
   The search icon opens this as a dropdown on every screen size (was
   previously desktop-only, which is why the icon looked clickable on
   mobile but silently did nothing — the .is-open state had no effect
   below 768px). Width is capped relative to the viewport so it never
   overflows on narrow phones. */
.search-bar-wrap {
  display: block;
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: min(280px, calc(100vw - 2rem));
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s linear 0.2s;
  z-index: 60;
}
.search-bar-wrap.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.search-bar {
  position: relative;
}
.search-bar-input {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  transition: all 0.2s;
  padding: 0.375rem 0.75rem;
  background: var(--surface-muted);
}
#searchBarWrap .search-bar-input {
  background: var(--surface);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.search-bar-input:focus-within {
  border-color: var(--primary-500);
  box-shadow: 0 0 0 2px rgba(34,197,94,0.1);
}
.search-bar-icon {
  flex-shrink: 0;
  color: var(--text-subtle);
}
.search-bar-input input {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  font-size: 0.875rem;
  color: var(--text);
}
.search-bar-input input::placeholder {
  color: color-mix(in srgb, var(--text-subtle) 60%, transparent);
}
.search-bar-clear {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-subtle);
  padding: 0;
  flex-shrink: 0;
}
.search-bar-clear:hover {
  color: var(--text);
}
.search-bar-results {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin-top: 0.375rem;
  min-width: 20rem;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.04);
  overflow: hidden;
  z-index: 60;
}
.search-bar-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.search-spinner {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--border);
  border-top-color: var(--primary-700);
  animation: spin 0.6s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.search-bar-empty {
  padding: 1.5rem;
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-muted);
}
.search-bar-list {
  max-height: 20rem;
  overflow-y: auto;
  padding: 0.25rem 0;
}
.search-bar-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0.75rem;
  text-decoration: none;
  transition: background 0.15s;
  cursor: pointer;
}
.search-bar-item:hover {
  background: var(--surface-muted);
}
.search-bar-item-img {
  position: relative;
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
  border-radius: 0.5rem;
  overflow: hidden;
  background: var(--surface-muted);
}
.search-bar-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.search-bar-item-info {
  min-width: 0;
  flex: 1;
}
.search-bar-item-name {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.search-bar-item-price {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ─── Scroll Progress ─── */
.scroll-progress-bar {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 100;
  height: 3px;
  transform-origin: left;
  background: linear-gradient(to right, #22c55e, #10b981, #22c55e);
  transform: scaleX(0);
  pointer-events: none;
}

/* ─── Header ─── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  transition: all 0.5s;
  border-bottom: 1px solid rgba(229,231,235,0.6);
  background: rgba(255,255,255,0.9);
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.05), 0 4px 6px -4px rgba(0,0,0,0.05);
  backdrop-filter: blur(24px);
}
.site-header.is-hidden { transform: translateY(-100%); }
.site-header.is-scrolled { box-shadow: 0 10px 25px rgba(0,0,0,0.08); }

/* Grid (not flex + space-between) so the middle nav is truly centered on
   the row regardless of how wide the logo vs. the action-icons are —
   with 3 flex items, space-between centers nav between the two side
   items' edges, which only lines up with true center when they're the
   same width (they aren't: the logo is wider than the icon cluster). */
.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 64px;
}
.header-inner .site-logo { grid-column: 1; justify-self: start; }
.header-inner .nav-pill-container { grid-column: 2; justify-self: center; }
.header-inner .header-actions { grid-column: 3; justify-self: end; }

/* ─── Logo ─── */
.site-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
}
.logo-icon {
  height: 40px;
  width: auto;
}
@media (min-width: 640px) { .logo-icon { height: 48px; } }

.logo-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.logo-title {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(135deg, var(--primary-600), var(--primary-800));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.3s;
}
.site-logo:hover .logo-title {
  background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.logo-subtitle {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-top: 2px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  color: #6b7280;
  line-height: 1.25;
}

/* ─── Desktop Nav Pill Container ─── */
.nav-pill-container {
  display: none;
}
@media (min-width: 768px) {
  .nav-pill-container {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px;
    border-radius: 16px;
    background: rgba(249,250,251,0.6);
  }
}

.nav-link {
  position: relative;
  padding: 8px 16px;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.2s;
}
.nav-link:hover {
  background: rgba(255,255,255,0.6);
  color: var(--text);
}
.nav-link.active {
  color: var(--primary-800);
  background: #fff;
  box-shadow: 0 1px 4px rgba(34,197,94,0.1);
}
.nav-pill {
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 1px 4px rgba(34,197,94,0.1);
  z-index: -1;
}

/* ─── Home page: transparent header over the hero, underline nav ───
   Scoped to body.is-home-hero (set via is_front_page() in header.php)
   so every other page keeps the sticky/opaque header and pill nav
   exactly as before. */
body.is-home-hero .site-header {
  position: fixed;
  background: transparent;
  border-bottom-color: transparent;
  box-shadow: none;
  backdrop-filter: none;
}
body.is-home-hero .site-header.is-scrolled {
  background: rgba(255,255,255,0.9);
  border-bottom-color: rgba(229,231,235,0.6);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  backdrop-filter: blur(24px);
}
body.is-home-hero .site-header:not(.is-scrolled) .logo-title {
  background: none;
  -webkit-text-fill-color: currentColor;
  color: #fff;
}
body.is-home-hero .site-header:not(.is-scrolled) .logo-subtitle {
  color: rgba(255,255,255,0.85);
}
body.is-home-hero .site-header:not(.is-scrolled) .nav-pill-container {
  background: transparent;
}
body.is-home-hero .site-header:not(.is-scrolled) .nav-link {
  color: rgba(255,255,255,0.92);
}
body.is-home-hero .site-header:not(.is-scrolled) .nav-link:hover,
body.is-home-hero .site-header:not(.is-scrolled) .nav-link.active {
  color: #fff;
}
body.is-home-hero .site-header:not(.is-scrolled) .icon-btn {
  color: rgba(255,255,255,0.92);
}
body.is-home-hero .site-header:not(.is-scrolled) .icon-btn:hover {
  background: rgba(255,255,255,0.14);
  color: #fff;
}

/* Underline hover/active runs alongside the pill on the home page (not
   instead of it) — the pill just goes translucent while the header is
   transparent, so it reads as a soft highlight instead of a solid white
   block, then turns back into the normal solid pill once scrolled. */
body.is-home-hero .site-header:not(.is-scrolled) .nav-link:hover,
body.is-home-hero .site-header:not(.is-scrolled) .nav-link:focus-visible,
body.is-home-hero .site-header:not(.is-scrolled) .nav-link.active {
  background: rgba(255,255,255,0.16);
  box-shadow: none;
}
body.is-home-hero .site-header:not(.is-scrolled) .nav-pill {
  background: rgba(255,255,255,0.16);
  box-shadow: none;
}
body.is-home-hero .nav-link::after {
  content: '';
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 6px;
  height: 1.5px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}
body.is-home-hero .nav-link:hover::after,
body.is-home-hero .nav-link:focus-visible::after,
body.is-home-hero .nav-link.active::after {
  transform: scaleX(1);
}

/* ─── Header Actions ─── */
.header-actions {
  position: relative;
  display: flex;
  align-items: center;
  gap: 2px;
}

.search-toggle-btn {
  display: flex;
}
.search-toggle-btn[aria-expanded="true"] {
  background: var(--primary-50);
  color: var(--primary-700);
}
body.is-home-hero .site-header:not(.is-scrolled) .search-toggle-btn[aria-expanded="true"] {
  background: rgba(255,255,255,0.16);
  color: #fff;
}

.icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s;
}
.icon-btn:hover {
  background: var(--primary-50);
  color: var(--primary-700);
  transform: translateY(-2px);
}

.cart-btn, .wishlist-btn { position: relative; }
.cart-count {
  position: absolute;
  top: -3px;
  right: -3px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 9999px;
  background: linear-gradient(135deg, var(--primary-600), var(--primary-800));
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.cart-count.bump {
  animation: cartBump 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes cartBump {
  0% { transform: scale(1); }
  40% { transform: scale(1.45); }
  100% { transform: scale(1); }
}

.menu-btn {
  display: flex;
}
@media (min-width: 768px) {
  .menu-btn { display: none; }
}

/* ─── Mobile Menu ───
   A compact floating card anchored under the hamburger icon — sized to
   its content (min/max-width) rather than stretching full-width, and
   always fully opaque with its own background so it stays readable
   over the transparent home-page hero (previously it had no background
   of its own and relied on the sticky header's opaque background
   showing through, which broke once the header became transparent on
   the home page). */
body.menu-open { overflow: hidden; }
.mobile-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 54;
  background: rgba(0,0,0,0.25);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}
body.menu-open .mobile-backdrop { display: block; }
.mobile-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 1rem;
  width: fit-content;
  min-width: 200px;
  max-width: min(260px, calc(100vw - 2rem));
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  border-radius: 16px;
  border: 1px solid transparent;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s linear 0.2s;
  z-index: 55;
}
.mobile-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 0.2s ease, transform 0.2s ease;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(24px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
  border-color: rgba(229,231,235,0.6);
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 10px;
}

.mobile-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.2s;
}
.mobile-link:hover {
  background: var(--surface-muted);
  color: var(--text);
}
.mobile-link.active {
  background: var(--primary-50);
  color: var(--primary-800);
}

.mobile-dot {
  width: 6px;
  height: 6px;
  border-radius: 9999px;
  background: transparent;
  transition: all 0.2s;
}
.mobile-dot.active {
  width: 6px;
  height: 6px;
  background: var(--primary-600);
  transform: scale(1);
}

/* ─── Buttons ─── */
.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94), background 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94), color 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-decoration: none;
}
.btn-ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  transform: scale(0);
  animation: btn-ripple-anim 0.6s ease-out;
  pointer-events: none;
}
@keyframes btn-ripple-anim {
  to { transform: scale(2.2); opacity: 0; }
}
.btn:active {
  transform: translateY(0) scale(0.97);
}

.btn-primary {
  background: var(--primary-700);
  color: #fff;
}
.btn-primary:hover {
  background: var(--primary-800);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.btn-secondary {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-secondary:hover {
  background: var(--surface-muted);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--primary-300);
  color: var(--primary-700);
  background: var(--primary-50);
  transform: translateY(-2px);
}

.btn-sm { padding: 0.375rem 0.875rem; font-size: 0.8125rem; }
.btn-lg { padding: 0.75rem 1.75rem; font-size: 1rem; }

/* ─── Badge ─── */
.badge {
  display: inline-flex;
  align-items: baseline;
  gap: 0.125rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.8125rem;
  font-weight: 700;
}
.badge small {
  font-size: 0.6rem;
  font-weight: 500;
  opacity: 0.75;
}

.badge-primary {
  background: var(--primary-100);
  color: var(--primary-800);
  border: 1px solid var(--primary-200);
}

.badge-danger {
  background: #fef2f2;
  color: #dc2626;
  border: 1px solid #fecaca;
}

/* ─── Shop Hero ─── */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 6rem 0 8rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 640px) {
  .page-hero {
    padding: 8rem 0;
    min-height: 55vh;
  }
}
@media (min-width: 1024px) {
  .page-hero {
    min-height: 50vh;
  }
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(5,46,22,0.92), rgba(20,83,45,0.7), transparent);
}
.page-hero-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.page-hero-content {
  position: relative;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
  text-align: center;
}
@media (min-width: 640px) {
  .page-hero-content { padding: 0 1.5rem; }
}
@media (min-width: 1024px) {
  .page-hero-content { padding: 0 2rem; }
}
.page-hero-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 9999px;
  background: rgba(255,255,255,0.1);
  padding: 0.5rem 1.25rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.1);
}
.page-hero h1 {
  margin-top: 1.5rem;
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: #fff;
}
@media (min-width: 640px) {
  .page-hero h1 { font-size: 3rem; }
}
@media (min-width: 1024px) {
  .page-hero h1 { font-size: 3.75rem; }
}
.page-hero h1 span {
  color: var(--primary-300);
}
.page-hero p {
  margin-top: 1rem;
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 640px) {
  .page-hero p { font-size: 1.125rem; }
}

/* ─── Hero Carousel ───
   The header is now position:fixed on the home page (see .is-home-hero
   rules below) and overlays the hero instead of pushing it down, so the
   hero itself takes the full viewport. */
.hero-carousel {
  position: relative;
  height: 100svh;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0f2a17, #1a3a22, #1f4528);
}

/* ─── Background Slides ─── */
.hero-slide-bg {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.6s cubic-bezier(0.25, 0.1, 0.25, 1);
  pointer-events: none;
}
.hero-slide-bg.active {
  opacity: 1;
  pointer-events: auto;
}

/* Zoom/pan runs continuously on every slide, independent of .active —
   gating it to .active restarted the animation from scratch on every
   switch (re-adding a class resets CSS animations), which is why the
   image used to visibly "jump" back to its smallest scale on every
   cut instead of drifting smoothly. Running it always means the
   crossfade only changes which layer is visible; the motion underneath
   never resets. */
.hero-slide-bg-img {
  position: absolute;
  inset: -4px;
  background-size: cover;
  background-position: center;
  will-change: transform;
  animation: hero-zoom 16s ease-in-out infinite alternate;
}

@keyframes hero-zoom {
  from { transform: scale(1.04) translate3d(0, 0, 0); }
  to   { transform: scale(1.15) translate3d(-1.4%, -1%, 0); }
}

/* ─── Gradient overlay ───
   Two layers: horizontal for left-aligned text contrast, vertical scrim
   for a vignette (dark bottom for the nav/scroll-cue, lighter middle to
   show the image, dark top edge). Uses a near-neutral charcoal tone
   (barely-green) rather than the saturated brand green — layering a
   vivid green tint over already-green foliage photos washed the whole
   hero out to a flat "green-on-green" look with little contrast. */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(15,25,17,0.7), rgba(15,25,17,0.4), transparent),
    linear-gradient(0deg, rgba(15,25,17,.5) 0%, rgba(15,25,17,.12) 40%, rgba(15,25,17,.35) 100%);
  z-index: 1;
}

/* ─── Grain texture ─── */
.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.05;
  mix-blend-mode: overlay;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ─── Particles ───
   width/height:100% is required here: canvas is a replaced element, so
   inset:0 alone keeps it at the default 300x150 intrinsic size instead
   of stretching to fill the hero. */
.hero-particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.55;
}

/* ─── Trust marquee strip ─── */
.marquee-strip {
  background: var(--primary-950);
  color: #fff;
  padding: 0.875rem 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-strip-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 26s linear infinite;
}
.marquee-strip-group {
  display: flex;
  align-items: center;
}
.marquee-strip span {
  font-size: 0.875rem;
  font-weight: 700;
  padding: 0 1.25rem;
  letter-spacing: 0.02em;
}
.marquee-strip i {
  color: var(--primary-400);
  font-style: normal;
  opacity: 0.8;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-strip-track { animation: none; }
}

/* ─── Content wrapper (max-w-7xl + padding) ─── */
.hero-content-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-content-inner {
  max-width: 42rem;
  margin: 0 auto;
  text-align: left;
}
@media (min-width: 1280px) {
  .hero-content-inner { max-width: 42rem; margin: 0 auto 0 0; }
}

/* ─── Slide content visibility ─── */
.hero-slide-content {
  display: none;
}
.hero-slide-content.active,
.hero-slide-content.leaving {
  display: block;
}
.hero-slide-content.active {
  animation: hero-container-in 0.55s cubic-bezier(0.25, 0.1, 0.25, 1) both;
}
/* Graceful exit stage: JS holds the outgoing slide here briefly instead of
   cutting it instantly, so the slide change doesn't feel abrupt. */
.hero-slide-content.leaving {
  animation: none;
  opacity: 0;
  transform: translateX(24px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
}

/* ─── Entrance animations (staggered, left-to-right sweep) ─── */
.hero-slide-content.active .hero-tagline {
  animation: hero-fade-left-10 0.4s 0.1s cubic-bezier(0.25, 0.1, 0.25, 1) both;
}
.hero-slide-content.active .hero-title {
  animation: hero-fade-left-20 0.45s 0.15s cubic-bezier(0.25, 0.1, 0.25, 1) both;
}
.hero-slide-content.active .hero-desc {
  animation: hero-fade-left-20 0.45s 0.2s cubic-bezier(0.25, 0.1, 0.25, 1) both;
}
.hero-slide-content.active .hero-actions {
  animation: hero-fade-left-20 0.45s 0.3s cubic-bezier(0.25, 0.1, 0.25, 1) both;
}
.hero-slide-content.active .hero-features {
  animation: hero-fade-left-10 0.5s 0.4s cubic-bezier(0.25, 0.1, 0.25, 1) both;
}

@keyframes hero-container-in {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes hero-fade-left-10 {
  from { opacity: 0; transform: translateX(-16px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes hero-fade-left-20 {
  from { opacity: 0; transform: translateX(-32px); }
  to   { opacity: 1; transform: translateX(0); }
}
/* ─── Tagline ─── */
.hero-tagline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-300);
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

/* ─── Title ─── */
.hero-title {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.35;
  color: #fff;
}
@media (min-width: 640px) { .hero-title { font-size: 3rem; } }
@media (min-width: 1024px) { .hero-title { font-size: 4.5rem; } }
.hero-highlight {
  background: linear-gradient(to bottom right, #15803d, #16a34a, #10b981);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding-bottom: 0.15em;
}
.hero-title img.emoji {
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  height: 1em;
  width: 1em;
}

/* ─── Description ─── */
.hero-desc {
  margin-top: 1.5rem;
  font-size: 1.125rem;
  color: color-mix(in srgb, var(--primary-100) 80%, transparent);
  max-width: 32rem;
  line-height: 1.625;
}
@media (min-width: 640px) { .hero-desc { font-size: 1.25rem; } }

/* ─── Actions ─── */
.hero-actions {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 640px) { .hero-actions { flex-direction: row; } }
.hero-btn-secondary {
  border-color: rgba(255,255,255,0.2) !important;
  color: #fff !important;
  background: transparent !important;
}
.hero-btn-secondary:hover {
  background: rgba(255,255,255,0.1) !important;
}

/* ─── Spring hover on hero CTA buttons ─── */
.hero-actions .btn {
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.hero-actions .btn:hover {
  transform: scale(1.04);
}
.hero-actions .btn:active {
  transform: scale(0.97);
}
.hero-actions .btn-primary:hover {
  box-shadow: 0 8px 25px rgba(22, 163, 74, 0.35);
}

/* ─── Features ─── */
.hero-features {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  color: color-mix(in srgb, var(--primary-100) 90%, transparent);
  font-size: 0.875rem;
  font-weight: 500;
}
@media (min-width: 768px) {
  .hero-features {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}
.hero-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.hero-feature-dot {
  width: 6px;
  height: 6px;
  border-radius: 9999px;
  background: var(--primary-200);
  flex-shrink: 0;
}

/* ─── Navigation ─── */
.hero-nav {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 10;
}
.hero-nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 9999px;
  border: 1px solid rgba(255,255,255,0.2);
  background: transparent;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  transition: all 0.2s;
}
.hero-nav-btn:hover {
  border-color: rgba(255,255,255,0.4);
  color: #fff;
}

.hero-dots {
  display: flex;
  gap: 0.5rem;
}
.hero-dot {
  height: 8px;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
  background: rgba(255,255,255,0.3);
}
.hero-dot.active {
  width: 32px;
  background: var(--primary-400);
}
.hero-dot:not(.active) {
  width: 8px;
}
.hero-dot:not(.active):hover {
  background: rgba(255,255,255,0.5);
}

/* ─── Scroll cue ─── */
.hero-scroll-cue {
  position: absolute;
  bottom: 5.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: rgba(255,255,255,0.75);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}
.hero-scroll-line {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.25);
  overflow: hidden;
  position: relative;
}
.hero-scroll-line i {
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  animation: hero-scrollcue 2s ease infinite;
}
@keyframes hero-scrollcue {
  0% { top: -100%; }
  60% { top: 100%; }
  100% { top: 100%; }
}
@media (max-width: 640px) {
  /* Hero content wraps taller on narrow screens and collides with this cue;
     the carousel dots/arrows already signal interactivity there. */
  .hero-scroll-cue { display: none; }
}

/* ─── Floating leaves ─── */
.hero-leaves {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}
.hero-leaf {
  position: absolute;
  bottom: -40px;
  color: rgba(255,255,255,0.03);
  animation: hero-leaf-float linear infinite;
}
@keyframes hero-leaf-float {
  0%   { transform: translateY(0) rotate(0deg); opacity: 0; }
  10%  { opacity: 0.08; }
  90%  { opacity: 0.08; }
  100% { transform: translateY(-110vh) rotate(720deg); opacity: 0; }
}

/* ─── Scroll-down indicator ─── */
.hero-scrolldown {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.75);
  z-index: 3;
}
.hero-scrolldown-track {
  width: 1px;
  height: 34px;
  background: rgba(255,255,255,0.25);
  position: relative;
  overflow: hidden;
}
.hero-scrolldown-track::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  animation: wg-scrolldown 1.8s ease-in-out infinite;
}
@keyframes wg-scrolldown { 0% { top: -100%; } 60%, 100% { top: 100%; } }

/* ─── Sections ─── */
.section {
  padding: 3rem 0;
}

@media (min-width: 640px) { .section { padding: 3.5rem 0; } }
@media (min-width: 1024px) { .section { padding: 5rem 0; } }

/* ─── Section ─── */
.section {
  padding: 3rem 0;
}

@media (min-width: 640px) { .section { padding: 3.5rem 0; } }
@media (min-width: 1024px) { .section { padding: 5rem 0; } }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary-700);
  margin-bottom: 1rem;
}

.section-label-accent::before {
  content: '';
  display: block;
  width: 4px;
  height: 1.75rem;
  border-radius: 2px;
  background: linear-gradient(to bottom, var(--primary-500), var(--primary-700));
  flex-shrink: 0;
}

.section-title {
  font-size: 1.875rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

@media (min-width: 640px) { .section-title { font-size: 2.25rem; } }
@media (min-width: 1024px) { .section-title { font-size: 2.5rem; } }

.section-desc {
  margin-top: 0.75rem;
  color: var(--text-muted);
  max-width: 40rem;
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ─── Filter tabs (client-side, no page reload) ───
   A pill-shaped tab bar with a sliding indicator that animates to
   whichever tab is active; matching cards fade in/out via GSAP. */
.filter-tabs {
  position: relative;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 4px;
  background: var(--primary-50);
  padding: 5px;
  border-radius: 9999px;
  margin-top: -1rem;
  margin-bottom: 2rem;
}
.filter-tab {
  position: relative;
  z-index: 1;
  padding: 0.6rem 1.1rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--text-muted);
  background: none;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  transition: color 0.2s;
  white-space: nowrap;
}
.filter-tab.is-active { color: #fff; }
.filter-tabs__pill {
  position: absolute;
  top: 5px;
  left: 5px;
  height: calc(100% - 10px);
  border-radius: 9999px;
  background: linear-gradient(135deg, var(--primary-600), var(--primary-800));
  box-shadow: 0 4px 10px rgba(22,163,74,0.25);
  transition: left 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), width 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.section-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  margin-bottom: 2rem;
  box-shadow: var(--shadow-sm);
}

/* ─── Product Card ─── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

@media (min-width: 640px) { .product-grid { gap: 1.5rem; } }
@media (min-width: 768px) { .product-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1024px) { .product-grid { grid-template-columns: repeat(5, 1fr); } }

.product-card {
  position: relative;
  display: block;
  min-width: 0;
  text-decoration: none;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-card:hover {
  transform: translateY(-4px);
}

.product-card-image {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 1rem;
  background: var(--surface-muted);
  transition: box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-card:hover .product-card-image {
  box-shadow: var(--shadow-lg);
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-card:hover .product-card-image img {
  transform: scale(1.08);
}

.product-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.product-card:hover .product-card-overlay {
  opacity: 1;
}

.product-card-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 2;
}

/* Groups multiple top-left badges/tags in a row (used where the top-right
   corner is already taken by a wishlist button). Children override their
   own position:absolute back to static inline. */
.product-card-badges-row {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 2;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.375rem;
}

/* Section tag (Bestseller / Featured / New) — top-right corner. */
.product-card-tag {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.25rem 0.5rem;
  border-radius: 9999px;
  color: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
  line-height: 1;
}

/* Emoji-only tag — compact circle */
.product-card-tag--best,
.product-card-tag--featured,
.product-card-tag--new {
  width: 1.75rem;
  height: 1.75rem;
  padding: 0;
  font-size: 0.875rem;
  border-radius: 50%;
}
.product-card-tag--best { background: linear-gradient(135deg, #f59e0b, #b45309); }
.product-card-tag--featured { background: linear-gradient(135deg, #8b5cf6, #6d28d9); }
.product-card-tag--new { background: linear-gradient(135deg, #10b981, #047857); }

@media (max-width: 639px) {
  /* On narrow grids (3-up on mobile) the discount badge and the
     bestseller/featured/new tag crowd right on top of each other on a
     ~120px thumbnail. Keep the discount/stock badge (purchase-relevant)
     and drop the decorative tag everywhere, so the product photo itself
     stays the focus. */
  .product-card-tag {
    display: none;
  }
}

.product-card-quick-add {
  position: absolute;
  bottom: 0.75rem;
  right: 0.75rem;
  z-index: 2;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: #fff;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
  border: none;
  cursor: pointer;
  color: var(--primary-800);
  transition: all 0.2s;
}
.product-card-quick-add:hover {
  background: var(--primary-50);
}

@media (min-width: 768px) {
  .product-card-quick-add {
    transform: translateY(0.5rem);
    opacity: 0;
  }
  .product-card:hover .product-card-quick-add {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Wishlist heart — top-right, mirrors .product-card-quick-add's circular
   style; always visible (not hover-only) so the saved state stays
   glanceable, and it needs its own z-index above the badge (top-left,
   same z-index but never overlaps horizontally anyway). */
.product-card-wishlist-btn {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 3;
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: rgba(255,255,255,0.9);
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  transition: all 0.2s;
}
.product-card-wishlist-btn:hover {
  background: #fff;
  color: #e11d48;
  transform: scale(1.08);
}
.product-card-wishlist-btn.is-active {
  color: #e11d48;
}
.product-card-wishlist-btn.is-active svg {
  fill: currentColor;
}

/* Wishlist toggle on the single-plant page — sits inline next to
   Add to Cart / Buy Now, sized to match .btn-lg. */
.wishlist-toggle-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s;
}
.wishlist-toggle-btn:hover {
  border-color: #fda4af;
  color: #e11d48;
  background: #fff1f2;
}
.wishlist-toggle-btn.is-active {
  border-color: #fda4af;
  color: #e11d48;
  background: #fff1f2;
}
.wishlist-toggle-btn.is-active svg {
  fill: currentColor;
}

.product-card-body {
  margin-top: 0.75rem;
}

.product-card-title {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: color 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-card:hover .product-card-title {
  color: var(--primary-700);
}

.product-card-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  margin-top: 0.25rem;
}

.product-card-category {
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--primary-700);
  background: var(--primary-50);
  padding: 0.125rem 0.5rem;
  border-radius: 9999px;
}

.product-card-price {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.25rem;
}

.product-card-price .current {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-700);
}

.product-card-price .compare {
  font-size: 0.875rem;
  color: var(--text-subtle);
  text-decoration: line-through;
}

.product-card-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  text-transform: capitalize;
}

.product-card-meta-divider {
  color: var(--border);
}

/* ─── Shop Controls Bar ─── */
.shop-controls {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
  margin-top: -2rem;
  position: relative;
  z-index: 10;
  padding-bottom: 2.5rem;
}
@media (min-width: 640px) {
  .shop-controls { padding: 0 1.5rem; padding-bottom: 2.5rem; }
}
@media (min-width: 1024px) {
  .shop-controls { padding: 0 2rem; padding-bottom: 2.5rem; }
}

.shop-controls-card {
  border-radius: 1rem;
  background: #fff;
  border: 1px solid rgba(229,231,235,0.6);
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  padding: 1rem;
}
@media (min-width: 640px) {
  .shop-controls-card { padding: 1.5rem; }
}

.shop-controls-row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 640px) {
  .shop-controls-row {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.shop-search {
  position: relative;
  width: 100%;
}
@media (min-width: 640px) {
  .shop-search { width: 18rem; }
}
.shop-search input {
  width: 100%;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background: rgba(249,250,251,0.5);
  padding: 0.625rem 2.25rem 0.625rem 2.5rem;
  font-size: 0.875rem;
  outline: none;
  transition: all 0.2s;
}
.shop-search input:focus {
  border-color: var(--primary-500);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(34,197,94,0.1);
}
.shop-search-icon {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-subtle);
  pointer-events: none;
}
.shop-search-clear {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--text-subtle);
  cursor: pointer;
  padding: 0;
}
.shop-search-clear:hover { color: var(--text); }

.shop-controls-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.shop-count {
  font-size: 0.875rem;
  color: var(--text-muted);
  white-space: nowrap;
}

.shop-filter-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background: rgba(249,250,251,0.5);
  padding: 0.625rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}
.shop-filter-btn:hover {
  background: var(--surface-muted);
  color: var(--text);
}
.shop-filter-btn.active {
  border-color: var(--primary-500);
  background: var(--primary-50);
  color: var(--primary-700);
}
@media (min-width: 1024px) {
  .shop-filter-btn { display: none; }
}

.shop-filter-count {
  display: flex;
  width: 1.25rem;
  height: 1.25rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: var(--primary-700);
  font-size: 10px;
  font-weight: 700;
  color: #fff;
}

/* Desktop filter pills */
.shop-filter-pills {
  display: none;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(229,231,235,0.4);
}
@media (min-width: 1024px) {
  .shop-filter-pills { display: flex; }
}
.shop-filter-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.shop-pill-group {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}
.shop-pill {
  border-radius: 9999px;
  padding: 0.375rem 0.875rem;
  font-size: 0.75rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  background: var(--surface-muted);
  color: var(--text-muted);
}
.shop-pill:hover {
  background: var(--primary-50);
  color: var(--primary-700);
}
.shop-pill.active {
  background: var(--primary-700);
  color: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.shop-sort-group {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.shop-clear-btn {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--primary-700);
  background: none;
  border: none;
  cursor: pointer;
  margin-left: 0.5rem;
}
.shop-clear-btn:hover { color: var(--primary-800); }

/* Mobile filter panel */
.shop-filter-mobile {
  overflow: hidden;
}
@media (min-width: 1024px) {
  .shop-filter-mobile { display: none; }
}
.shop-filter-mobile-inner {
  padding-top: 1rem;
  border-top: 1px solid rgba(229,231,235,0.4);
  margin-top: 1rem;
}
.shop-filter-section {
  margin-bottom: 2rem;
}
.shop-filter-section:last-child { margin-bottom: 0; }
.shop-filter-section h4 {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}
.shop-filter-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* No results */
.shop-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 6rem 0;
  text-align: center;
}
.shop-empty-icon {
  display: flex;
  width: 4rem;
  height: 4rem;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  background: var(--surface-muted);
  margin-bottom: 1rem;
}
.shop-empty h3 {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--text);
}
.shop-empty p {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}
.shop-empty button {
  margin-top: 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary-700);
  background: none;
  border: none;
  cursor: pointer;
}

/* ─── Shop Pagination ─── */
.shop-pagination {
  text-align: center;
  margin-top: 3rem;
}
.shop-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  height: 2.5rem;
  padding: 0 0.5rem;
  margin: 0 0.125rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  border: 1px solid var(--border);
  transition: all 0.2s;
}
.shop-pagination .page-numbers:hover {
  border-color: var(--primary-300);
  color: var(--primary-700);
  background: var(--primary-50);
}
.shop-pagination .page-numbers.current {
  background: var(--primary-700);
  color: #fff;
  border-color: var(--primary-700);
}
.shop-pagination .page-numbers.prev,
.shop-pagination .page-numbers.next {
  padding: 0 1rem;
  font-size: 0.8125rem;
}

/* ─── Breadcrumb ─── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.breadcrumb a:hover { color: var(--primary-600); }
.breadcrumb .current { color: var(--text); }

/* ─── Single Plant ─── */
.product-detail {
  display: grid;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .product-detail {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

/* Sticky gallery only makes sense once .product-detail is a 2-column
   grid (≥1024px) with the info column scrolling beside it. Below that
   breakpoint the columns stack, so a sticky image would stay pinned
   while the page scrolls underneath it, covering the Add to Cart /
   Buy Now buttons that follow in the stacked layout. */
.product-gallery-sticky {
  align-self: start;
}
@media (min-width: 1024px) {
  .product-gallery-sticky {
    position: sticky;
    top: 6rem;
  }
}

.product-gallery {
  position: relative;
}

.product-main-image {
  aspect-ratio: 1;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--surface-muted);
}

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

.product-thumbnails {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
  overflow-x: auto;
}

.product-thumb {
  width: 72px;
  height: 72px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  flex-shrink: 0;
}

.product-thumb.active { border-color: var(--primary-500); }
.product-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* ─── Spec Card ─── */
.specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-top: 2rem;
}

@media (min-width: 640px) { .specs-grid { grid-template-columns: repeat(4, 1fr); } }

.spec-card {
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: #fff;
  padding: 1.25rem;
  transition: all 0.3s;
}

.spec-card:hover {
  border-color: var(--primary-200);
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05), 0 0 0 1px rgba(22,163,74,0.05);
  transform: translateY(-2px);
}

.spec-card-icon {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  background: var(--primary-50);
  color: var(--primary-600);
  margin-bottom: 0.75rem;
}

.spec-card-label {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-subtle);
}

.spec-card-value {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  text-transform: capitalize;
}

/* ─── Cart Actions (Quantity + Buttons) ─── */
.cart-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

@media (min-width: 640px) {
  .cart-actions {
    flex-direction: row;
    align-items: center;
  }
}

.qty-selector {
  display: flex;
  align-items: center;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background: #fff;
  flex-shrink: 0;
  align-self: flex-start;
}

.qty-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  font-size: 1.125rem;
  color: var(--text-muted);
  background: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  border-radius: 0.75rem;
}

.qty-btn:hover {
  background: var(--surface-muted);
  color: var(--text);
}

.qty-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.qty-value {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 2.75rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  user-select: none;
}

.cart-action-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}

.cart-action-buttons {
  display: flex;
  gap: 0.75rem;
  width: 100%;
}
/* Add to Cart + Buy Now + the wishlist heart are tight for space on
   narrow phones — trim the button padding so "Add to Cart" doesn't
   wrap to two lines instead of sitting flush with the others. */
@media (max-width: 400px) {
  .cart-action-buttons .btn-lg {
    padding-left: 1.125rem;
    padding-right: 1.125rem;
  }
}

.cart-buttons {
  display: flex;
  gap: 0.75rem;
}

.btn-add-cart {
  flex: 1;
}

@media (min-width: 640px) {
  .btn-add-cart {
    flex: none;
  }
}

@media (min-width: 768px) {
  .desc-care-grid { grid-template-columns: 3fr 2fr; }
}

/* ─── Animations ─── */
@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes slide-in-right {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes scale-in {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

/* ─── Footer ─── */
.site-footer {
  border-top: 1px solid var(--border);
  background: var(--surface-muted);
}

.site-footer .container {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

.footer-brand-col {
  grid-column: span 2;
}

@media (min-width: 1024px) {
  .footer-brand-col {
    grid-column: span 1;
  }
}

.footer-brand-desc {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.footer-heading {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
}

.footer-links {
  list-style: none;
  margin-top: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--text); }

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.footer-contact-item svg {
  flex-shrink: 0;
}

.footer-contact-item a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-contact-item a:hover { color: var(--primary-700); }

.footer-social-wrap {
  display: none;
  margin-top: 1.25rem;
}

@media (min-width: 1024px) {
  .footer-social-wrap { display: block; }
}

.footer-social-heading {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--surface);
  transition: all 0.2s;
}

.footer-social a:hover {
  background: #f3f4f6;
}

.footer-social-mobile {
  margin-top: 2.5rem;
  text-align: center;
}

@media (min-width: 1024px) {
  .footer-social-mobile { display: none; }
}

.br-mobile {
  display: none;
}
@media (max-width: 1023px) {
  .br-mobile { display: inline; }
}

/* ─── Mobile Footer (< 1024px) ─── */
@media (max-width: 1023px) {
  .footer-brand-col {
    text-align: center;
  }
  .footer-brand-col .site-logo {
    justify-content: center;
  }
  .footer-brand-col .logo-text {
    text-align: center !important;
  }

  .footer-grid > :nth-child(2) {
    padding-left: 1.5rem;
  }
  .footer-grid > :nth-child(3) {
    padding-left: 1rem;
  }

  .footer-grid > :nth-child(4) {
    grid-column: 1 / -1;
    text-align: center;
  }
  .footer-grid > :nth-child(4) .footer-contact-item {
    justify-content: center;
  }
}

.footer-bottom {
  position: relative;
  margin-top: 2.5rem;
  padding-top: 1.75rem;
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-muted);
}
.footer-bottom::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 7rem;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, var(--primary-400), transparent);
}

.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
@media (min-width: 640px) {
  .footer-bottom-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-copyright-year {
  font-weight: 700;
  color: var(--text);
}
.footer-copyright-brand {
  font-weight: 700;
  color: var(--primary-700);
}
.footer-copyright-sep {
  margin: 0 0.5rem;
  color: var(--text-subtle);
}
.footer-copyright-rest {
  color: var(--text-muted);
}

.footer-bottom-dev {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  white-space: nowrap;
}
.footer-bottom-dev svg {
  color: var(--primary-500);
  flex-shrink: 0;
}
.footer-bottom-dev a {
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-bottom-dev a:hover { color: var(--primary-700); }

/* ─── WhatsApp Float ─── */
.whatsapp-float {
  position: fixed;
  bottom: calc(1.5rem + 44px + 0.5rem);
  right: 1.5rem;
  z-index: 41;
  width: 56px;
  height: 56px;
  border-radius: 9999px;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37,211,102,0.4);
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: all 0.3s;
}
.whatsapp-float.is-hidden {
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  pointer-events: none;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37,211,102,0.5);
}
@media (max-width: 400px) {
  .whatsapp-float {
    width: 48px;
    height: 48px;
    right: 1rem;
    bottom: calc(1rem + 44px + 0.5rem);
  }
  .whatsapp-float svg { width: 24px; height: 24px; }
}
@media (min-width: 401px) and (max-width: 639px) {
  .whatsapp-float {
    right: 1.25rem;
    bottom: calc(1.25rem + 44px + 0.5rem);
  }
}

/* ─── Scroll to Top ─── */
.scroll-to-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 40;
  width: 44px;
  height: 44px;
  border-radius: 9999px;
  border: none;
  background: var(--primary-700);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(21,128,61,0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s;
}
.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.scroll-to-top:hover {
  background: var(--primary-800);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(21,128,61,0.45);
}
.scroll-to-top.visible:hover {
  transform: translateY(-2px);
}

/* ─── Order Tracking ─── */
.track-icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
  color: #fff;
  box-shadow: 0 8px 24px rgba(34,197,94,0.2);
  margin: 0 auto;
}

.track-form {
  display: flex;
  gap: 0.75rem;
  margin-top: 2rem;
}
.track-input-wrap {
  position: relative;
  flex: 1;
}
.track-input-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-subtle);
  pointer-events: none;
}
.track-input {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 2.75rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--surface);
  font-size: 0.875rem;
  outline: none;
  transition: all 0.2s;
  box-shadow: 0 1px 4px rgba(0,0,0,0.02);
}
.track-input:focus {
  border-color: var(--primary-500);
  box-shadow: 0 0 0 3px rgba(34,197,94,0.1);
}

.track-error {
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  border-radius: 12px;
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #dc2626;
  font-size: 0.875rem;
  text-align: center;
}

.track-hint {
  margin-top: 2.5rem;
  padding: 1.5rem;
  border-radius: 16px;
  background: var(--surface-muted);
  border: 1px solid rgba(229,231,235,0.6);
  text-align: center;
}
.track-hint p { font-size: 0.875rem; color: var(--text-muted); }
.track-hint-examples {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1rem;
}
.track-hint-btn {
  padding: 0.375rem 0.75rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--surface);
  font-family: monospace;
  font-size: 0.75rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s;
}
.track-hint-btn:hover {
  border-color: var(--primary-300);
  color: var(--primary-700);
}

/* ─── Order Result ─── */
.order-result {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.order-card {
  border-radius: 16px;
  background: var(--surface);
  border: 1px solid rgba(229,231,235,0.6);
  box-shadow: 0 1px 4px rgba(0,0,0,0.02);
  padding: 1.5rem;
}
@media (min-width: 640px) { .order-card { padding: 2rem; } }

.order-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.order-status-badge {
  display: inline-block;
  padding: 0.25rem 0.875rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
}
.order-status-badge.pending { background: #fef3c7; color: #d97706; }
.order-status-badge.confirmed { background: #dbeafe; color: #1d4ed8; }
.order-status-badge.processing { background: #e0e7ff; color: #4338ca; }
.order-status-badge.shipped { background: #ccfbf1; color: #0d9488; }
.order-status-badge.delivered { background: #dcfce7; color: #16a34a; }
.order-status-badge.cancelled { background: #f3f4f6; color: #6b7280; }
.order-status-badge.completed { background: #dcfce7; color: #16a34a; }
.order-status-badge.failed { background: #fef2f2; color: #dc2626; }
.order-status-badge.refunded { background: #f3e8ff; color: #7c3aed; }

/* ─── Timeline ─── */
.timeline { position: relative; }
.timeline-line {
  display: none;
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
}
.timeline-line-fill {
  position: absolute;
  left: 20px;
  top: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary-500), #10b981);
  transition: height 1s;
}
@media (min-width: 640px) { .timeline-line, .timeline-line-fill { display: block; } }

.timeline-step {
  display: flex;
  gap: 1rem;
  position: relative;
  z-index: 1;
}
@media (min-width: 640px) { .timeline-step { gap: 1.5rem; } }
.timeline-step + .timeline-step { margin-top: 2rem; }

.timeline-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  border: 2px solid var(--border);
  background: var(--surface);
  color: var(--text-subtle);
  flex-shrink: 0;
  transition: all 0.5s;
}
.timeline-circle.completed {
  background: var(--primary-600);
  border-color: var(--primary-600);
  color: #fff;
  box-shadow: 0 2px 8px rgba(22,163,74,0.3);
}
.timeline-circle.current {
  background: var(--surface);
  border-color: var(--primary-500);
  color: var(--primary-600);
  box-shadow: 0 2px 8px rgba(34,197,94,0.2);
}

.timeline-label {
  font-size: 0.875rem;
  font-weight: 600;
  padding-top: 6px;
}
.timeline-label.completed,
.timeline-label.current { color: var(--text); }
.timeline-label:not(.completed):not(.current) { color: var(--text-muted); }

.timeline-desc {
  font-size: 0.75rem;
  margin-top: 2px;
}
.timeline-desc.completed,
.timeline-desc.current { color: var(--text-muted); }
.timeline-desc:not(.completed):not(.current) { color: var(--text-subtle); }

/* ─── Cancelled Banner ─── */
.cancelled-banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid #fecaca;
  background: #fef2f2;
  text-align: center;
}
.cancelled-banner-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 9999px;
  background: #fee2e2;
  color: #dc2626;
  margin-bottom: 1rem;
}
.cancelled-banner h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #991b1b;
}
.cancelled-banner p {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: #dc2626;
}

/* ─── Order Items ─── */
.order-section-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.75rem;
}
.order-section-title svg { color: var(--primary-600); }

.order-item {
  display: flex;
  justify-content: space-between;
  padding: 0.375rem 0;
  border-bottom: 1px solid rgba(229,231,235,0.4);
  font-size: 0.875rem;
}
.order-item:last-child { border-bottom: none; }
.order-item-name { color: var(--text-muted); }
.order-item-qty { color: var(--text-subtle); }
.order-item-price { color: var(--text); font-weight: 500; }

.order-totals {
  border-top: 1px solid var(--border);
  padding-top: 0.5rem;
  margin-top: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.order-total-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  color: var(--text-muted);
}
.order-total-row.total {
  font-weight: 700;
  color: var(--text);
  border-top: 1px solid var(--border);
  padding-top: 0.25rem;
}
.shipping-free { color: #16a34a; font-weight: 600; }

/* ─── Order Info Grid ─── */
.order-info-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 640px) { .order-info-grid { grid-template-columns: 1fr 1fr; } }

/* ─── Support Card ─── */
.track-support {
  border-radius: 16px;
  background: linear-gradient(135deg, #f0fdf4, rgba(220,252,231,0.5));
  border: 1px solid rgba(187,247,208,0.6);
  padding: 1.5rem;
  text-align: center;
}
@media (min-width: 640px) { .track-support { padding: 2rem; } }
.track-support h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #14532d;
}
.track-support p {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: rgba(21,61,37,0.7);
}
.track-support-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1rem;
}
.track-phone-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  border-radius: 12px;
  background: var(--surface);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary-800);
  text-decoration: none;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  transition: all 0.2s;
}
.track-phone-btn:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.08); }

/* ─── Utilities ─── */
.text-center { text-align: center; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.mt-14 { margin-top: 3.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-14 { margin-bottom: 3.5rem; }
.mb-16 { margin-bottom: 4rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }
.grid { display: grid; }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.max-w-lg { max-width: 32rem; }
.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.relative { position: relative; }
.overflow-hidden { overflow: hidden; }
.block { display: block; }
.hidden { display: none; }
.h-14 { height: 3.5rem; }
.w-14 { width: 3.5rem; }
.rounded-2xl { border-radius: 1rem; }
@media (min-width: 640px) { .sm\:block { display: block; } }
@media (min-width: 640px) { .sm\:hidden { display: none; } }

/* ─── About Page (hero unified via .page-hero) ─── */

/* ─── Founder Section ─── */
.founder-label {
  color: var(--primary-700);
}
@media (min-width: 1024px) {
  .founder-label {
    color: #fff;
  }
}
.founder-grid {
  display: grid;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .founder-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.founder-image-wrap {
  position: relative;
  max-width: 28rem;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .founder-image-wrap {
    position: sticky;
    top: 6rem;
    align-self: start;
    max-width: none;
  }
}
.founder-image-dash {
  position: absolute;
  top: -12px; left: -12px;
  right: 12px; bottom: 12px;
  border: 2px dashed var(--primary-200);
  border-radius: 26px;
  opacity: 0.5;
}
@media (max-width: 639px) { .founder-image-dash { display: none; } }

.founder-image-frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.15);
  aspect-ratio: 3/4;
}
@media (min-width: 640px) { .founder-image-frame { aspect-ratio: 4/5; } }

.founder-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.founder-image-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(21,61,37,0.5), transparent);
}
.founder-image-border {
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 20px;
  pointer-events: none;
}
.founder-image-leaves {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 1;
}

.founder-badge {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  padding: 0.75rem 1.25rem;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary-600), var(--primary-800));
  color: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  display: none;
}
@media (min-width: 640px) { .founder-badge { display: block; } }
.founder-badge-number {
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
}
.founder-badge-label {
  font-size: 0.75rem;
  color: var(--primary-200);
  margin-top: 2px;
}

.founder-section-title {
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
  letter-spacing: -0.02em;
}
@media (min-width: 640px) { .founder-section-title { font-size: 2.25rem; } }

.founder-text p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
@media (min-width: 640px) { .founder-text p { font-size: 1.125rem; } }

.founder-highlight-box {
  border-radius: 16px;
  background: rgba(240,253,244,0.8);
  border: 1px solid var(--primary-100);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.25rem;
}
.founder-highlight-box p {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-800);
  margin-bottom: 0;
}
@media (min-width: 640px) { .founder-highlight-box p { font-size: 1.125rem; } }

.founder-insight-box {
  border-left: 4px solid var(--primary-500);
  background: var(--surface);
  border-radius: 0 12px 12px 0;
  padding: 1rem 1.25rem;
  margin-bottom: 1.25rem;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.founder-insight-box p {
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* ─── Quote Card ─── */
.quote-card {
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary-700), var(--primary-800));
  padding: 1.5rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
@media (min-width: 640px) { .quote-card { padding: 2rem; } }

.quote-card-icon {
  color: rgba(134,239,172,0.6);
  margin-bottom: 0.75rem;
}
.quote-card-text {
  font-size: 1.125rem;
  color: #fff;
  font-weight: 500;
  line-height: 1.6;
}
@media (min-width: 640px) { .quote-card-text { font-size: 1.25rem; } }

.quote-card-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
}
.quote-card-avatar {
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  overflow: hidden;
  border: 2px solid var(--primary-300);
  flex-shrink: 0;
}
.quote-card-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.quote-card-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
}
.quote-card-title {
  font-size: 0.75rem;
  color: var(--primary-200);
}

/* ─── Values Section ─── */
.values-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 1024px) { .values-grid { grid-template-columns: repeat(3, 1fr); } }

.value-card {
  position: relative;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 1.5rem;
  transition: all 0.5s;
}
.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}
.value-card-topbar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  border-radius: 16px 16px 0 0;
}
.value-card-badge {
  position: absolute;
  top: -12px; right: -12px;
  width: 36px;
  height: 36px;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  opacity: 0;
  transition: all 0.5s;
}
.value-card:hover .value-card-badge {
  opacity: 1;
  transform: scale(1.1);
}
.value-card-blob {
  position: absolute;
  bottom: -24px; right: -24px;
  width: 128px;
  height: 128px;
  border-radius: 9999px;
  opacity: 0.5;
  transition: all 0.5s;
}
.value-card:hover .value-card-blob {
  transform: scale(1.5);
  opacity: 0.8;
}
.value-card-icon {
  position: relative;
  z-index: 1;
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: all 0.5s;
}
.value-card:hover .value-card-icon {
  transform: scale(1.1);
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.value-card-icon svg {
  width: 32px;
  height: 32px;
}
.value-card h3 {
  position: relative;
  z-index: 1;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
}
.value-card-bar {
  position: relative;
  z-index: 1;
  width: 40px;
  height: 4px;
  border-radius: 9999px;
  margin-top: 0.75rem;
  transition: all 0.5s;
}
.value-card:hover .value-card-bar { width: 64px; }
.value-card p {
  position: relative;
  z-index: 1;
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.value-card-footer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 1.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  opacity: 0;
  transition: all 0.5s;
}
.value-card:hover .value-card-footer { opacity: 1; }
.value-card-footer svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s;
}
.value-card:hover .value-card-footer svg { transform: translateX(4px); }

/* ─── Service Hero (unified via .page-hero) ─── */

/* ─── Service Search ─── */
.service-search-wrap {
  position: relative;
  width: 100%;
}
@media (min-width: 640px) {
  .service-search-wrap { width: 16rem; }
}

.service-search-icon {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  color: var(--text-subtle);
}

.service-search-input {
  width: 100%;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background: var(--surface-muted);
  padding: 0.625rem 2.25rem;
  font-size: 0.875rem;
  outline: none;
  transition: all 0.2s;
  box-sizing: border-box;
}
.service-search-input:focus {
  border-color: var(--primary-500);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(34,197,94,0.1);
}

.service-search-clear {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: none;
  cursor: pointer;
  color: var(--text-subtle);
  padding: 0;
}

/* ─── Service Clear Button ─── */
.service-clear-btn {
  margin-left: auto;
  border: none;
  background: none;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary-700);
  cursor: pointer;
}

/* ─── Service Empty State ─── */
.service-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 6rem 1rem;
  text-align: center;
}

.service-empty-icon {
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  background: var(--surface-muted);
  margin-bottom: 1rem;
}
.service-empty-icon svg {
  width: 24px;
  height: 24px;
  color: var(--text-subtle);
}

.service-empty-title {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--text);
}

.service-empty-desc {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.service-empty-link {
  margin-top: 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary-700);
  text-decoration: none;
}

/* ─── Services Grid ─── */
.service-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 640px) { .service-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .service-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  display: block;
  text-decoration: none;
  background: var(--surface);
  border: 1px solid rgba(229,231,235,0.6);
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.5s;
}
.service-card:hover {
  box-shadow: 0 25px 50px -12px rgba(34,197,94,0.1);
  transform: translateY(-4px);
}

.service-card-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}

.service-card:hover .service-card-image img { transform: scale(1.1); }

.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0.1), transparent);
  pointer-events: none;
}

.service-card-type-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  border-radius: 9999px;
  background: rgba(255,255,255,0.15);
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: #fff;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1);
}
.service-card-type-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 9999px;
  background: rgba(255,255,255,0.8);
}

.service-card-title-overlay {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
}
.service-card-title-overlay h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}
.service-card-location {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 0.25rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
}

.service-card-arrow {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: rgba(255,255,255,0.15);
  color: #fff;
  opacity: 0;
  transform: translateX(0.5rem);
  backdrop-filter: blur(8px);
  transition: all 0.3s;
}
.service-card:hover .service-card-arrow {
  opacity: 1;
  background: rgba(255,255,255,0.25);
  transform: translateX(0);
}

.service-card-body {
  padding: 1.25rem;
}

.service-card-date {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.service-card-testimonial {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  font-style: italic;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-clamp: 2;
  overflow: hidden;
}

.service-card-cta {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary-600);
  transition: all 0.3s;
}
.service-card:hover .service-card-cta {
  gap: 0.5rem;
}
.service-card-cta svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s;
}
.service-card:hover .service-card-cta svg {
  transform: translate(2px, -2px);
}

/* ─── Service Controls Bar ─── */
.service-controls {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
  margin-top: -2rem;
  position: relative;
  z-index: 10;
  padding-bottom: 5rem;
}
@media (min-width: 640px) {
  .service-controls { padding: 0 1.5rem; padding-bottom: 5rem; }
}
@media (min-width: 1024px) {
  .service-controls { padding: 0 2rem; padding-bottom: 5rem; }
}

.service-stats-bar {
  border-radius: 1rem;
  background: #fff;
  border: 1px solid rgba(229,231,235,0.6);
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  padding: 1.5rem;
}
@media (min-width: 640px) {
  .service-stats-bar { padding: 2rem; }
}
.service-stats-row {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .service-stats-row {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.service-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.service-stats-item {
  text-align: center;
}
@media (min-width: 640px) {
  .service-stats-item { text-align: left; }
}
.service-stats-divider {
  width: 1px;
  height: 2.5rem;
  background: rgba(229,231,235,0.6);
}
.service-stats-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
}
.service-stats-label {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.service-filter-pills {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  border-top: 1px solid rgba(229,231,235,0.4);
  padding-top: 1.5rem;
}
.service-pill {
  border-radius: 9999px;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  background: var(--surface-muted);
  color: var(--text-muted);
}
.service-pill:hover {
  background: var(--primary-50);
  color: var(--primary-700);
}
.service-pill.active {
  background: var(--primary-700);
  color: #fff;
  box-shadow: 0 10px 15px -3px rgba(34,197,94,0.25);
}

.service-grid-section {
  margin-top: 2.5rem;
  padding-bottom: 5rem;
}
@media (min-width: 640px) {
  .service-grid-section { padding-bottom: 7rem; }
}

/* ─── Contact Page ─── */
/* ─── Contact Hero (unified via .page-hero) ─── */

.contact-section {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
  margin-top: -2rem;
  position: relative;
  z-index: 10;
  padding-bottom: 5rem;
}
@media (min-width: 640px) {
  .contact-section { padding: 0 1.5rem; padding-bottom: 7rem; }
}
@media (min-width: 1024px) {
  .contact-section { padding: 0 2rem; padding-bottom: 7rem; }
}
@media (min-width: 1024px) {
  .contact-grid { display: grid; grid-template-columns: 2fr 3fr; gap: 2.5rem; }
}

.contact-info-card {
  border-radius: 1rem;
  background: #fff;
  border: 1px solid rgba(229,231,235,0.6);
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  padding: 1.5rem;
}
@media (min-width: 640px) {
  .contact-info-card { padding: 2rem; }
}
.contact-info-card h2 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.contact-info-card h2 .icon-wrap {
  display: flex;
  width: 2rem;
  height: 2rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  background: var(--primary-100);
  color: var(--primary-700);
}
.contact-info-list {
  margin-top: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.contact-info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(229,231,235,0.6);
  background: rgba(249,250,251,0.5);
  padding: 1rem;
  transition: all 0.3s;
  text-decoration: none;
  cursor: pointer;
}
.contact-info-item:hover {
  border-color: transparent;
  box-shadow: 0 10px 15px -3px rgba(34,197,94,0.05);
  transform: translateY(-2px);
}
.contact-info-icon {
  display: flex;
  width: 2.75rem;
  height: 2.75rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  color: #fff;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
  transition: all 0.3s;
}
.contact-info-item:hover .contact-info-icon {
  transform: scale(1.1) rotate(3deg);
}
.contact-info-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.contact-info-value {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.contact-info-arrow {
  margin-left: auto;
  flex-shrink: 0;
  color: var(--text-subtle);
  transition: all 0.3s;
}
.contact-info-item:hover .contact-info-arrow {
  transform: translateX(4px);
  color: var(--primary-600);
}

/* Contact Form */
.contact-form-card {
  border-radius: 1rem;
  background: #fff;
  border: 1px solid rgba(229,231,235,0.6);
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  padding: 1.5rem;
}
@media (min-width: 640px) {
  .contact-form-card { padding: 2.5rem; }
}
.contact-form-card h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.contact-form-card h2 .icon-wrap {
  display: flex;
  width: 2rem;
  height: 2rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  background: var(--primary-100);
  color: var(--primary-700);
}
.contact-form-desc {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}
.contact-form {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-form-row {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .contact-form-row { grid-template-columns: 1fr 1fr; }
}
.contact-field label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.375rem;
}
.contact-field label .required {
  color: #ef4444;
}
.contact-field input,
.contact-field textarea {
  width: 100%;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background: rgba(249,250,251,0.5);
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  outline: none;
  transition: all 0.2s;
  font-family: inherit;
}
.contact-field input:focus,
.contact-field textarea:focus {
  border-color: var(--primary-500);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(34,197,94,0.1);
}
.contact-field textarea {
  resize: vertical;
  min-height: 120px;
}
.contact-form-footer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  padding-top: 0.5rem;
}
@media (min-width: 640px) {
  .contact-form-footer {
    flex-direction: row;
    align-items: center;
  }
}
.contact-form-note {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Contact Form Success */
.contact-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem;
  min-height: 400px;
}
.contact-success-icon {
  display: flex;
  width: 5rem;
  height: 5rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: linear-gradient(135deg, #4ade80, #16a34a);
  box-shadow: 0 10px 25px rgba(34,197,94,0.2);
}
.contact-success h3 {
  margin-top: 1.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
}
.contact-success p {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  max-width: 20rem;
}

/* Contact Social */
.contact-social-section {
  margin-top: 2.5rem;
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 1024px) {
  .contact-social-section { grid-template-columns: 2fr 3fr; }
}
.contact-social-card {
  border-radius: 1rem;
  background: #fff;
  border: 1px solid rgba(229,231,235,0.6);
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  padding: 1.5rem;
}
@media (min-width: 640px) {
  .contact-social-card { padding: 2rem; }
}
.contact-social-card h2 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.contact-social-card h2 .icon-wrap {
  display: flex;
  width: 2rem;
  height: 2rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  background: var(--primary-100);
  color: var(--primary-700);
}
.contact-social-desc {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}
.contact-social-grid {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}
.contact-social-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(229,231,235,0.6);
  background: rgba(249,250,251,0.5);
  padding: 1rem;
  text-decoration: none;
  transition: all 0.3s;
}
.contact-social-link:hover {
  border-color: transparent;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.05);
}
.contact-social-link-icon {
  display: flex;
  width: 2.5rem;
  height: 2.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  transition: all 0.3s;
}
.contact-social-link:hover .contact-social-link-icon {
  transform: scale(1.1) rotate(6deg);
}
.contact-social-link-label {
  font-size: 10px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}
.contact-social-link:hover .contact-social-link-label {
  color: var(--text);
}

.contact-cta-card {
  border-radius: 1rem;
  background: linear-gradient(135deg, #f0fdf4, rgba(219,234,254,0.5));
  border: 1px solid rgba(187,247,208,0.6);
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
@media (min-width: 640px) {
  .contact-cta-card { padding: 2rem; }
}
.contact-cta-inner {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-cta-icon {
  width: 2rem;
  height: 2rem;
  color: var(--primary-400);
  flex-shrink: 0;
}
.contact-cta-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #064e3b;
}
.contact-cta-text {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: rgba(6,78,59,0.7);
}

.contact-map-card {
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(229,231,235,0.6);
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  height: 100%;
  min-height: 300px;
}
.contact-map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 300px;  
  border: 0;
}

/* ─── Legal Pages (Terms & Privacy) ─── */
.legal-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #064e3b, #065f46, #166534);
  padding: 5rem 0 7rem;
}
@media (min-width: 640px) {
  .legal-hero { padding: 7rem 0; }
}
.legal-hero-blob {
  position: absolute;
  border-radius: 9999px;
  pointer-events: none;
  filter: blur(48px);
}
.legal-hero-blob-1 {
  top: -10rem;
  right: -10rem;
  width: 500px;
  height: 500px;
  background: rgba(167,243,208,0.1);
}
.legal-hero-blob-2 {
  bottom: -10rem;
  left: -10rem;
  width: 400px;
  height: 400px;
  background: rgba(187,247,208,0.1);
}
.legal-hero-leaf {
  position: absolute;
  color: rgba(255,255,255,0.05);
  pointer-events: none;
}
.legal-hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 48rem;
  margin: 0 auto;
}
.legal-hero-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 9999px;
  background: rgba(255,255,255,0.1);
  padding: 0.375rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.1);
}
.legal-hero h1 {
  margin-top: 1.5rem;
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: #fff;
}
@media (min-width: 640px) {
  .legal-hero h1 { font-size: 3rem; }
}
@media (min-width: 1024px) {
  .legal-hero h1 { font-size: 3.75rem; }
}
.legal-hero p {
  margin-top: 1rem;
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 640px) {
  .legal-hero p { font-size: 1.125rem; }
}
.legal-hero-date {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
}

.legal-content {
  position: relative;
  padding: 5rem 0 7rem;
}
.legal-content-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.legal-content-inner {
  max-width: 48rem;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) {
  .legal-content-inner { padding: 0 1.5rem; }
}
@media (min-width: 1024px) {
  .legal-content-inner { padding: 0 2rem; }
}
.legal-cards {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.legal-card {
  border-radius: 1rem;
  border: 1px solid rgba(229,231,235,0.6);
  background: #fff;
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  transition: all 0.3s;
}
@media (min-width: 640px) {
  .legal-card { padding: 2rem; }
}
.legal-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.05), 0 4px 6px -4px rgba(0,0,0,0.05);
  border-color: rgba(187,247,208,0.6);
}
.legal-card-inner {
  display: flex;
  gap: 1rem;
}
@media (min-width: 640px) {
  .legal-card-inner { gap: 1.25rem; }
}
.legal-card-icon {
  display: none;
  width: 3rem;
  height: 3rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  background: linear-gradient(135deg, #f0fdf4, #dcfce7);
  color: #15803d;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  transition: all 0.3s;
}
.legal-card:hover .legal-card-icon {
  transform: scale(1.1) rotate(3deg);
}
@media (min-width: 640px) {
  .legal-card-icon { display: flex; }
}
.legal-card-body {
  flex: 1;
  min-width: 0;
}
.legal-card-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
@media (min-width: 640px) {
  .legal-card-title { font-size: 1.25rem; }
}
.legal-card-title-icon {
  display: flex;
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, #f0fdf4, #dcfce7);
  color: #15803d;
}
@media (min-width: 640px) {
  .legal-card-title-icon { display: none; }
}
.legal-card-text {
  margin-top: 0.75rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.8;
}
@media (min-width: 640px) {
  .legal-card-text { font-size: 1rem; }
}
.legal-card-text p {
  margin-top: 1rem;
}
.legal-card-text p:first-child {
  margin-top: 0;
}
.legal-card-list {
  margin-top: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.legal-bullet {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  color: var(--text-muted);
}
.legal-bullet-dot {
  margin-top: 0.375rem;
  width: 6px;
  height: 6px;
  flex-shrink: 0;
  border-radius: 9999px;
  background: var(--primary-500);
}
.legal-highlight-card {
  margin-top: 2rem;
  border-radius: 1rem;
  border: 1px solid rgba(187,247,208,0.6);
  background: linear-gradient(135deg, #f0fdf4, rgba(219,234,254,0.5));
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
@media (min-width: 640px) {
  .legal-highlight-card { padding: 2rem; }
}
.legal-highlight-inner {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.legal-highlight-icon {
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  background: #15803d;
  color: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.legal-highlight-title {
  font-weight: 700;
  color: #064e3b;
}
.legal-highlight-text {
  margin-top: 0.5rem;
  font-size: 0.9375rem;
  color: rgba(6,78,59,0.7);
  line-height: 1.6;
}

.legal-cta {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #15803d, #166534);
  padding: 5rem 0;
}
.legal-cta-blob-1 {
  position: absolute;
  top: 0;
  right: 0;
  width: 16rem;
  height: 16rem;
  border-radius: 9999px;
  background: rgba(167,243,208,0.1);
  filter: blur(48px);
  pointer-events: none;
}
.legal-cta-blob-2 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 12rem;
  height: 12rem;
  border-radius: 9999px;
  background: rgba(187,247,208,0.1);
  filter: blur(48px);
  pointer-events: none;
}
.legal-cta-leaf {
  position: absolute;
  left: 2.5rem;
  bottom: 2.5rem;
  color: rgba(255,255,255,0.05);
  pointer-events: none;
}
.legal-cta-inner {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 48rem;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) {
  .legal-cta-inner { padding: 0 1.5rem; }
}
@media (min-width: 1024px) {
  .legal-cta-inner { padding: 0 2rem; }
}
.legal-cta h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: #fff;
}
@media (min-width: 640px) {
  .legal-cta h2 { font-size: 2.25rem; }
}
.legal-cta p {
  margin-top: 1rem;
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 640px) {
  .legal-cta p { font-size: 1.125rem; }
}
.legal-cta-buttons {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
@media (min-width: 640px) {
  .legal-cta-buttons {
    flex-direction: row;
  }
}

/* ═══════════════════════════════════════════
   Homepage Sections
   ═══════════════════════════════════════════ */

/* ─── Section background modifiers ─── */
.surface-muted { background: var(--surface-muted); }
.primary-950-bg { background: var(--primary-950); }
.gradient-primary { background: linear-gradient(135deg, var(--primary-900), var(--primary-950)); }

/* ─── Grid layout utilities ─── */
.grid-cols-1 { grid-template-columns: repeat(1, 1fr); }
.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (min-width: 640px) { .sm\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 640px) { .sm\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 640px) { .sm\:grid-cols-4 { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1024px) { .lg\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .lg\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .lg\:grid-cols-4 { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1024px) { .lg\:grid-cols-5 { grid-template-columns: repeat(5, 1fr); } }

/* ─── Spacing utilities ─── */
.py-0 { padding-top: 0; padding-bottom: 0; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
@media (min-width: 640px) { .sm\:py-24 { padding-top: 6rem; padding-bottom: 6rem; } }
@media (min-width: 640px) { .sm\:py-28 { padding-top: 7rem; padding-bottom: 7rem; } }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.p-10 { padding: 2.5rem; }
.inline-flex { display: inline-flex; }

/* ─── Text colors ─── */
.text-white { color: #fff; }
.text-primary-300 { color: var(--primary-300); }
.text-primary-700 { color: var(--primary-700); }
.text-text { color: var(--text); }
.text-muted { color: var(--text-muted); }
.text-sm { font-size: 0.9375rem; }
.text-xs { font-size: 0.8125rem; }
.text-lg { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }
.tracking-tight { letter-spacing: -0.025em; }
.tracking-wide { letter-spacing: 0.025em; }
.tracking-wider { letter-spacing: 0.05em; }
.leading-relaxed { line-height: 1.625; }
.leading-tight { line-height: 1.25; }

/* ─── Decorative blurred blobs ─── */
.blob-wrap { pointer-events: none; position: absolute; inset: 0; overflow: hidden; }
.blob { position: absolute; border-radius: 9999px; filter: blur(48px); pointer-events: none; }
.blob-1 { width: 24rem; height: 24rem; }
.blob-2 { width: 20rem; height: 20rem; }
.blob-emerald { background: rgba(16,185,129,0.1); }
.blob-primary { background: rgba(34,197,94,0.1); }
.blob-amber { background: rgba(245,158,11,0.08); }

/* ─── Inline badge / label pill ─── */
.label-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  border-radius: 9999px;
  border: 1px solid var(--primary-100);
  background: var(--primary-50);
  padding: 0.375rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary-700);
}

/* ─── Icon container (rounded square) ─── */
.icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
}

/* ─── Audience Cards ─── */
.home-audience {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 1rem;
}
@media (min-width:640px) { .home-audience { gap: 1.5rem; } }
@media (min-width:640px) { .home-audience { grid-template-columns: repeat(2,1fr); } }
@media (min-width:1024px) { .home-audience { grid-template-columns: repeat(4,1fr); } }

.audience-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  text-align: center;
  transition: all 0.3s;
  overflow: hidden;
}
.audience-card:hover {
  border-color: var(--primary-200);
  box-shadow: var(--shadow-lg), 0 0 20px rgba(34,197,94,0.05);
  transform: translateY(-4px);
}

.audience-card-accent-line {
  width: 2.5rem;
  height: 0.125rem;
  margin: 1rem auto 0;
  background: var(--border);
  border-radius: 9999px;
  transition: all 0.5s;
}
.audience-card:hover .audience-card-accent-line {
  width: 4rem;
  background: var(--primary-300);
}

.audience-card-dot {
  width: 0.5rem;
  height: 0.5rem;
  margin: 1.25rem auto 0;
  border-radius: 9999px;
  transition: all 0.5s;
}

/* ─── Audience card icon colors ─── */
.audience-icon-emerald { background: #d1fae5; color: #047857; }
.audience-icon-blue { background: #dbeafe; color: #1d4ed8; }
.audience-icon-amber { background: #fef3c7; color: #b45309; }
.audience-icon-rose { background: #ffe4e6; color: #be123c; }
.audience-accent-emerald { color: #059669; }
.audience-accent-blue { color: #2563eb; }
.audience-accent-amber { color: #d97706; }
.audience-accent-rose { color: #e11d48; }
.audience-dot-emerald { background: #d1fae5; }
.audience-dot-blue { background: #dbeafe; }
.audience-dot-amber { background: #fef3c7; }
.audience-dot-rose { background: #ffe4e6; }

/* ─── What We Do Cards ─── */
.home-services {
  display: grid;
  gap: 1.5rem;
}
@media (min-width:640px) { .home-services { grid-template-columns: repeat(2,1fr); } }
@media (min-width:1024px) { .home-services { grid-template-columns: repeat(3,1fr); } }

.service-home-card {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: var(--surface);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.4s var(--ease);
  overflow: hidden;
}
.service-home-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--svc-1, var(--primary-400)), transparent);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.service-home-card:hover::before {
  opacity: 1;
}
.service-home-card:hover {
  border-color: color-mix(in srgb, var(--svc-1, var(--primary-200)) 45%, var(--border));
  box-shadow: var(--shadow-lg), 0 0 40px color-mix(in srgb, var(--svc-1, #22c55e) 12%, transparent);
  transform: translateY(-4px);
}
.service-home-card .icon-box {
  width: 4.5rem;
  height: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, color-mix(in srgb, var(--svc-1, var(--primary-500)) 14%, white), color-mix(in srgb, var(--svc-2, var(--primary-700)) 22%, white));
  border-radius: 1.125rem;
  margin: 0 auto 1.25rem;
  transition: all 0.4s var(--ease);
  position: relative;
}
.service-home-card .icon-box::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 1.375rem;
  background: linear-gradient(135deg, var(--svc-1, var(--primary-300)), transparent);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  z-index: -1;
}
.service-home-card:hover .icon-box {
  background: linear-gradient(135deg, var(--svc-1, var(--primary-600)), var(--svc-2, var(--primary-700)));
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 8px 24px color-mix(in srgb, var(--svc-1, #22c55e) 30%, transparent);
}
.service-home-card:hover .icon-box::after {
  opacity: 0.4;
}

.service-home-card .icon-box svg {
  color: var(--svc-2, var(--primary-700));
  transition: transform 0.4s var(--ease), color 0.4s var(--ease);
}
.service-home-card:hover .icon-box svg {
  color: #fff;
  transform: scale(1.12) rotate(-6deg);
}

.service-home-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
  transition: color 0.3s var(--ease);
}
.service-home-card:hover h3 {
  color: var(--svc-2, var(--primary-700));
}
.service-home-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.625;
}

/* ─── What We Do – extra polish ─── */
.services-cta-wrap {
  margin-top: 3rem;
  text-align: center;
}

/* ─── Soil Less Media — Premium Standalone Section ─── */
.soil-less-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #052e16 0%, #14532d 35%, #166534 65%, #14532d 100%);
  padding: 4rem 0;
}
@media (min-width: 640px) { .soil-less-section { padding: 5rem 0; } }
@media (min-width: 1024px) { .soil-less-section { padding: 6rem 0; } }

/* Floating background blobs */
.soil-less-bg-blobs {
  pointer-events: none;
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.soil-less-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.soil-less-blob-1 {
  width: 24rem;
  height: 24rem;
  background: rgba(74,222,128,0.32);
  top: -20%;
  right: -10%;
  animation: soil-less-float 8s ease-in-out infinite;
}
.soil-less-blob-2 {
  width: 18rem;
  height: 18rem;
  background: rgba(16,185,129,0.28);
  bottom: -15%;
  left: -8%;
  animation: soil-less-float 10s ease-in-out infinite reverse;
}
.soil-less-blob-3 {
  width: 14rem;
  height: 14rem;
  background: rgba(250,204,21,0.16);
  top: 40%;
  left: 50%;
  animation: soil-less-float 12s ease-in-out infinite 2s;
}
@keyframes soil-less-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -30px) scale(1.05); }
}

.soil-less-inner {
  position: relative;
  display: grid;
  align-items: center;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .soil-less-inner { grid-template-columns: 1fr 1.3fr; gap: 4rem; }
}

/* Visual / icon side */
.soil-less-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2.5rem;
}

/* Animated gradient BORDER hugging the frame — a thin (~3px) ring that
   cycles color via a CSS mask (so it stays a crisp visible ring no matter
   how transparent the glass frame is), plus a heavily blurred twin behind
   it for a soft ambient halo. On-brand green/gold, not literal rainbow. */
.soil-less-visual-glow {
  position: absolute;
  z-index: 0;
  box-sizing: border-box;
  width: 14.5rem;
  height: 14.5rem;
  border-radius: 2.25rem;
  padding: 3px;
  background: linear-gradient(45deg, #4ade80, #16a34a, #facc15, #22c55e, #10b981, #4ade80, #16a34a, #facc15, #22c55e, #10b981);
  background-size: 400% 400%;
  animation: soil-less-glow-cycle 10s linear infinite;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}
.soil-less-visual-glow::before {
  content: '';
  position: absolute;
  inset: -3rem;
  border-radius: 50%;
  background: linear-gradient(45deg, #4ade80, #16a34a, #facc15, #22c55e, #10b981, #4ade80, #16a34a, #facc15, #22c55e, #10b981);
  background-size: 400% 400%;
  animation: soil-less-glow-cycle 10s linear infinite;
  filter: blur(50px);
  opacity: 0.75;
  z-index: -1;
}
@keyframes soil-less-glow-cycle {
  0% { background-position: 0% 0%; }
  50% { background-position: 400% 0%; }
  100% { background-position: 0% 0%; }
}
@media (min-width: 640px) {
  .soil-less-visual-glow { width: 16.5rem; height: 16.5rem; }
}

.soil-less-icon-frame {
  position: relative;
  z-index: 1;
  width: 14rem;
  height: 14rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2rem;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255,255,255,0.09), rgba(255,255,255,0.02));
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 30px 60px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.16), inset 0 0 50px rgba(74,222,128,0.08);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.soil-less-icon-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 28% 22%, rgba(255,255,255,0.14), transparent 55%);
  pointer-events: none;
}
.soil-less-icon-frame:hover {
  transform: scale(1.03);
  box-shadow: 0 40px 80px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.2), inset 0 0 60px rgba(74,222,128,0.12);
}
.soil-less-icon-frame img {
  position: relative;
  width: 8rem;
  height: 8rem;
  object-fit: contain;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.35));
  transition: transform 0.4s var(--ease);
}
.soil-less-icon-frame:hover img {
  transform: scale(1.05) translateY(-2px);
}
@media (min-width: 640px) {
  .soil-less-icon-frame { width: 16rem; height: 16rem; }
  .soil-less-icon-frame img { width: 10rem; height: 10rem; }
}

.soil-less-badge-float {
  position: absolute;
  top: 0.25rem;
  right: 0.25rem;
  z-index: 2;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  animation: soil-less-badge-pulse 3s ease-in-out infinite;
}
@keyframes soil-less-badge-pulse {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.08) rotate(8deg); }
}
@media (min-width: 1024px) {
  .soil-less-badge-float { top: 1.25rem; right: 1.75rem; }
}

/* Content side */
.soil-less-content {
  display: flex;
  flex-direction: column;
}

.soil-less-pill-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.soil-less-pill {
  display: inline-flex;
  border-radius: 9999px;
  padding: 0.375rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(4px);
  transition: all 0.3s var(--ease);
}
.soil-less-pill:hover { transform: translateY(-1px); }
.soil-less-pill-emerald {
  background: rgba(16,185,129,0.2);
  color: #a7f3d0;
  border-color: rgba(16,185,129,0.25);
  box-shadow: 0 0 20px rgba(16,185,129,0.08);
}
.soil-less-pill-primary {
  background: rgba(34,197,94,0.15);
  color: #bbf7d0;
  border-color: rgba(34,197,94,0.2);
}

.soil-less-title {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}
@media (min-width: 640px) { .soil-less-title { font-size: 2.5rem; } }
@media (min-width: 1024px) { .soil-less-title { font-size: 2.75rem; } }

.soil-less-subtitle {
  font-size: 1.05rem;
  color: rgba(187,247,208,0.7);
  line-height: 1.6;
  max-width: 32rem;
  margin-bottom: 0.5rem;
}

.soil-less-item-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-top: 1.5rem;
}
@media (min-width: 640px) { .soil-less-item-grid { grid-template-columns: repeat(4, 1fr); } }
.soil-less-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  border-radius: 1rem;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(6px);
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255,255,255,0.06);
  transition: all 0.3s var(--ease);
  cursor: default;
}
.soil-less-item:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(74,222,128,0.2);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.soil-less-item-icon { font-size: 1.25rem; line-height: 1; }
.soil-less-item-label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255,255,255,0.92);
}

.soil-less-desc {
  margin-top: 1.5rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
  max-width: 36rem;
}

.soil-less-content .btn {
  align-self: flex-start;
  margin-top: 1.75rem;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  border: none;
  box-shadow: 0 8px 24px rgba(34,197,94,0.25);
}
.soil-less-content .btn:hover {
  background: linear-gradient(135deg, #16a34a, #15803d);
  box-shadow: 0 12px 32px rgba(34,197,94,0.35);
  transform: translateY(-3px);
}

/* ─── Problem vs Solution ─── */
.vs-section {
  position: relative;
  overflow: hidden;
}

.vs-grid {
  display: grid;
  gap: 2rem;
  position: relative;
}
@media (min-width: 1024px) { .vs-grid { grid-template-columns: 1fr 1fr; gap: 4rem; } }

.vs-badge-wrap {
  display: none;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}
@media (min-width: 1024px) { .vs-badge-wrap { display: block; } }
.vs-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, #fff, #fefce8);
  box-shadow: 0 0 0 4px rgba(255,255,255,0.8), 0 4px 24px rgba(0,0,0,0.12);
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: #f59e0b;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.vs-badge.revealed {
  animation: vs-badge-in 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards, pulse-glow 3s ease-in-out 0.8s infinite;
}
@keyframes vs-badge-in {
  0% { transform: scale(0) rotate(-180deg); opacity: 0; }
  100% { transform: scale(1) rotate(0deg); opacity: 1; }
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 4px rgba(255,255,255,0.8), 0 4px 24px rgba(0,0,0,0.12); }
  50% { box-shadow: 0 0 0 8px rgba(255,255,255,0.9), 0 8px 32px rgba(0,0,0,0.15); }
}
.vs-line {
  position: absolute;
  top: 50%;
  height: 1px;
  width: 4rem;
}
.vs-line-right { left: 100%; background: linear-gradient(to left, transparent, var(--border)); }
.vs-line-left { right: 100%; background: linear-gradient(to right, transparent, var(--border)); }

.problem-header, .solution-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.problem-header-icon, .solution-header-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.625rem;
  font-size: 1rem;
  font-weight: 700;
  transition: transform 0.3s;
}
.problem-header:hover .problem-header-icon,
.solution-header:hover .solution-header-icon {
  transform: scale(1.15);
}
.problem-header-icon { background: #fef3c7; color: #b45309; }
.solution-header-icon { background: #d1fae5; color: #047857; }
.problem-header-label, .solution-header-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.problem-header-label { color: #d97706; }
.solution-header-label { color: #059669; }

.vs-item {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  background: #fff;
  padding: 1.25rem 1.5rem;
  border: 1px solid;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.vs-item:hover {
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.08), 0 8px 10px -6px rgba(0,0,0,0.05);
  transform: translateY(-3px);
}
.vs-item-inner {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.vs-item-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  flex-shrink: 0;
  transition: transform 0.3s;
}
.vs-item:hover .vs-item-icon {
  transform: scale(1.1) rotate(-5deg);
}
.vs-item-text { min-width: 0; }
.vs-item-text p:first-child { font-size: 1rem; font-weight: 600; }
.vs-item-text p:last-child { font-size: 0.875rem; margin-top: 0.125rem; }

.vs-item-problem {
  border-color: rgba(253,230,138,0.6);
  --vs-accent: #f59e0b;
}
.vs-item-problem .vs-item-icon { background: linear-gradient(135deg, #fef3c7, #fde68a); color: #d97706; }
.vs-item-problem .vs-item-text p:first-child { color: #1f2937; }
.vs-item-problem .vs-item-text p:last-child { color: var(--text-muted); }
.vs-item-problem .vs-accent-bar {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 0.375rem;
  background: linear-gradient(to bottom, #fbbf24, #f59e0b);
  border-radius: 0 9999px 9999px 0;
}

.vs-item-solution {
  border-color: rgba(167,243,208,0.6);
  --vs-accent: #10b981;
}
.vs-item-solution .vs-item-icon { background: linear-gradient(135deg, #d1fae5, #a7f3d0); color: #059669; }
.vs-item-solution .vs-item-text p:first-child { color: #1f2937; }
.vs-item-solution .vs-item-text p:last-child { color: var(--text-muted); }
.vs-item-solution .vs-accent-bar {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 0.375rem;
  background: linear-gradient(to bottom, #34d399, #10b981);
  border-radius: 0 9999px 9999px 0;
}

.vs-counter-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3.5rem;
}
.vs-counter-value {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--primary-700);
}
.vs-counter-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.125rem;
}

.vs-bottom-cta {
  text-align: center;
  margin-top: 3rem;
}
.vs-bottom-cta p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* ─── Why Choose Us ─── */
.why-us-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3.5rem;
}
.why-us-stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary-600), var(--primary-800));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.why-us-stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.125rem;
}

.features-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width:640px) { .features-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width:1024px) { .features-grid { grid-template-columns: repeat(4,1fr); } }

.why-us-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: var(--surface);
  padding: 1.5rem;
  text-align: center;
  transition: all 0.5s;
}
.why-us-card:hover {
  border-color: var(--primary-200);
  box-shadow: var(--shadow-xl), 0 0 20px rgba(34,197,94,0.05);
  transform: translateY(-6px);
}

.why-us-card-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  opacity: 0;
  transition: opacity 0.5s;
  border-radius: 0 0 9999px 9999px;
}
.why-us-card:hover .why-us-card-bar { opacity: 1; }

.why-us-card-icon-wrap {
  position: relative;
  margin: 0 auto 1.25rem;
}
.why-us-card-icon-glow {
  position: absolute;
  inset: 0;
  border-radius: 1rem;
  opacity: 0;
  filter: blur(12px);
  transition: all 0.5s;
}
.why-us-card:hover .why-us-card-icon-glow {
  opacity: 0.2;
  transform: scale(1.5);
}
.why-us-card-icon {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  margin: 0 auto;
  border-radius: 1rem;
  color: #fff;
  box-shadow: var(--shadow-lg);
  transition: all 0.5s;
}
.why-us-card:hover .why-us-card-icon {
  transform: scale(1.1) rotate(3deg);
}

.why-us-card-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}

.why-us-card-desc {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.625;
}

.why-us-card-accent {
  width: 2rem;
  height: 0.375rem;
  margin: 1.25rem auto 0;
  border-radius: 9999px;
  transition: all 0.5s;
}
.why-us-card:hover .why-us-card-accent { width: 3rem; }

/* Gradient variations for why-us cards */
.why-us-grad-emerald { background: linear-gradient(135deg, #10b981, #059669); }
.why-us-glow-emerald { background: #10b981; }
.why-us-bar-emerald { background: linear-gradient(90deg, #10b981, #059669); }
.why-us-emerald .why-us-card-accent { background: linear-gradient(90deg, #10b981, #059669); }

.why-us-grad-blue { background: linear-gradient(135deg, #3b82f6, #4f46e5); }
.why-us-glow-blue { background: #3b82f6; }
.why-us-bar-blue { background: linear-gradient(90deg, #3b82f6, #4f46e5); }
.why-us-blue .why-us-card-accent { background: linear-gradient(90deg, #3b82f6, #4f46e5); }

.why-us-grad-amber { background: linear-gradient(135deg, #f59e0b, #ea580c); }
.why-us-glow-amber { background: #f59e0b; }
.why-us-bar-amber { background: linear-gradient(90deg, #f59e0b, #ea580c); }
.why-us-amber .why-us-card-accent { background: linear-gradient(90deg, #f59e0b, #ea580c); }

.why-us-grad-purple { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }
.why-us-glow-purple { background: #8b5cf6; }
.why-us-bar-purple { background: linear-gradient(90deg, #8b5cf6, #7c3aed); }
.why-us-purple .why-us-card-accent { background: linear-gradient(90deg, #8b5cf6, #7c3aed); }

/* ─── Achievements ─── */
.section-achievements {
  padding: 3.5rem 0;
  background: linear-gradient(135deg, #052e16, #14532d);
}
@media (min-width: 640px) { .section-achievements { padding: 5rem 0; } }

/* ─── Delivery Process ─── */

/* ─── Testimonials — Premium Redesign ─── */
.testimonials-section {
  position: relative;
  overflow: hidden;
  padding: 4rem 0;
  background: linear-gradient(160deg, #f0fdf4 0%, #f9fafb 40%, #ecfdf5 100%);
}
@media (min-width: 640px) { .testimonials-section { padding: 5rem 0; } }
@media (min-width: 1024px) { .testimonials-section { padding: 6rem 0; } }

/* Background blobs */
.testimonials-bg-blobs {
  pointer-events: none;
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.testimonials-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}
.testimonials-blob-1 {
  width: 28rem;
  height: 28rem;
  background: rgba(74,222,128,0.08);
  top: -25%;
  right: -10%;
  animation: testimonial-float 10s ease-in-out infinite;
}
.testimonials-blob-2 {
  width: 20rem;
  height: 20rem;
  background: rgba(251,191,36,0.08);
  bottom: -20%;
  left: -8%;
  animation: testimonial-float 12s ease-in-out infinite reverse;
}
.testimonials-blob-3 {
  width: 16rem;
  height: 16rem;
  background: rgba(34,197,94,0.06);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: testimonial-float 14s ease-in-out infinite 3s;
}
@keyframes testimonial-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(25px, -20px) scale(1.04); }
}

/* Label */
.testimonials-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(8px);
  border: 1px solid var(--primary-100);
  padding: 0.375rem 1.125rem;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary-700);
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.testimonials-label svg { width: 12px; height: 12px; }

/* Rating badge */
.testimonials-rating-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.testimonials-rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  border-radius: 1rem;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  padding: 0.875rem 1.75rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.testimonials-rating-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}
.testimonials-rating-stars { display: flex; gap: 0.125rem; }
.testimonials-rating-stars svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: #fbbf24;
  color: #fbbf24;
  filter: drop-shadow(0 1px 2px rgba(251,191,36,0.3));
}
.testimonials-rating-value {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text);
  margin-left: 0.25rem;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.testimonials-rating-count {
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Carousel */
.testimonials-carousel {
  position: relative;
  max-width: 38rem;
  margin: 0 auto;
}

.testimonials-card {
  overflow: hidden;
  border-radius: 1.5rem;
  background: var(--surface);
  border: 1px solid rgba(34,197,94,0.1);
  box-shadow: 0 20px 40px -12px rgba(0,0,0,0.1), 0 0 0 1px rgba(255,255,255,0.5) inset;
  transition: box-shadow 0.4s var(--ease);
}

.testimonials-track {
  display: grid;
  min-height: 220px;
}

.testimonials-slide {
  grid-area: 1 / 1;
  padding: 2rem 2rem;
  opacity: 0;
  transform: translateY(12px) scale(0.97);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
  visibility: hidden;
}
@media (min-width: 640px) { .testimonials-slide { padding: 2.5rem; } }

.testimonials-slide.wg-active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
  visibility: visible;
}

.testimonials-slide.wg-out {
  opacity: 0;
  transform: translateY(-12px) scale(0.97);
  visibility: visible;
}

/* Quote icon */
.testimonials-quote-icon {
  color: rgba(34,197,94,0.12);
  margin-bottom: 1.25rem;
  width: 2.25rem;
  height: 2.25rem;
}

.testimonials-text {
  font-size: 1.125rem;
  color: var(--text);
  line-height: 1.7;
  font-weight: 500;
}
@media (min-width: 640px) { .testimonials-text { font-size: 1.25rem; } }

/* Author */
.testimonials-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-light);
}

.testimonials-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(22,163,74,0.25);
  position: relative;
}
.testimonials-avatar::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  background: linear-gradient(135deg, #22c55e, #16a34a, #15803d);
  z-index: -1;
  opacity: 0.5;
}

.testimonials-stars { display: flex; gap: 0.125rem; }
.testimonials-stars svg { width: 0.875rem; height: 0.875rem; fill: #fbbf24; color: #fbbf24; }

.testimonials-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  margin-top: 0.125rem;
}
.testimonials-location {
  font-size: 0.75rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.testimonials-location::before {
  content: '';
  display: inline-block;
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background: var(--primary-400);
}

.testimonials-verified {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
  border-radius: 9999px;
  background: linear-gradient(135deg, #f0fdf4, #dcfce7);
  padding: 0.25rem 0.875rem;
  font-size: 0.625rem;
  font-weight: 600;
  color: #15803d;
  border: 1px solid rgba(34,197,94,0.15);
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.testimonials-verified::before {
  content: '\2713';
  font-size: 0.5rem;
}

/* Navigation */
.testimonials-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.testimonials-nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 9999px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.3s var(--ease);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.testimonials-nav-btn:hover {
  background: var(--primary-600);
  border-color: var(--primary-600);
  color: #fff;
  box-shadow: 0 4px 16px rgba(22,163,74,0.3);
  transform: translateY(-2px);
}
.testimonials-nav-btn:active {
  transform: translateY(0) scale(0.95);
}

/* Dots */
.testimonials-dots {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.testimonials-dot {
  height: 10px;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  background: var(--border);
  padding: 0;
}
.testimonials-dot.active {
  width: 36px;
  background: linear-gradient(90deg, var(--primary-500), var(--primary-600));
  box-shadow: 0 2px 8px rgba(34,197,94,0.25);
}
.testimonials-dot:not(.active) {
  width: 10px;
}
.testimonials-dot:not(.active):hover {
  background: var(--primary-300);
  transform: scale(1.15);
}

/* Trust marquee */
.testimonials-marquee {
  max-width: 42rem;
  margin: 2.5rem auto 0;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, #000 5%, #000 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 5%, #000 95%, transparent);
}
.testimonials-marquee-track {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  white-space: nowrap;
  animation: testimonial-marquee 24s linear infinite;
  width: max-content;
}
.testimonials-marquee-track span {
  font-size: 0.9375rem;
  line-height: 1.5;
  color: #374151;
  font-weight: 600;
  white-space: nowrap;
}
.testimonials-marquee-track span:nth-child(even) {
  font-size: 0.25rem;
  color: var(--primary-300);
}
@keyframes testimonial-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── Newsletter ─── */
.newsletter-card {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  background: linear-gradient(135deg, var(--primary-800), var(--primary-950));
  padding: 4rem 1.5rem;
  text-align: center;
}
@media (min-width: 640px) { .newsletter-card { padding: 5rem; } }
.newsletter-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.1;
}
.newsletter-card-inner {
  position: relative;
}
.newsletter-logo {
  margin: 0 auto;
  height: 5rem;
  width: auto;
}
.newsletter-card h2 {
  margin-top: 1rem;
  font-size: 1.875rem;
  font-weight: 700;
  color: #fff;
}
@media (min-width: 640px) { .newsletter-card h2 { font-size: 2.25rem; } }
@media (max-width: 639px) { .stay-connected-break { display: block; } }
.newsletter-card > .newsletter-card-inner p {
  margin-top: 0.75rem;
  color: rgba(255,255,255,0.6);
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
}

.newsletter-form {
  max-width: 28rem;
  margin: 2rem auto 0;
}

.newsletter-row {
  display: flex;
  gap: 0.75rem;
}

.newsletter-row > .newsletter-input {
  flex: 1;
  min-width: 0;
}

.newsletter-input {
  flex: 1;
  border-radius: 9999px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.1);
  padding: 0.75rem 1.25rem;
  font-size: 0.875rem;
  color: #fff;
  outline: none;
  transition: border-color 0.2s;
}
.newsletter-input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-input:focus { border-color: var(--primary-300); box-shadow: 0 0 0 3px rgba(34,197,94,0.15); }

.newsletter-success {
  margin-top: 2rem;
  color: var(--primary-300);
  font-weight: 500;
}

.newsletter-consent {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.4;
  max-width: 28rem;
}
.newsletter-consent input[type="checkbox"] {
  margin-top: 0.15rem;
  flex-shrink: 0;
  accent-color: var(--primary-500);
}
.newsletter-consent a {
  color: var(--primary-300);
  text-decoration: underline;
}
.newsletter-consent a:hover {
  color: #fff;
}

/* ─── Newsletter Toast ─── */
.newsletter-toast {
  position: fixed; bottom: 1.5rem; left: 50%; transform: translateX(-50%) translateY(1rem);
  max-width: 90vw; padding: 0.75rem 1.5rem; border-radius: 9999px;
  font-size: 0.875rem; font-weight: 500; color: #fff; z-index: 99999;
  opacity: 0; pointer-events: none; transition: opacity 0.35s ease, transform 0.35s ease;
}
.newsletter-toast.open { opacity: 1; transform: translateX(-50%) translateY(0); pointer-events: auto; }
.newsletter-toast.error { background: var(--red-600, #dc2626); }
.newsletter-toast.success { background: var(--green-600, #16a34a); }

/* ─── Form elements (cart / checkout) ─── */
.form-input,
.form-textarea,
.form-select {
  width: 100%;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  outline: none;
  transition: border-color 0.2s;
  background: #fff;
  color: var(--text);
  font-family: inherit;
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--primary-500);
  box-shadow: 0 0 0 3px rgba(34,197,94,0.1);
}
.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-subtle);
}
.form-select {
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

/* ─── Cart item ─── */
.cart-item {
  display: flex;
  gap: 1rem 1.5rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: #fff;
  padding: 1rem 1.5rem;
  transition: all 0.3s;
  box-shadow: var(--shadow-sm);
}
@media (min-width: 640px) { .cart-item { padding: 1.5rem; } }
.cart-item:hover { box-shadow: var(--shadow-md); }
.cart-item-img {
  position: relative;
  width: 6rem;
  height: 6rem;
  border-radius: 0.75rem;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--surface-muted);
}
@media (min-width: 640px) { .cart-item-img { width: 7rem; height: 7rem; } }
.cart-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cart-item-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
}
.cart-item-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (min-width: 640px) { .cart-item-name { font-size: 1rem; } }
.cart-item-name:hover { color: var(--primary-700); }
.cart-item-size {
  margin-top: 0.125rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: capitalize;
}
.cart-item-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.75rem;
}
.qty-controls {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background: rgba(249,250,251,0.5);
  padding: 0.125rem;
}
.qty-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  border: none;
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.15s;
}
.qty-btn:hover {
  background: #fff;
  color: var(--text);
}
.qty-value {
  min-width: 2rem;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
}
.cart-item-price {
  text-align: right;
}
.cart-item-price-current {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary-700);
}
.cart-item-price-each {
  font-size: 0.75rem;
  color: var(--text-muted);
}
.remove-btn {
  flex-shrink: 0;
  padding: 0.375rem;
  border-radius: 0.5rem;
  border: none;
  background: transparent;
  color: var(--text-subtle);
  cursor: pointer;
  transition: all 0.2s;
}
.remove-btn:hover {
  background: rgba(239,68,68,0.1);
  color: rgb(220,38,38);
}

/* ─── Order summary card ─── */
.order-summary-card {
  position: sticky;
  top: 6rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: #fff;
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.order-summary-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.order-summary-title svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary-600);
}
.order-summary-rows {
  margin-top: 1.5rem;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  color: var(--text-muted);
}
.summary-row-value {
  color: var(--text);
  font-weight: 500;
}
.summary-divider {
  border-top: 1px solid var(--border);
  padding-top: 0.75rem;
  margin-top: 0.75rem;
}
.summary-total-row {
  display: flex;
  justify-content: space-between;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}
.summary-total-value {
  color: var(--primary-700);
}

/* ─── Checkout form sections ─── */
.checkout-section {
  border-radius: 1rem;
  border: 1px solid var(--border);
  padding: 1.5rem;
}
.checkout-section-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 1.25rem;
}
.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.375rem;
}
.form-group {
  margin-bottom: 1.25rem;
}
.form-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 640px) { .form-grid-2 { grid-template-columns: 1fr 1fr; } }

/* ─── Phone input ─── */
.phone-input-group {
  display: flex;
  border-radius: 0.75rem;
  overflow: hidden;
  transition: border-color 0.2s;
  cursor: text;
}
.phone-prefix {
  display: flex;
  align-items: center;
  padding: 0.75rem 0.875rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgb(107,114,128);
  background: rgb(249,250,251);
  border-right: 1px solid var(--border);
}
.phone-input {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  outline: none;
  background: transparent;
  border: none;
  font-family: inherit;
}

/* ─── Payment method radio cards ─── */
.payment-method-card {
  display: flex;
  cursor: pointer;
  align-items: center;
  gap: 1rem;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  padding: 1rem;
  transition: all 0.15s;
}
.payment-method-card:hover {
  background: var(--surface-muted);
}
.payment-method-card.active {
  border-color: var(--primary-500);
  background: var(--primary-50);
}
.payment-method-card input[type="radio"] {
  width: 1rem;
  height: 1rem;
  accent-color: var(--primary-700);
}
.payment-method-logo {
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  object-fit: contain;
}
.payment-method-name {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
}
.payment-method-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ─── Payment info boxes ─── */
.payment-info-box {
  border-radius: 0.75rem;
  padding: 1rem;
  font-size: 0.875rem;
}
.payment-info-box.mobile {
  background: rgb(255,251,237);
  color: rgb(146,97,27);
}
.payment-info-box.bank {
  background: rgb(239,246,255);
  color: rgb(30,64,175);
}

/* ─── Button with shadow ─── */
.btn-shadow-primary {
  box-shadow: 0 10px 15px -3px rgba(34,197,94,0.2);
}

/* ─── Cart Drawer ─── */
.cart-drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: rgba(0,0,0,0.4);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.cart-drawer-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 60;
  width: 100%;
  max-width: 28rem;
  background: var(--surface);
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 40px rgba(0,0,0,0.15);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1);
}
.cart-drawer.open {
  transform: translateX(0);
}

.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  padding: 1rem 1rem;
}
.cart-drawer-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.125rem;
  font-weight: 600;
}
.cart-drawer-title svg { width: 1.25rem; height: 1.25rem; }
.cart-drawer-count {
  font-size: 0.875rem;
  color: var(--text-muted);
}
.cart-drawer-close {
  padding: 0.25rem;
  border: none;
  background: none;
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.15s;
}
.cart-drawer-close:hover { color: var(--text); }

.cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1rem;
}
.cart-drawer-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  height: 100%;
  text-align: center;
  padding: 2rem;
}
.cart-drawer-start {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  border: 2px solid var(--primary-700);
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--primary-700);
  text-decoration: none;
  transition: background 0.15s;
}
.cart-drawer-start:hover { background: var(--primary-50); }

.cart-drawer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.cart-drawer-item {
  display: flex;
  gap: 1rem;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  padding: 0.75rem;
}
.cart-drawer-item-img {
  position: relative;
  width: 5rem;
  height: 5rem;
  border-radius: 0.5rem;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--surface-muted);
}
.cart-drawer-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cart-drawer-item-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.cart-drawer-item-name {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  margin: 0;
}
.cart-drawer-item-size {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: capitalize;
  margin: 0;
}
.cart-drawer-item-price {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary-700);
  margin: 0.125rem 0 0;
}
.cart-drawer-item-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.5rem;
}
.cart-drawer-qty {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.cart-drawer-qty-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 9999px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: background 0.15s;
}
.cart-drawer-qty-btn:hover { background: var(--surface-muted); }
.cart-drawer-qty-value {
  width: 1.5rem;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
}
.cart-drawer-remove {
  border: none;
  background: none;
  padding: 0;
  font-size: 0.75rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.15s;
}
.cart-drawer-remove:hover { color: rgb(239,68,68); }

.cart-drawer-footer {
  border-top: 1px solid var(--border);
  padding: 1rem 1rem;
}
.cart-drawer-checkout {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: var(--primary-700);
  padding: 0.75rem 1.5rem;
  margin-top: 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  transition: background 0.15s;
}
.cart-drawer-checkout:hover { background: var(--primary-800); }

/* Wishlist drawer reuses all .cart-drawer-* classes above (same panel,
   slide-in, item layout); only the "Add to Cart" action is unique. */
#drawerWishlistFooter .cart-drawer-checkout { margin-top: 0; }
.wishlist-drawer-add-cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  border: none;
  background: var(--primary-700);
  padding: 0.375rem 0.875rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: #fff;
  cursor: pointer;
  transition: background 0.15s;
}
.wishlist-drawer-add-cart:hover { background: var(--primary-800); }

/* ─── Checkout-specific grid & layout utilities ─── */
.max-w-7xl { max-width: 80rem; }
.w-full { width: 100%; }
.space-y-1 > * + * { margin-top: 0.25rem; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-8 > * + * { margin-top: 2rem; }
.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
@media (min-width: 1024px) {
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 640px) {
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
  .sm\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
  .sm\:py-24 { padding-top: 6rem; padding-bottom: 6rem; }
  .sm\:text-4xl { font-size: 2.25rem; }
}
@media (min-width: 1024px) {
  .lg\:grid { display: grid; }
  .lg\:grid-cols-5 { grid-template-columns: repeat(5, 1fr); }
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
  .lg\:col-span-3 { grid-column: span 3; }
  .lg\:col-span-2 { grid-column: span 2; }
  .lg\:gap-12 { gap: 3rem; }
  .lg\:px-8 { padding-left: 2rem; padding-right: 2rem; }
  .lg\:mt-0 { margin-top: 0; }
}
@media (min-width: 640px) {
  .sm\:block { display: block; }
  .sm\:hidden { display: none; }
}
.tracking-tight { letter-spacing: -0.025em; }
.mb-10 { margin-bottom: 2.5rem; }
.mt-1\.5 { margin-top: 0.375rem; }
.ml-1 { margin-left: 0.25rem; }
.text-xs { font-size: 0.75rem; }
.capitalize { text-transform: capitalize; }

/* ─── Checkout section spacing ─── */
.checkout-section + .checkout-section { margin-top: 1.5rem; }

/* ─── Page wrapper ─── */
.page-wrapper { overflow: hidden; }

/* ─── Scroll reveal (section entrance) ─── */
.scroll-reveal.prepare {
  opacity: 0;
  transform: translateY(40px);
}

.scroll-reveal.prepare.revealed {
  animation: scroll-reveal-in 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.scroll-reveal-delay-1.scroll-reveal.prepare.revealed,
.scroll-reveal-delay-1 .scroll-reveal.prepare.revealed { animation-delay: 0.1s; }
.scroll-reveal-delay-2.scroll-reveal.prepare.revealed,
.scroll-reveal-delay-2 .scroll-reveal.prepare.revealed { animation-delay: 0.2s; }
.scroll-reveal-delay-3.scroll-reveal.prepare.revealed,
.scroll-reveal-delay-3 .scroll-reveal.prepare.revealed { animation-delay: 0.3s; }
.scroll-reveal-delay-4.scroll-reveal.prepare.revealed,
.scroll-reveal-delay-4 .scroll-reveal.prepare.revealed { animation-delay: 0.4s; }
.scroll-reveal-delay-5.scroll-reveal.prepare.revealed,
.scroll-reveal-delay-5 .scroll-reveal.prepare.revealed { animation-delay: 0.5s; }

@keyframes scroll-reveal-in {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: none; }
}

/* Drop the animation once finished so it stops acting as a transform
   containing block (breaks position:sticky descendants otherwise).
   Needs >= specificity of .scroll-reveal.prepare.revealed to win. */
.scroll-reveal.prepare.revealed.reveal-done {
  animation: none;
  opacity: 1;
  transform: none;
}

/* Disable page animation on prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .scroll-reveal.prepare,
  .scroll-reveal.prepare.revealed { opacity: 1; transform: none; animation: none; }
}

/* ═══ Scroll Carousel ═══ */
.scroll-carousel {
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 12px;
  margin-bottom: -12px;
  scroll-snap-type: x mandatory;
  cursor: grab;
}
.scroll-carousel::-webkit-scrollbar { display: none; }
.scroll-carousel .product-grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 1.5rem;
}
.scroll-carousel .product-grid .product-card {
  flex: 0 0 auto;
  scroll-snap-align: start;
}
@media (max-width: 639px) {
  .scroll-carousel .product-grid .product-card {
    width: calc(33.33% - 1rem);
  }
}
@media (min-width: 640px) and (max-width: 1023px) {
  .scroll-carousel .product-grid .product-card {
    width: calc(25% - 1.125rem);
  }
}
@media (min-width: 1024px) {
  .scroll-carousel .product-grid .product-card {
    width: calc(20% - 1.2rem);
  }
}
.scroll-carousel .product-grid .product-card-image {
  aspect-ratio: 1;
}
.scroll-carousel:active { cursor: grabbing; }

/* অ্যানিমেশনের প্রাথমিক অবস্থা */
.animate-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: var(--delay, 0s);
}

/* স্ক্রিনে আসার পর জাভাস্ক্রিপ্ট যখন এই ক্লাসটি বসাবে */
.animate-item.fade-in-up {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   Custom cursor (desktop only)
   ========================================================================== */
.cursor, .cursor-dot{ display:none; }
@media (hover:hover) and (pointer:fine){
  .cursor, .cursor-dot{
    display:block; position:fixed; top:0; left:0; z-index: var(--z-cursor);
    pointer-events:none; will-change: transform; transform: translate(-50%,-50%);
  }
  .cursor{
    width: 34px; height:34px; border-radius:50%;
    border: 1.5px solid var(--primary-600);
    opacity: 0.5;
    transition: width var(--dur-fast) var(--ease), height var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease), opacity var(--dur-fast) var(--ease);
  }
  .cursor-dot{ width:6px; height:6px; border-radius:50%; background: var(--primary-600); }
  .cursor.is-hover{
    width:54px; height:54px;
    background: var(--primary-100);
    border-color: var(--primary-500);
    opacity: 0.9;
  }
  body{ cursor:none; }
  a, button, input, textarea, select, summary, [role="button"], [onclick]{ cursor:none; }
}