:root {
  color-scheme: light;
  --leaf: #175c3b;
  --leaf-deep: #0c3727;
  --mango: #f2a51a;
  --gold: #ffd15c;
  --clay: #b95628;
  --ink: #17211c;
  --muted: #69746c;
  --paper: #fffaf0;
  --surface: #ffffff;
  --line: rgba(23, 92, 59, 0.16);
  --shadow: 0 22px 60px rgba(16, 44, 32, 0.16);
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  align-items: center;
  backdrop-filter: blur(16px);
  background: rgba(255, 250, 240, 0.9);
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 22px;
  justify-content: space-between;
  left: 0;
  min-height: 72px;
  padding: 12px clamp(16px, 4vw, 56px);
  position: sticky;
  right: 0;
  top: 0;
  z-index: 20;
}

.header-actions {
  align-items: center;
  display: flex;
  gap: 10px;
}

.brand {
  align-items: center;
  display: flex;
  gap: 11px;
  min-width: 210px;
}

.brand-logo {
  align-items: center;
  background: white;
  border-radius: 50%;
  box-shadow: 0 8px 18px rgba(23, 92, 59, 0.16);
  display: inline-flex;
  height: 54px;
  object-fit: cover;
  padding: 4px;
  width: 54px;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
  margin-top: 1px;
}

.nav {
  align-items: center;
  display: flex;
  gap: clamp(14px, 3vw, 32px);
  font-size: 0.94rem;
  font-weight: 700;
}

.nav a {
  color: #314138;
}

.header-action,
.button {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.cart-toggle,
.add-cart,
.cart-close,
.qty-controls button,
.remove-item {
  border: 0;
  cursor: pointer;
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
}

.cart-toggle {
  align-items: center;
  background: white;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--leaf);
  display: inline-flex;
  font-weight: 900;
  gap: 8px;
  min-height: 46px;
  padding: 0 16px;
}

.cart-count {
  align-items: center;
  background: var(--leaf);
  border-radius: 999px;
  color: white;
  display: inline-flex;
  font-size: 0.78rem;
  height: 24px;
  justify-content: center;
  min-width: 24px;
  padding: 0 7px;
}

.floating-whatsapp {
  align-items: center;
  background: #1f8f5a;
  border: 2px solid rgba(255, 255, 255, 0.82);
  border-radius: 999px;
  bottom: 18px;
  box-shadow: var(--shadow);
  color: white;
  display: none;
  font-weight: 900;
  min-height: 48px;
  padding: 0 18px;
  position: fixed;
  right: 18px;
  z-index: 30;
}

.cart-panel {
  background: white;
  bottom: 0;
  box-shadow: -24px 0 60px rgba(0, 0, 0, 0.18);
  display: flex;
  flex-direction: column;
  max-width: 440px;
  padding: 24px;
  position: fixed;
  right: 0;
  top: 0;
  transform: translateX(110%);
  transition: transform 220ms ease;
  width: min(100%, 440px);
  z-index: 50;
}

.cart-panel.is-open {
  transform: translateX(0);
}

.cart-backdrop {
  background: rgba(7, 25, 17, 0.44);
  inset: 0;
  position: fixed;
  z-index: 45;
}

.cart-head {
  align-items: start;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 16px;
  justify-content: space-between;
  padding-bottom: 18px;
}

.cart-head h2 {
  font-size: 1.65rem;
}

.cart-close {
  align-items: center;
  background: #f1f6ed;
  border-radius: 50%;
  color: var(--leaf-deep);
  display: inline-flex;
  font-size: 1.5rem;
  font-weight: 900;
  height: 42px;
  justify-content: center;
  line-height: 1;
  width: 42px;
}

.cart-items {
  display: grid;
  gap: 12px;
  margin: 18px 0;
  overflow: auto;
  padding-right: 3px;
}

.cart-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 12px;
  padding: 14px;
}

.cart-item h3 {
  font-size: 1rem;
  margin: 0;
}

