:root {
  /* Brand accent scale — teal (#00C2C3 is --green-600, the primary accent
     used for buttons/links/icons/borders). Kept the "--green-*" names
     rather than renaming to "--teal-*" since dozens of files (HTML inline
     styles, JS-rendered markup) reference these var names directly —
     renaming would mean touching all of them for no functional benefit,
     when changing the values here already achieves "one place to edit".
     RGB-triplet twins (--green-*-rgb) exist purely so rgba(...) tints
     elsewhere in this file can stay derived from the same source instead
     of hardcoding their own copy of the color. */
  --green-900: #003d3d;
  --green-800: #025555;
  --green-700: #036868;
  --green-600: #00c2c3;
  --green-500: #089191;
  --green-400: #1dcdcd;
  --green-900-rgb: 0, 61, 61;
  --green-800-rgb: 2, 85, 85;
  --green-600-rgb: 0, 194, 195;
  --green-500-rgb: 8, 145, 145;
  --mint-100: #e3f7f7;
  --mint-50: #f4fbfb;
  /* Two extra light tints only used by the decorative inline-SVG
     illustrations (hero art, banner art, About Us placeholder) — kept as
     variables for the same one-place-to-edit reason as the rest of the
     scale, even though nothing else in the CSS references them. */
  --mint-200: #bfe3e3;
  --mint-300: #a0d4d4;
  --white: #ffffff;
  --text-dark: #16241d;
  --text-muted: #5b6b63;
  --border-soft: #d8eeee;
  --shadow-card: 0 4px 20px rgba(var(--green-900-rgb), 0.08);
  --shadow-nav: 0 2px 12px rgba(var(--green-900-rgb), 0.08);
  --shadow-card-hover: 0 20px 45px -12px rgba(var(--green-900-rgb), 0.28);
  --shadow-btn: 0 8px 20px -6px rgba(var(--green-800-rgb), 0.45);
  --radius-card: 16px;
  --radius-pill: 999px;
  --max-width: 1180px;
  --gradient-brand: linear-gradient(135deg, var(--green-500) 0%, var(--green-700) 100%);
  --gradient-brand-hover: linear-gradient(135deg, var(--green-400) 0%, var(--green-600) 100%);
  --gradient-mesh: radial-gradient(circle at 15% 20%, rgba(var(--green-500-rgb), 0.16), transparent 40%),
    radial-gradient(circle at 85% 0%, rgba(var(--green-800-rgb), 0.12), transparent 45%),
    radial-gradient(circle at 50% 100%, rgba(var(--green-500-rgb), 0.1), transparent 50%);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

* {
  box-sizing: border-box;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* Fallback for any bare icon svg not covered by a more specific sizing
   rule below — without this, an <svg> with no explicit width/height
   renders at the browser's default 300x150 intrinsic size. */
svg {
  width: 1em;
  height: 1em;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.55;
}

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

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

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, p {
  margin: 0;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 4rem 0;
}

.section-mint {
  background: var(--mint-50);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.section-header h2 {
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--green-900);
}

.section-header .underline {
  width: 64px;
  height: 4px;
  background: var(--gradient-brand);
  border-radius: 2px;
  margin: 0.9rem auto 1rem;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s var(--ease-out-expo);
}

.reveal-visible .underline {
  transform: scaleX(1);
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.eyebrow {
  color: var(--green-700); /* darker than the base accent for AA contrast as foreground text/icon color */
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--gradient-brand);
  display: inline-block;
  border-radius: 2px;
}

.gradient-text {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Buttons ---------- */

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: var(--radius-pill);
  padding: 0.8rem 1.7rem;
  font-size: 0.95rem;
  font-weight: 700;
  border: 2px solid transparent;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  transition: background 0.3s var(--ease-out-expo), color 0.2s ease, border-color 0.2s ease,
    transform 0.25s var(--ease-spring), box-shadow 0.3s var(--ease-out-expo);
  white-space: nowrap;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.35) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.7s var(--ease-out-expo);
}

.btn:hover::before {
  transform: translateX(120%);
}

.btn:active {
  transform: scale(0.97);
}

.btn:focus-visible {
  outline: 2px solid var(--green-500);
  outline-offset: 2px;
}

.btn-primary {
  background: var(--gradient-brand);
  color: var(--white);
  border-color: transparent;
  box-shadow: var(--shadow-btn);
}

.btn-primary:hover {
  background: var(--gradient-brand-hover);
  /* gradient-brand-hover runs from --green-400 to --green-600, both too
     light for white text to meet WCAG AA against — swap to dark text for
     this state instead of darkening the brand accent itself. */
  color: var(--text-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -8px rgba(var(--green-800-rgb), 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--green-700); /* darker than the base accent for AA contrast as foreground text/icon color */
  border-color: var(--green-600);
}

.btn-outline:hover {
  background: var(--green-600);
  /* --green-600 (#00C2C3) is too light for white text to meet WCAG AA
     (~2.2:1) — dark text keeps this state readable (~7.3:1). */
  color: var(--text-dark);
  border-color: var(--green-600);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -10px rgba(var(--green-600-rgb), 0.45);
}

.btn-whatsapp {
  background: var(--white);
  color: var(--green-700);
  border-color: var(--border-soft);
}

.btn-whatsapp:hover {
  border-color: var(--green-500);
  background: var(--mint-50);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px -10px rgba(var(--green-600-rgb), 0.3);
}

.btn-sm {
  padding: 0.5rem 1.1rem;
  font-size: 0.85rem;
}

.btn-block {
  width: 100%;
  justify-content: center;
}

.btn[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn svg {
  width: 18px;
  height: 18px;
  flex: none;
}

/* ---------- Scroll reveal ---------- */

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo);
}

[data-reveal].reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* ---------- Nav ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  box-shadow: none;
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-nav);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  /* Vertical padding kept small on purpose — the logo (below) is sized to
     be the tallest thing in this row, so most of the header's height
     should read as "logo" rather than surrounding gap. */
  padding: 0.5rem 1.5rem;
  transition: padding 0.3s ease;
}