.cart-item-meta {
  color: var(--muted);
  font-size: 0.9rem;
}

.cart-row {
  align-items: center;
  display: flex;
  gap: 10px;
  justify-content: space-between;
}

.cart-row select {
  min-height: 40px;
}

.qty-controls {
  align-items: center;
  display: inline-flex;
  gap: 8px;
}

.qty-controls button,
.remove-item {
  background: #edf5e9;
  border-radius: 999px;
  color: var(--leaf-deep);
  font-weight: 900;
  min-height: 34px;
  min-width: 34px;
}

.remove-item {
  padding: 0 12px;
}

.cart-empty {
  border: 1px dashed var(--line);
  border-radius: 8px;
  color: var(--muted);
  line-height: 1.55;
  margin: 18px 0;
  padding: 18px;
  text-align: center;
}

.cart-summary {
  align-items: center;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 18px;
}

.cart-summary span {
  color: var(--muted);
  font-weight: 800;
}

.cart-summary strong {
  font-size: 1.25rem;
}

.cart-actions {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.header-action,
.button.primary {
  background: var(--mango);
  box-shadow: 0 12px 24px rgba(185, 92, 10, 0.22);
  color: #241707;
}

.button.ghost {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: white;
}

.button.dark {
  background: var(--leaf-deep);
  color: white;
}

.button.light {
  background: #edf5e9;
  color: var(--leaf-deep);
}

.button.full {
  border: 0;
  cursor: pointer;
  width: 100%;
}

.button:hover,
.header-action:hover {
  transform: translateY(-2px);
}

.hero {
  min-height: clamp(620px, 86vh, 780px);
  overflow: hidden;
  position: relative;
}

.hero-image {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.hero-shade {
  background: linear-gradient(90deg, rgba(5, 28, 18, 0.82) 0%, rgba(9, 46, 29, 0.68) 38%, rgba(9, 46, 29, 0.18) 78%);
  inset: 0;
  position: absolute;
}

.hero-content {
  color: white;
  max-width: 760px;
  padding: clamp(56px, 8vw, 96px) clamp(20px, 7vw, 92px) 44px;
  position: relative;
  z-index: 1;
}

.eyebrow,
.section-kicker {
  color: var(--mango);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(2.45rem, 7vw, 5.8rem);
  letter-spacing: 0;
  line-height: 0.96;
  margin: 0;
  max-width: 12.5ch;
}

.hero-copy {
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  line-height: 1.65;
  margin: 24px 0 0;
  max-width: 680px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-stats {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  margin: 44px 0 0;
  max-width: 610px;
}

.hero-stats div {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  padding: 14px;
}

.hero-stats dt {
  font-size: 1.6rem;
  font-weight: 900;
}

.hero-stats dd {
  color: rgba(255, 255, 255, 0.82);
  margin: 4px 0 0;
}

.trust-strip {
  background: var(--leaf);
  color: white;
  display: grid;
  font-weight: 800;
  gap: 1px;
  grid-template-columns: repeat(4, 1fr);
}

.trust-strip span {
  background: rgba(255, 255, 255, 0.08);
  min-height: 70px;
  padding: 24px;
  text-align: center;
}

.section,
.season-band,
.order-section,
.reviews,
.faq,
.footer {
  padding: clamp(54px, 8vw, 108px) clamp(18px, 5vw, 72px);
}

.intro,
.split {
  align-items: start;
  display: grid;
  gap: clamp(22px, 6vw, 90px);
  grid-template-columns: 0.8fr 1.2fr;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.65rem);
  letter-spacing: 0;
  line-height: 1.02;
  margin: 0;
}

h3 {
  font-size: 1.22rem;
  margin: 0 0 10px;
}

p {
  line-height: 1.7;
}

.intro > p,
.split p,
.section-head > p,
.order-copy p {
  color: var(--muted);
  font-size: 1.06rem;
  margin: 0;
}

.order-copy .contact-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: white;
  display: grid;
  gap: 6px;
  margin-top: 22px;
  padding: 18px;
}

.contact-card strong {
  color: var(--gold);
}

.contact-card span {
  color: rgba(255, 255, 255, 0.84);
}

.contact-card a {
  color: white;
  font-weight: 900;
}

.section-head {
  align-items: end;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 34px;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter {
  background: white;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--leaf);
  cursor: pointer;
  font-weight: 800;
  min-height: 38px;
  padding: 0 14px;
}

.filter.active {
  background: var(--leaf);
  color: white;
}

.product-grid,
.process-grid,
.reviews,
.payment-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-card,
.process-grid article,
.reviews article,
.payment-card,
.bulk-panel,
.order-form,
.faq details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 40px rgba(37, 71, 50, 0.08);
}