.site-header.scrolled .nav-inner {
  padding: 0.35rem 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  color: var(--green-900);
}

.brand .brand-logo {
  height: 78px;
  width: auto;
  flex: none;
  display: block;
  object-fit: contain;
  transition: height 0.3s ease;
}

.site-header.scrolled .brand .brand-logo {
  height: 58px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text .brand-name {
  font-size: 1.05rem;
  letter-spacing: 0.01em;
}

.brand-text .brand-tagline {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 500;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-menu a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-dark);
  padding: 0.4rem 0;
  border-bottom: 2px solid transparent;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--green-700); /* darker than the base accent for AA contrast as foreground text/icon color */
  border-color: var(--green-500);
}

.nav-phone-btn {
  flex: none;
}

.nav-whatsapp-btn {
  flex: none;
  background: #25d366;
  color: var(--white);
  border-color: transparent;
  box-shadow: var(--shadow-btn);
}

.nav-whatsapp-btn:hover {
  background: #1ebd5a;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -8px rgba(37, 211, 102, 0.5);
}

.nav-cart-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: var(--green-900);
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-cart-btn:hover {
  background: var(--mint-100);
  color: var(--green-700); /* darker than the base accent for AA contrast as foreground text/icon color */
}

.nav-cart-btn svg {
  width: 22px;
  height: 22px;
}

.nav-cart-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--gradient-brand);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  color: var(--green-900);
}

.nav-toggle svg {
  width: 26px;
  height: 26px;
}

@media (max-width: 860px) {
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    box-shadow: var(--shadow-nav);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }

  .nav-menu.open {
    max-height: 480px;
  }

  .nav-menu a {
    padding: 0.9rem 1.5rem;
    border-bottom: 1px solid var(--border-soft);
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-phone-btn span.nav-btn-label,
  .nav-whatsapp-btn span.nav-btn-label {
    display: none;
  }
}

/* ---------- Icon badges ---------- */

.icon-badge {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--mint-100);
  color: var(--green-700); /* darker than the base accent for AA contrast as foreground text/icon color */
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  transition: background 0.3s var(--ease-out-expo), color 0.3s var(--ease-out-expo), transform 0.35s var(--ease-spring);
}

.icon-badge svg {
  width: 26px;
  height: 26px;
}

.icon-badge.sm {
  width: 44px;
  height: 44px;
}

.icon-badge.sm svg {
  width: 20px;
  height: 20px;
}