.product-card {
  display: flex;
  flex-direction: column;
  min-height: 252px;
  padding: 24px;
}

.product-image {
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  height: auto;
  margin: -8px -8px 18px;
  object-fit: cover;
  width: calc(100% + 16px);
}

.tag {
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 900;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.product-card p,
.process-grid p,
.faq p {
  color: var(--muted);
}

.product-meta {
  align-items: center;
  background: #fff6d8;
  border: 1px solid rgba(242, 165, 26, 0.34);
  border-radius: 8px;
  display: flex;
  gap: 12px;
  justify-content: space-between;
  margin: 8px 0 18px;
  padding: 12px 14px;
}

.product-meta span {
  color: #6d4c08;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.35;
}

.product-meta strong {
  color: var(--leaf-deep);
  flex: 0 0 auto;
  font-size: 0.86rem;
  white-space: nowrap;
}

.card-foot {
  align-items: center;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 18px;
}

.card-foot span {
  color: var(--muted);
  font-size: 0.9rem;
}

.card-foot a,
.add-cart {
  color: var(--leaf);
  font-weight: 900;
}

.add-cart {
  background: #edf5e9;
  border-radius: 999px;
  min-height: 38px;
  padding: 0 14px;
}

.season-band {
  background: #f6d36a;
}

.season-band .section-kicker {
  color: var(--leaf);
}

.timeline {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, 1fr);
}

.timeline div {
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(23, 92, 59, 0.2);
  border-radius: 8px;
  padding: 22px;
}

.timeline b,
.timeline span {
  display: block;
}