.icon-badge.outline {
  background: var(--white);
  border: 1.5px solid var(--border-soft);
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--mint-50) 0%, var(--white) 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gradient-mesh);
  pointer-events: none;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  pointer-events: none;
  opacity: 0.55;
  will-change: transform;
}

.hero-blob-1 {
  width: 380px;
  height: 380px;
  top: -140px;
  right: -80px;
  background: radial-gradient(circle, rgba(var(--green-500-rgb), 0.35), transparent 70%);
  animation: floatBlob1 14s ease-in-out infinite;
}

.hero-blob-2 {
  width: 300px;
  height: 300px;
  bottom: -120px;
  left: -60px;
  background: radial-gradient(circle, rgba(var(--green-800-rgb), 0.22), transparent 70%);
  animation: floatBlob2 18s ease-in-out infinite;
}

@keyframes floatBlob1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-30px, 25px) scale(1.08); }
}

@keyframes floatBlob2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(25px, -20px) scale(1.06); }
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2.5rem;
  /* stretch (not center) so .hero-art's height:100% below can make the
     photo match the text column's height instead of sizing to its own
     (much shorter, 16:9) intrinsic aspect ratio. */
  align-items: stretch;
  /* Vertical padding only — this element also carries .container's own
     side padding (1.5rem), and a shorthand here would zero that out via
     the 3-value syntax (top | left-right | bottom). That's exactly what
     happened before: masked on wide viewports by .container's auto-margin
     centering, but bare on narrow ones where that margin disappears. */
  padding-top: 3.5rem;
  padding-bottom: 3rem;
}

@media (max-width: 860px) {
  .hero-inner {
    grid-template-columns: 1fr;
    padding-top: 2.5rem;
    padding-bottom: 2rem;
  }

  .hero-art {
    margin-top: 1rem;
  }
}

.hero h1 {
  font-size: clamp(2.1rem, 4vw, 3.1rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--green-900);
  line-height: 1.12;
  margin-bottom: 1.1rem;
}

.hero p.lead {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 46ch;
  margin-bottom: 1.75rem;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2.25rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: transform 0.25s var(--ease-out-expo);
}

.trust-item:hover {
  transform: translateY(-2px);
}

.trust-item:hover .icon-badge {
  background: var(--gradient-brand);
  color: var(--white);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.hero-art {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease-out;
  will-change: transform;
  /* Fills the height .hero-inner's stretch gives it (matching the text
     column) rather than the photo's own much-shorter 16:9 intrinsic
     height. min-height is a floor for when the text column is short. */
  height: 100%;
  min-height: 320px;
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Biased right-of-center: the source photo's left third is logo/headline
     text (redundant with the page's own left column and fine to lose),
     while the RO plant + countertop purifiers — the actual product — sit
     center-to-right, so keeping the crop anchored there is what stops the
     product itself from being cut off as the box gets taller/narrower. */
  object-position: 92% center;
  border-radius: var(--radius-card);
  filter: drop-shadow(0 25px 40px rgba(var(--green-900-rgb), 0.18));
  animation: heroFloat 6s ease-in-out infinite;
}

/* Placed after (not merged into) the earlier 860px block above — same
   selectors at equal specificity would otherwise lose to these unconditional
   base rules by source order regardless of viewport, silently no-opping
   the override. */
@media (max-width: 860px) {
  .hero-art {
    height: auto;
    min-height: 0;
  }

  .hero-photo {
    height: auto;
    /* Matches the source photo's own native ratio exactly, so cover crops
       nothing here — at 16/10 (or anything looser than desktop's crop)
       there's just enough slack to cut the source's baked-in text off
       mid-word at the edge, which looks worse than either showing it
       fully or not at all. Full width on a stacked mobile layout has the
       room to show the whole photo anyway. */
    aspect-ratio: 16 / 9;
    object-position: center;
  }
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

.leaf-accent {
  position: absolute;
  color: var(--green-500);
  opacity: 0.35;
  pointer-events: none;
}

/* ---------- Cards & grids ---------- */

.grid {
  display: grid;
  gap: 1.5rem;
}

.grid-6 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

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

@media (max-width: 960px) {
  .grid-6, .grid-4, .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .grid-6, .grid-4, .grid-3, .grid-2 {
    grid-template-columns: 1fr;
  }
}

.card {
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 1.6rem;
  border: 1px solid var(--border-soft);
  transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s var(--ease-out-expo),
    border-color 0.4s ease;
}

.service-card {
  position: relative;
  text-align: center;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out-expo);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card-hover);
  border-color: transparent;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover .icon-badge {
  background: var(--gradient-brand);
  color: var(--white);
  transform: scale(1.1) rotate(-6deg);
}

.service-card .icon-badge {
  margin: 0 auto 1.1rem;
}

.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.45rem;
  color: var(--green-900);
}

.service-card p {
  font-size: 0.87rem;
  color: var(--text-muted);
}

.product-card,
.offering-card {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.product-card:hover,
.offering-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: transparent;
}

.product-card .thumb,
.offering-card .thumb {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  background: var(--mint-100);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--green-500);
}

.product-card .thumb img,
.offering-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out-expo);
}

.product-card:hover .thumb img,
.offering-card:hover .thumb img {
  transform: scale(1.1);
}

.product-card .thumb svg,
.offering-card .thumb svg {
  width: 64px;
  height: 64px;
  transition: transform 0.5s var(--ease-spring);
}

.product-card:hover .thumb svg,
.offering-card:hover .thumb svg {
  transform: scale(1.12) rotate(-4deg);
}

.product-card h3,
.offering-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--green-900);
}

.product-card .meta,
.offering-card .meta {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.tag-pill {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--green-700);
  background: var(--mint-100);
  border-radius: var(--radius-pill);
  padding: 0.2rem 0.7rem;
}

.price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
}

.price {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--green-800);
}

.price.na {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

.card-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.card-actions .btn {
  flex: 1;
  justify-content: center;
}

/* ---------- Banner (RO Plants) ---------- */

.banner {
  background: linear-gradient(120deg, var(--mint-100) 0%, var(--mint-50) 100%);
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-card);
}

.banner::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--green-500-rgb), 0.25), transparent 70%);
  top: -100px;
  right: 10%;
  filter: blur(10px);
  pointer-events: none;
}

.check-list li {
  transition: transform 0.25s var(--ease-out-expo);
}

.check-list li:hover {
  transform: translateX(4px);
}

.banner-inner {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 2rem;
  align-items: center;
  padding: 3rem;
}

.banner h2 {
  color: var(--green-900);
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  margin-bottom: 0.8rem;
}

.banner p {
  color: var(--text-muted);
  margin-bottom: 1.2rem;
  max-width: 50ch;
}

.check-list {
  display: grid;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-dark);
}

.check-list svg {
  width: 18px;
  height: 18px;
  color: var(--green-700); /* darker than the base accent for AA contrast as foreground text/icon color */
  flex: none;
}

.banner-art {
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-photo {
  width: 100%;
  max-width: 340px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card-hover);
}

@media (max-width: 860px) {
  .banner-inner {
    grid-template-columns: 1fr;
    padding: 2rem;
  }
}

/* ---------- Why choose us ---------- */

.why-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
}

.why-copy {
  flex: 1 1 280px;
}

.why-copy h2 {
  color: var(--green-900);
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  margin-bottom: 0.8rem;
}

.why-copy p {
  color: var(--text-muted);
  margin-bottom: 1.3rem;
  max-width: 42ch;
}

.why-icons {
  flex: 2 1 520px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.2rem;
  text-align: center;
}

.why-icons > div {
  transition: transform 0.3s var(--ease-spring);
}

.why-icons > div:hover {
  transform: translateY(-4px);
}

.why-icons > div:hover .icon-badge {
  background: var(--gradient-brand);
  color: var(--white);
  border-color: transparent;
  transform: scale(1.08);
}

.why-icons .icon-badge {
  margin: 0 auto 0.6rem;
}

.why-icons span {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
}

@media (max-width: 860px) {
  .why-icons {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 560px) {
  .why-icons {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ---------- About summary / split sections ---------- */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.split .art {
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--mint-100);
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-500);
  position: relative;
}

.split .art svg {
  width: 45%;
  height: 45%;
}

.split .art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-controls {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.gallery-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.85);
  color: var(--green-700);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: auto;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.18);
}

.gallery-nav-btn.prev {
  left: 10px;
}

.gallery-nav-btn.next {
  right: 10px;
}

.gallery-nav-btn.prev svg {
  transform: scaleX(-1);
}