.timeline b {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.timeline span {
  color: #4f4a2d;
  line-height: 1.55;
}

.process {
  background: white;
}

.process-grid article {
  padding: 24px;
}

.process-grid span {
  color: var(--mango);
  display: block;
  font-weight: 950;
  margin-bottom: 26px;
}

.order-section {
  align-items: center;
  background: var(--leaf-deep);
  color: white;
  display: grid;
  gap: clamp(22px, 5vw, 70px);
  grid-template-columns: 0.9fr 1.1fr;
}

.order-form {
  color: var(--ink);
  display: grid;
  gap: 16px;
  padding: clamp(20px, 4vw, 34px);
}

.order-form label {
  color: var(--leaf-deep);
  display: grid;
  font-size: 0.86rem;
  font-weight: 900;
  gap: 8px;
}

input,
select {
  background: #fbfff9;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: 1rem;
  min-height: 48px;
  padding: 0 13px;
  width: 100%;
}

.estimate {
  align-items: center;
  background: #f4f9ef;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  padding: 14px;
}

.estimate span {
  color: var(--muted);
}

.delivery-note {
  background: #fff6d8;
  border: 1px solid rgba(242, 165, 26, 0.35);
  border-radius: 8px;
  color: #6d4c08;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.45;
  padding: 12px 14px;
}

.payments {
  background: #fffdf7;
}

.payment-card {
  min-height: 260px;
  padding: 26px;
}

.payment-icon {
  align-items: center;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(23, 92, 59, 0.1);
  display: inline-flex;
  height: 70px;
  justify-content: center;
  margin-bottom: 22px;
  overflow: hidden;
  padding: 8px;
  width: 92px;
}

.payment-icon img {
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.payment-card p {
  color: var(--muted);
}

.payment-card strong {
  display: block;
  font-size: 1.28rem;
  margin-top: 18px;
}

.payment-card dl {
  display: grid;
  gap: 13px;
  margin: 16px 0 0;
}

.payment-card dl div {
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

.payment-card dt {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.payment-card dd {
  font-weight: 900;
  margin: 3px 0 0;
  word-break: break-word;
}

.payment-warning {
  background: #fff6d8;
  border: 1px solid rgba(242, 165, 26, 0.35);
  border-radius: 8px;
  color: #6d4c08;
  font-weight: 800;
  line-height: 1.55;
  margin-top: 18px;
  padding: 16px 18px;
}

.bulk-panel {
  padding: 28px;
}

.bulk-panel ul {
  color: var(--muted);
  line-height: 1.9;
  margin: 12px 0 22px;
  padding-left: 20px;
}

.reviews {
  background: white;
  padding-top: 72px;
}

.reviews article {
  padding: 24px;
}

.reviews p {
  color: #36453c;
  margin-top: 0;
}

.faq {
  display: grid;
  gap: 18px;
  grid-template-columns: 0.85fr 1.15fr;
}

.faq details {
  grid-column: 2;
  padding: 20px 22px;
}

.faq div {
  grid-row: 1 / span 3;
}

.faq summary {
  cursor: pointer;
  font-weight: 900;
}

.footer {
  align-items: center;
  background: #092219;
  color: white;
  display: flex;
  justify-content: space-between;
}

.footer p {
  color: rgba(255, 255, 255, 0.7);
  margin: 6px 0 0;
}

.social-links {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.social-links a {
  align-items: center;
  background: var(--mango);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.18);
  color: #241707;
  display: inline-flex;
  height: 44px;
  justify-content: center;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
  width: 44px;
}

.social-links a:hover,
.social-links a:focus-visible {
  background: white;
  color: var(--leaf);
  transform: translateY(-3px);
}

.social-links svg {
  fill: currentColor;
  height: 20px;
  width: 20px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-weight: 800;
}

.is-hidden {
  display: none;
}

@media (max-width: 900px) {
  .nav {
    display: none;
  }

  .site-header {
    min-height: 66px;
  }

  .header-actions {
    gap: 8px;
  }

  .cart-toggle {
    min-height: 40px;
    padding: 0 12px;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    height: 48px;
    width: 48px;
  }

  .hero {
    min-height: 700px;
  }

  .hero-shade {
    background: linear-gradient(180deg, rgba(5, 28, 18, 0.84) 0%, rgba(7, 35, 23, 0.68) 56%, rgba(9, 46, 29, 0.28) 100%);
  }

  .hero-content {
    padding-top: 52px;
  }

  .hero h1 {
    max-width: 13ch;
  }

  .hero-stats,
  .trust-strip,
  .product-grid,
  .process-grid,
  .timeline,
  .reviews,
  .payment-grid,
  .intro,
  .split,
  .order-section,
  .faq {
    grid-template-columns: 1fr;
  }

  .section-head {
    align-items: start;
    flex-direction: column;
  }

  .faq details,
  .faq div {
    grid-column: auto;
    grid-row: auto;
  }

  .footer {
    align-items: start;
    flex-direction: column;
    gap: 22px;
  }

  .social-links {
    justify-content: flex-start;
  }

  .floating-whatsapp {
    display: inline-flex;
  }
}

@media (max-width: 560px) {
  .header-action {
    min-height: 40px;
    padding: 0 14px;
  }

  .header-action {
    display: none;
  }

  .cart-panel {
    padding: 18px;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: 690px;
  }

  .hero-content {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .trust-strip span {
    min-height: 58px;
    padding: 18px;
  }

  .product-meta {
    align-items: start;
    flex-direction: column;
    gap: 4px;
  }
}

/* ── Availability Badges ─────────────────────────────────────────── */
.card-top-row {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.avail-badge {
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 900;
  padding: 4px 11px;
}

.avail-badge.in-stock {
  background: #e6f5ec;
  color: #1a6e3a;
}

.avail-badge.low-stock {
  background: #fff4e0;
  color: #a05c00;
}

.avail-badge.out-of-stock {
  background: #fdecea;
  color: #b00020;
}

.avail-badge.preorder {
  background: #eef2ff;
  color: #3949ab;
}

/* ── Live Price Display ──────────────────────────────────────────── */
.live-price {
  align-items: baseline;
  display: flex;
  gap: 3px;
}

.live-price .price-val {
  color: var(--leaf-deep);
  font-size: 1rem;
  font-weight: 900;
}

.live-price small {
  color: var(--muted);
  font-size: 0.78rem;
}

.product-meta {
  align-items: center;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

/* ── WhatsApp Popup ──────────────────────────────────────────────── */
.floating-whatsapp {
  align-items: center;
  background: #1f8f5a;
  border: 2px solid rgba(255, 255, 255, 0.82);
  border-radius: 999px;
  bottom: 22px;
  box-shadow: 0 8px 28px rgba(16, 100, 60, 0.38);
  color: white;
  display: inline-flex;
  font-weight: 900;
  gap: 8px;
  min-height: 52px;
  padding: 0 20px;
  position: fixed;
  right: 22px;
  z-index: 30;
  cursor: pointer;
  border: none;
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: 0.95rem;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.floating-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(16,100,60,0.46); }

.floating-whatsapp svg {
  fill: white;
  height: 20px;
  width: 20px;
  flex-shrink: 0;
}

.wa-popup {
  background: white;
  border-radius: 16px;
  bottom: 86px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.22);
  position: fixed;
  right: 22px;
  width: min(360px, calc(100vw - 32px));
  z-index: 31;
  overflow: hidden;
  animation: waPop 180ms ease;
}

@keyframes waPop {
  from { opacity:0; transform: translateY(12px) scale(0.97); }
  to   { opacity:1; transform: translateY(0) scale(1); }
}

.wa-popup-head {
  align-items: center;
  background: #1f8f5a;
  color: white;
  display: flex;
  gap: 12px;
  padding: 14px 16px;
}

.wa-popup-avatar {
  align-items: center;
  background: rgba(255,255,255,0.22);
  border-radius: 50%;
  display: inline-flex;
  height: 38px;
  justify-content: center;
  width: 38px;
  flex-shrink: 0;
}

.wa-popup-avatar svg {
  fill: white;
  height: 20px;
  width: 20px;
}

.wa-popup-head strong {
  display: block;
  font-size: 0.95rem;
}

.wa-online {
  color: rgba(255,255,255,0.82);
  font-size: 0.78rem;
}

.wa-close {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1;
  margin-left: auto;
  padding: 4px 6px;
}

.wa-bubble {
  background: #f0f9f4;
  border-radius: 8px;
  font-size: 0.9rem;
  line-height: 1.55;
  margin: 14px 14px 10px;
  padding: 12px 14px;
}

.wa-bubble p { margin: 0; }

.wa-templates {
  display: grid;
  gap: 7px;
  padding: 0 14px 10px;
}

.wa-tpl {
  background: #f5f9f6;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #1a5c38;
  cursor: pointer;
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 9px 12px;
  text-align: left;
  transition: background 150ms ease;
}

.wa-tpl:hover { background: #e4f4ec; }

.wa-custom {
  align-items: center;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 8px;
  margin-top: 4px;
  padding: 10px 14px 14px;
}

.wa-input {
  background: #f5f9f6;
  border: 1px solid var(--line);
  border-radius: 999px;
  flex: 1;
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: 0.88rem;
  min-height: 40px;
  padding: 0 14px;
}

.wa-send {
  align-items: center;
  background: #1f8f5a;
  border: none;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  display: inline-flex;
  height: 40px;
  justify-content: center;
  transition: background 150ms ease;
  width: 40px;
  flex-shrink: 0;
}

.wa-send:hover { background: var(--leaf-deep); }

.wa-send svg {
  fill: white;
  height: 18px;
  width: 18px;
}

/* ── Customer Reviews Section ────────────────────────────────────── */
.customer-reviews {
  background: #f8fdf9;
}

.review-summary {
  align-items: center;
  background: white;
  border: 1px solid var(--line);
  border-radius: 12px;
  display: flex;
  gap: 14px;
  padding: 16px 22px;
  box-shadow: 0 8px 24px rgba(23,92,59,0.08);
}

.review-big-score {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--leaf-deep);
  line-height: 1;
}

.stars-display {
  color: var(--mango);
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.review-count-label {
  color: var(--muted);
  display: block;
  font-size: 0.82rem;
  margin-top: 2px;
}

.review-list,
#userReviewList {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0,1fr));
  margin-bottom: 14px;
}

.review-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 8px 28px rgba(23,92,59,0.07);
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
}

.review-card.new-review {
  border-color: var(--leaf);
  outline: 2px solid rgba(23,92,59,0.18);
}

.review-header {
  align-items: center;
  display: flex;
  gap: 10px;
}

.reviewer-avatar {
  align-items: center;
  background: var(--leaf);
  border-radius: 50%;
  color: white;
  display: inline-flex;
  flex-shrink: 0;
  font-size: 0.8rem;
  font-weight: 900;
  height: 36px;
  justify-content: center;
  width: 36px;
}

.review-header strong {
  display: block;
  font-size: 0.95rem;
}

.review-location {
  color: var(--muted);
  font-size: 0.78rem;
}

.review-stars {
  color: var(--mango);
  font-size: 0.9rem;
  letter-spacing: 1px;
  margin-left: auto;
}

.review-card p {
  color: #36453c;
  font-size: 0.93rem;
  line-height: 1.6;
  margin: 0;
}

.review-date {
  color: var(--muted);
  font-size: 0.78rem;
  margin-top: auto;
}

.review-form-wrap {
  background: white;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 8px 28px rgba(23,92,59,0.07);
  margin-top: 22px;
  padding: 24px;
}

.review-form-wrap h3 {
  margin-bottom: 16px;
}

.star-picker {
  display: flex;
  gap: 6px;
  margin-bottom: 14px;
}

.star-btn {
  background: none;
  border: none;
  color: #ccc;
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
  padding: 0;
  transition: color 120ms ease, transform 120ms ease;
}

.star-btn.active,
.star-btn:hover { color: var(--mango); transform: scale(1.15); }

.review-inputs {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 10px;
}

.review-form-wrap textarea {
  background: #fbfff9;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: 1rem;
  margin-bottom: 14px;
  padding: 12px 13px;
  resize: vertical;
  width: 100%;
}

.review-msg {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 8px 0 0;
}

@media (max-width: 900px) {
  .review-list,
  #userReviewList { grid-template-columns: 1fr; }
  .review-inputs  { grid-template-columns: 1fr; }
  .review-summary { flex-direction: column; align-items: flex-start; gap: 8px; }
}

@media (max-width: 560px) {
  .wa-popup { bottom: 80px; right: 12px; width: calc(100vw - 24px); }
  .floating-whatsapp { right: 16px; bottom: 16px; }
  .card-detail-link { color: var(--leaf); font-weight: 700; font-size: 0.9rem; 
  .language-switcher{
  display:flex;
  gap:8px;
}

.language-switcher button{
  background:#0e4a2b;
  color:white;
  border:none;
  padding:8px 15px;
  border-radius:20px;
  cursor:pointer;
}