.split .art .gallery-nav-btn svg {
  width: 16px;
  height: 16px;
}

.gallery-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  pointer-events: auto;
}

.gallery-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  cursor: pointer;
}

.gallery-dot.active {
  background: #ffffff;
  box-shadow: 0 0 0 2px var(--green-600);
}

.split h2 {
  color: var(--green-900);
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  margin-bottom: 0.8rem;
}

.split p {
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}

.split.reverse {
  grid-template-columns: 1fr 1fr;
}

.split.reverse .art {
  order: 2;
}

@media (max-width: 860px) {
  .split, .split.reverse {
    grid-template-columns: 1fr;
  }
  .split.reverse .art {
    order: 0;
  }
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--green-700); /* darker than the base accent for AA contrast as foreground text/icon color */
  font-weight: 700;
  font-size: 0.92rem;
}

.link-arrow svg {
  width: 16px;
  height: 16px;
  transition: transform 0.15s ease;
}

.link-arrow:hover svg {
  transform: translateX(3px);
}

/* ---------- Service area ---------- */

.service-area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.8rem;
}

.service-area-list .tag-pill {
  background: var(--white);
  border: 1px solid var(--border-soft);
  color: var(--text-dark);
}

.address-line {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  margin-bottom: 0.9rem;
}

.address-line .icon-badge {
  flex: none;
}

/* ---------- Testimonials ---------- */

.testimonial-card {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: transparent;
}

.quote-icon {
  color: var(--green-500);
}

.testimonial-quote {
  color: var(--text-dark);
  font-size: 0.95rem;
}

.testimonial-person {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.avatar-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--mint-100);
  color: var(--green-700); /* darker than the base accent for AA contrast as foreground text/icon color */
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex: none;
}

.avatar-circle svg {
  width: 20px;
  height: 20px;
}

.stars {
  color: #e8a53b;
  display: flex;
  gap: 2px;
}

.google-rating-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.stars-static {
  color: #e8a53b;
  letter-spacing: 1px;
}

.google-rating-line strong {
  color: var(--green-900);
}

.stars svg {
  width: 15px;
  height: 15px;
}

.quote-icon svg {
  width: 32px;
  height: 32px;
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--green-900);
  color: rgba(255, 255, 255, 0.85);
  padding: 3.5rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-grid h4 {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.footer-grid li {
  margin-bottom: 0.6rem;
  font-size: 0.88rem;
}

.footer-grid a:hover {
  color: var(--white);
}

.footer-brand .brand-logo-chip {
  display: inline-flex;
  background: var(--white);
  padding: 0.4rem 0.7rem;
  border-radius: 10px;
  flex: none;
}

.footer-brand .brand-logo {
  height: 82px;
}

.footer-brand p {
  font-size: 0.85rem;
  margin-top: 0.7rem;
  color: rgba(255, 255, 255, 0.7);
}

.social-row {
  display: flex;
  gap: 0.6rem;
  margin-top: 0.8rem;
}

.social-row a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-row svg {
  width: 17px;
  height: 17px;
}

.social-row a:hover {
  background: var(--green-600);
  /* icons use currentColor and would otherwise stay near-white (inherited
     from the footer text color), which fails contrast against #00C2C3. */
  color: var(--text-dark);
}

.footer-script {
  font-family: "Segoe Script", cursive;
  color: var(--mint-100);
  opacity: 0.6;
  font-size: 0.95rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}

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

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

/* ---------- Tabs (category / tag filters) ---------- */

.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.filter-tabs button {
  border: 1.5px solid var(--border-soft);
  background: var(--white);
  color: var(--text-dark);
  border-radius: var(--radius-pill);
  padding: 0.6rem 1.3rem;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s var(--ease-out-expo), color 0.2s ease, border-color 0.2s ease,
    transform 0.25s var(--ease-spring), box-shadow 0.3s ease;
}

.filter-tabs button:hover {
  border-color: var(--green-500);
  transform: translateY(-1px);
}

.filter-tabs button.active {
  background: var(--gradient-brand);
  border-color: transparent;
  color: var(--white);
  box-shadow: 0 8px 18px -8px rgba(var(--green-800-rgb), 0.5);
}

.empty-state {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--text-muted);
}

.empty-state .icon-badge {
  margin: 0 auto 1rem;
}

/* ---------- Page hero (interior pages) ---------- */

.page-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--mint-50), var(--white));
  padding: 3.5rem 0 3rem;
  text-align: center;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gradient-mesh);
  pointer-events: none;
}

.page-hero > * {
  position: relative;
}

.page-hero h1 {
  color: var(--green-900);
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.7rem;
}

.page-hero p {
  color: var(--text-muted);
  max-width: 52ch;
  margin: 0 auto;
}

.breadcrumb {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}

.breadcrumb a {
  color: var(--green-700); /* darker than the base accent for AA contrast as foreground text/icon color */
  font-weight: 600;
}

/* ---------- Service areas page ---------- */

.page-search-bar {
  position: sticky;
  top: 70px;
  z-index: 40;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-soft);
  box-shadow: var(--shadow-nav);
  padding: 0.9rem 0;
}

.search-input-wrap {
  position: relative;
  max-width: 420px;
  margin: 0 auto;
}

.search-input-wrap .search-icon {
  position: absolute;
  left: 0.9rem;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: var(--text-muted);
  pointer-events: none;
}

.search-input-wrap input {
  width: 100%;
  padding: 0.7rem 1rem 0.7rem 2.6rem;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--border-soft);
  font-size: 0.9rem;
  font-family: inherit;
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.search-input-wrap input:focus {
  border-color: var(--green-500);
  box-shadow: 0 0 0 3px rgba(var(--green-500-rgb), 0.15);
}

.location-region {
  margin-bottom: 2.75rem;
}

.location-region h2 {
  color: var(--green-900);
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 1.1rem;
}

.location-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.location-chip {
  display: inline-block;
  border: 1.5px solid var(--border-soft);
  background: var(--white);
  color: var(--text-dark);
  border-radius: var(--radius-pill);
  padding: 0.5rem 1.1rem;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s var(--ease-spring);
}

.location-chip:hover {
  border-color: var(--green-500);
  background: var(--mint-50);
  color: var(--green-700);
  transform: translateY(-1px);
}

.is-hidden {
  display: none !important;
}

body.has-sticky-cta {
  padding-bottom: 76px;
}

.sticky-cta-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  background: var(--white);
  border-top: 1px solid var(--border-soft);
  box-shadow: 0 -8px 24px rgba(var(--green-900-rgb), 0.12);
  padding: 0.65rem 0;
}

.sticky-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.sticky-cta-bar .cta-tagline {
  display: none;
  font-weight: 700;
  color: var(--green-900);
  font-size: 0.92rem;
}

.sticky-cta-buttons {
  display: flex;
  gap: 0.6rem;
  flex: none;
  width: 100%;
}

.sticky-cta-buttons .btn {
  flex: 1;
  justify-content: center;
}

@media (min-width: 640px) {
  .sticky-cta-bar .cta-tagline {
    display: block;
  }

  .sticky-cta-buttons {
    width: auto;
  }

  .sticky-cta-buttons .btn {
    flex: none;
  }
}

/* ---------- Forms ---------- */

.form-card {
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 2rem;
  border: 1px solid var(--border-soft);
}

.form-field {
  margin-bottom: 1.1rem;
}

.form-field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border-radius: 10px;
  border: 1.5px solid var(--border-soft);
  font-size: 0.92rem;
  font-family: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--green-500);
  box-shadow: 0 0 0 4px rgba(var(--green-500-rgb), 0.15);
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 560px) {
  .form-row-2 {
    grid-template-columns: 1fr;
  }
}

.form-message {
  border-radius: 10px;
  padding: 0.8rem 1rem;
  font-size: 0.88rem;
  margin-top: 1rem;
}

.form-message.success {
  background: var(--mint-100);
  color: var(--green-800);
}

.form-message.error {
  background: #fbe7e5;
  color: #8f2b22;
}

/* ---------- Payment screen (post-checkout QR/UPI) ---------- */

.payment-screen {
  text-align: center;
  padding: 0.5rem 0 0;
}

.payment-screen-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--mint-100);
  color: var(--green-700);
  font-weight: 700;
  font-size: 0.78rem;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.9rem;
}

.payment-screen-badge svg {
  width: 15px;
  height: 15px;
}

.payment-screen h3 {
  color: var(--green-900);
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 0.3rem;
}

.payment-order-number {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.3rem;
}

.payment-amount-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--mint-50);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-card);
  padding: 0.9rem 1.3rem;
  margin-bottom: 1.3rem;
}

.payment-amount-row span {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 600;
}

.payment-amount-row strong {
  color: var(--green-900);
  font-size: 1.5rem;
  font-weight: 800;
}

.payment-qr-box {
  width: 230px;
  height: 230px;
  margin: 0 auto 1.2rem;
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.payment-qr-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.payment-qr-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  color: var(--text-muted);
  font-size: 0.8rem;
  border: 1.5px dashed var(--border-soft);
  border-radius: calc(var(--radius-card) - 6px);
  padding: 1rem;
  height: 100%;
  justify-content: center;
}

.payment-qr-placeholder svg {
  width: 32px;
  height: 32px;
  color: var(--green-500);
}

.payment-instructions {
  color: var(--text-muted);
  font-size: 0.9rem;
  max-width: 360px;
  margin: 0 auto 1.2rem;
  line-height: 1.5;
}

.payment-instructions strong {
  color: var(--green-900);
}

.upi-app-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.4rem;
}

.upi-app-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-pill);
}

.upi-app-badge svg {
  width: 15px;
  height: 15px;
}

.upi-app-badge.gpay {
  background: #e8f0fe;
  color: #1a73e8;
}

.upi-app-badge.phonepe {
  background: #f2e9fb;
  color: #5f259f;
}

.upi-app-badge.paytm {
  background: #e3f0ff;
  color: #00457c;
}

.upi-id-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}

.upi-id-label {
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 600;
}

.upi-id-copy {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--white);
  border: 1.5px solid var(--green-600);
  color: var(--green-700);
  font-weight: 700;
  font-size: 0.85rem;
  font-family: "Courier New", monospace;
  padding: 0.55rem 1rem;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: background 0.2s ease;
}

.upi-id-copy:hover {
  background: var(--mint-50);
}

.upi-id-copy svg {
  width: 16px;
  height: 16px;
  flex: none;
}

.upi-copy-status {
  min-height: 1.1em;
  font-size: 0.78rem;
  color: var(--green-700);
  font-weight: 600;
}

.payment-waiting {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  color: var(--text-muted);
  font-size: 0.82rem;
  background: var(--mint-50);
  border-radius: var(--radius-pill);
  padding: 0.6rem 1rem;
}

.waiting-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green-600);
  flex: none;
  animation: waitingPulse 1.6s ease-in-out infinite;
}

@keyframes waitingPulse {
  0%, 100% {
    transform: scale(0.85);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.15);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .waiting-dot {
    animation: none;
  }
}

.address-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  margin-bottom: 0.4rem;
}

.address-label-row label {
  margin-bottom: 0;
}

.location-autofill-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: none;
  border: none;
  color: var(--green-700); /* darker than the base accent for AA contrast as foreground text/icon color */
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0.2rem 0;
  white-space: nowrap;
}

.location-autofill-btn:hover {
  color: var(--green-700);
  text-decoration: underline;
}

.location-autofill-btn:disabled {
  opacity: 0.6;
  cursor: default;
  text-decoration: none;
}

.location-autofill-btn svg {
  width: 14px;
  height: 14px;
  flex: none;
}

.location-autofill-status {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin: 0.3rem 0 0;
}

/* ---------- Modal (Buy Now quick checkout) ---------- */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(var(--green-900-rgb), 0.5);
  backdrop-filter: blur(3px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  z-index: 200;
  animation: modalFadeIn 0.25s ease;
}

@keyframes modalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal-box {
  background: var(--white);
  border-radius: var(--radius-card);
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 1.75rem;
  position: relative;
  box-shadow: 0 30px 60px -15px rgba(var(--green-900-rgb), 0.35);
  animation: modalPopIn 0.35s var(--ease-out-expo);
}

@keyframes modalPopIn {
  from { opacity: 0; transform: translateY(16px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--mint-100);
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--green-700);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s var(--ease-spring);
}

.modal-close:hover {
  background: var(--green-600);
  /* --green-600 (#00C2C3) fails WCAG AA against white — dark icon color
     keeps this readable/visible. */
  color: var(--text-dark);
  transform: rotate(90deg);
}

.modal-close svg {
  width: 16px;
  height: 16px;
}

.modal-box h3 {
  color: var(--green-900);
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
}

.modal-item-summary {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}

/* ---------- Cart ---------- */

.cart-item-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-soft);
}

.cart-item-row:first-child {
  padding-top: 0;
}

.cart-item-info {
  flex: 1;
  min-width: 0;
}

.cart-item-name {
  font-weight: 700;
  color: var(--green-900);
}

.cart-item-price {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex: none;
}

.qty-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1.5px solid var(--border-soft);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--green-700);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.qty-btn:hover {
  background: var(--mint-100);
  border-color: var(--green-500);
}

.qty-btn svg {
  width: 14px;
  height: 14px;
}

.qty-value {
  min-width: 20px;
  text-align: center;
  font-weight: 700;
}

.cart-item-line-total {
  flex: none;
  font-weight: 700;
  color: var(--green-900);
  min-width: 80px;
  text-align: right;
}

.cart-item-remove {
  flex: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  padding: 0.4rem;
  border-radius: 50%;
  transition: color 0.2s ease, background 0.2s ease;
}

.cart-item-remove:hover {
  color: #b02a2a;
  background: #fbe7e5;
}

.cart-item-remove svg {
  width: 18px;
  height: 18px;
}

.cart-subtotal-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--green-900);
}

@media (max-width: 560px) {
  .cart-item-row {
    flex-wrap: wrap;
  }

  .cart-item-info {
    flex: 1 1 100%;
  }

  .cart-item-line-total {
    min-width: auto;
  }
}

/* ---------- Product detail ---------- */

.detail-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

@media (max-width: 860px) {
  .detail-layout {
    grid-template-columns: 1fr;
  }
}

.detail-gallery .thumb-main {
  aspect-ratio: 1;
  border-radius: var(--radius-card);
  background: var(--mint-100);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--green-500);
  margin-bottom: 0.8rem;
  box-shadow: var(--shadow-card);
  cursor: zoom-in;
}

.detail-gallery .thumb-main svg {
  width: 30%;
  height: 30%;
  transition: transform 0.4s var(--ease-spring);
}

.detail-gallery .thumb-main:hover svg {
  transform: scale(1.08) rotate(-3deg);
}

.detail-gallery .thumb-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out-expo), opacity 0.3s ease;
}

.detail-gallery .thumb-main:hover img {
  transform: scale(1.12);
}

.thumb-strip {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.thumb-strip img {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  object-fit: cover;
  border: 1.5px solid var(--border-soft);
  cursor: pointer;
  transition: transform 0.25s var(--ease-spring), border-color 0.25s ease, box-shadow 0.25s ease;
}

.thumb-strip img:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 16px -6px rgba(var(--green-900-rgb), 0.25);
}

.thumb-strip img.active {
  border-color: var(--green-600);
  box-shadow: 0 0 0 2px var(--mint-100);
}

.variant-select-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1rem 0 1.5rem;
}

.variant-chip {
  border: 1.5px solid var(--border-soft);
  border-radius: var(--radius-pill);
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  background: var(--white);
  transition: background 0.3s var(--ease-out-expo), color 0.2s ease, border-color 0.2s ease,
    transform 0.25s var(--ease-spring), box-shadow 0.3s ease;
}

.variant-chip:hover {
  border-color: var(--green-500);
  transform: translateY(-2px);
}

.variant-chip.active {
  border-color: transparent;
  background: var(--gradient-brand);
  color: var(--white);
  box-shadow: 0 8px 18px -8px rgba(var(--green-800-rgb), 0.5);
}

.variant-chip[disabled] {
  opacity: 0.4;
  cursor: not-allowed;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.5rem;
  font-size: 0.9rem;
}

.spec-table td {
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border-soft);
}

.spec-table td:first-child {
  color: var(--text-muted);
  width: 40%;
}

.spec-table td:last-child {
  font-weight: 600;
}

/* ---------- Map / contact ---------- */

.map-frame {
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--border-soft);
  aspect-ratio: 16 / 10;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-info-list .address-line p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.contact-info-list .address-line strong {
  display: block;
  color: var(--text-dark);
  margin-bottom: 0.15rem;
}

.badge-24-7 {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--mint-100);
  color: var(--green-700);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-pill);
}

.badge-24-7 svg {
  width: 15px;
  height: 15px;
}
