/* ============================================================
   BOTANVÈ — Cream & Coral brand system
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,400..800&family=Inter:wght@400;500;600;700;800&display=swap');

:root{
  --cream:#fbf5ea;
  --cream-2:#f3ecdc;
  --cream-3:#e8dfc9;
  --paper:#ffffff;
  --ink:#22281f;
  --ink-2:#14180f;
  --ink-soft:#5b5a4e;
  --ink-lo:#8a8878;
  --coral:#ff6b45;
  --coral-dark:#e5532e;
  --coral-tint:#ffe4d8;
  --sage:#4b6350;
  --sage-light:#e8ede7;
  --line: rgba(34,40,31,0.14);
  --line-strong: rgba(34,40,31,0.22);
  --shadow: 0 20px 50px rgba(34,28,15,0.10);
  --shadow-lg: 0 30px 70px rgba(34,28,15,0.16);
  --radius:24px;
  --radius-sm:14px;
  --maxw:1180px;
}
*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0; background:var(--cream); color:var(--ink);
  font-family:'Inter', system-ui, sans-serif; font-size:15.5px; line-height:1.5;
  -webkit-font-smoothing:antialiased;
}
h1,h2,h3,h4,.eyebrow{ font-family:'Bricolage Grotesque', system-ui, sans-serif; font-weight:700; letter-spacing:-0.01em; margin:0; color:var(--ink); }
a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }
.wrap{ max-width:var(--maxw); margin:0 auto; padding:0 24px; }
section{ padding:64px 0; }
.section-alt{ background:var(--cream-2); }
.eyebrow{ font-size:12px; text-transform:uppercase; letter-spacing:0.1em; color:var(--coral-dark); font-weight:800; margin-bottom:6px; }
.btn-primary, .btn-ghost, .checkout-btn, .pdp-add{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  border-radius:999px; padding:14px 26px; font-weight:800; font-size:14.5px;
  cursor:pointer; border:none; transition:transform .15s ease, background .15s ease, box-shadow .15s ease;
}
.btn-primary, .checkout-btn, .pdp-add{ background:var(--coral); color:#fff; box-shadow:0 10px 26px rgba(255,107,69,0.32); }
.btn-primary:hover, .checkout-btn:hover, .pdp-add:hover{ background:var(--coral-dark); transform:translateY(-1px); }
.btn-ghost{ background:transparent; border:1.5px solid var(--line-strong); color:var(--ink); }
.btn-ghost:hover{ border-color:var(--ink); }
.pdp-add:disabled{ background:var(--ink-lo); box-shadow:none; cursor:not-allowed; }

/* Header */
header.site-header{ position:sticky; top:0; z-index:60; background:rgba(251,245,234,0.92); backdrop-filter:blur(10px); border-bottom:1px solid var(--line); }
.header-inner{ display:flex; align-items:center; justify-content:space-between; padding:14px 24px; max-width:var(--maxw); margin:0 auto; }
.header-logo{ display:flex; align-items:center; gap:10px; }
.header-logo{ display:flex; align-items:center; gap:8px; flex-wrap:nowrap; white-space:nowrap; }
.header-logo img{ height:30px; width:auto; border-radius:6px; flex-shrink:0; }
.header-wordmark{ font-family:'Bricolage Grotesque', sans-serif; font-weight:800; font-size:19px; letter-spacing:0.02em; color:var(--ink); white-space:nowrap; }
@media (max-width:480px){ .header-logo img{ height:26px; } .header-wordmark{ font-size:16px; } }
.header-nav{ display:flex; gap:28px; align-items:center; }
.header-nav a{ font-size:14px; font-weight:600; color:var(--ink-soft); }
.header-nav a:hover{ color:var(--ink); }
.header-actions{ display:flex; align-items:center; gap:16px; }
.cart-btn{ position:relative; background:none; border:none; cursor:pointer; font-size:20px; color:var(--ink); }
.cart-count{ position:absolute; top:-6px; right:-8px; background:var(--coral); color:#fff; font-size:10px; font-weight:800; border-radius:50%; width:17px; height:17px; display:flex; align-items:center; justify-content:center; }
.mobile-menu-btn{ display:none; background:none; border:none; font-size:22px; cursor:pointer; }
@media (max-width:860px){
  .header-nav{ display:none; }
  .mobile-menu-btn{ display:block; }
}

/* Breadcrumb */
.breadcrumb{ padding:16px 24px 0; font-size:13px; color:var(--ink-lo); max-width:var(--maxw); margin:0 auto; }
.breadcrumb a{ color:var(--ink-lo); }
.breadcrumb a:hover{ color:var(--coral-dark); }

/* Hero */
.hero{ padding:56px 0 40px; }
.hero-badge{ display:inline-block; background:var(--paper); border:1px solid var(--line); border-radius:999px; padding:6px 14px; font-size:12.5px; font-weight:700; color:var(--ink-soft); margin-bottom:18px; }
.hero-grid{ display:grid; grid-template-columns:1.05fr 0.95fr; gap:48px; align-items:center; }
.hero h1{ font-size:clamp(36px,5vw,58px); line-height:1.05; margin:6px 0 18px; }
.hero h1 em{ font-style:italic; color:var(--coral-dark); }
.hero p{ color:var(--ink-soft); font-size:17px; line-height:1.7; max-width:520px; margin-bottom:26px; }
.hero-ctas{ display:flex; gap:12px; flex-wrap:wrap; margin-bottom:16px; }
.hero-ship{ font-size:13px; color:var(--ink-soft); }
.hero-img{ background:var(--cream-2); border-radius:var(--radius); padding:40px; text-align:center; }
.hero-img img{ max-height:380px; margin:0 auto; }
@media (max-width:860px){ .hero-grid{ grid-template-columns:1fr; } }

/* trust bar */
.trust-bar{ display:flex; flex-wrap:wrap; gap:28px; justify-content:center; padding:28px 0; border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.trust-item{ display:flex; align-items:center; gap:8px; font-size:13.5px; font-weight:700; color:var(--ink-soft); }

/* section head */
.section-head{ max-width:640px; margin-bottom:38px; }
.section-head h2{ font-size:clamp(26px,3vw,36px); margin:8px 0 12px; }
.section-head p{ color:var(--ink-soft); font-size:15.5px; line-height:1.7; }

/* product grid / cards */
.product-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:24px; }
.card{ background:var(--paper); border:1px solid var(--line); border-radius:var(--radius); overflow:hidden; transition:transform .2s ease, box-shadow .2s ease; }
.card:hover{ transform:translateY(-4px); box-shadow:var(--shadow-lg); }
.card-img{ background:var(--cream-2); padding:30px; text-align:center; }
.card-img img{ max-height:190px; margin:0 auto; }
.card-body{ padding:22px; }
.card-body h3{ font-size:17px; margin-bottom:6px; }
.card-body h3 a:hover{ color:var(--coral-dark); }
.card-desc{ color:var(--ink-soft); font-size:13.5px; line-height:1.6; margin-bottom:14px; min-height:40px; }
.price-row{ display:flex; align-items:center; justify-content:space-between; }
.price{ font-weight:800; font-size:17px; font-family:'Bricolage Grotesque',sans-serif; }
.view-link{ font-size:13px; font-weight:700; color:var(--coral-dark); }
.badge-bestseller{ display:inline-block; background:var(--coral); color:#fff; font-size:10.5px; font-weight:800; letter-spacing:.04em; text-transform:uppercase; border-radius:999px; padding:4px 10px; margin-bottom:10px; }
@media (max-width:700px){ .product-grid{ grid-template-columns:1fr; } }

/* step / stage cards */
.step-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.step-grid-3{ grid-template-columns:repeat(3,1fr); }
.step-card{ background:var(--paper); border:1px solid var(--line); border-radius:var(--radius-sm); padding:26px 22px; }
.step-badge{ font-size:28px; margin-bottom:12px; }
.step-card h3{ font-size:16px; margin-bottom:8px; }
.step-card p{ color:var(--ink-soft); font-size:13.5px; line-height:1.6; }
.step-grid-3 .step-card{ opacity:0; transform:translateY(28px); transition:opacity .6s ease, transform .6s ease; }
.step-grid-3 .step-card.in-view{ opacity:1; transform:translateY(0); }
@media (max-width:860px){
  .step-grid{ grid-template-columns:repeat(2,1fr); }
  .step-grid-3{ grid-template-columns:1fr; max-width:640px; margin:0 auto; gap:22px; }
}

.stage-grid{ display:grid; gap:22px; }
.stage-card{ background:var(--paper); border:1px solid var(--line); border-radius:var(--radius); padding:28px; }
.stage-card .idx{ font-family:'Bricolage Grotesque',sans-serif; font-size:32px; font-weight:800; color:var(--coral); }
.tag-pill{ background:var(--sage-light); color:var(--sage); font-size:11.5px; font-weight:700; border-radius:999px; padding:5px 11px; }
.tag-pill.coral{ background:var(--coral-tint); color:var(--coral-dark); }

/* how-steps / install */
.how-steps{ display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.how-step{ display:flex; gap:14px; }
.how-step .idx{ font-family:'Bricolage Grotesque',sans-serif; font-weight:800; font-size:20px; color:var(--coral); flex-shrink:0; }
.how-step strong{ display:block; margin-bottom:4px; font-size:15px; }
.how-step p{ color:var(--ink-soft); font-size:13px; line-height:1.6; margin:0; }
@media (max-width:860px){ .how-steps{ grid-template-columns:1fr 1fr; } }

/* testimonials */
.testi-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.testi-card{ background:var(--paper); border:1px solid var(--line); border-radius:var(--radius-sm); padding:24px; }
.testi-stars{ color:var(--coral); font-size:14px; margin-bottom:10px; }
.testi-name{ font-weight:800; font-size:14px; margin-top:12px; }
.testi-loc{ color:var(--ink-lo); font-size:12.5px; }
.testi-avatar{ width:36px; height:36px; border-radius:50%; background:var(--coral); color:#fff; display:flex; align-items:center; justify-content:center; font-weight:800; font-size:14px; margin-bottom:12px; }
@media (max-width:860px){ .testi-grid{ grid-template-columns:1fr; } }

/* review form */
.review-form-block{ margin-top:28px; padding-top:24px; border-top:1px solid var(--line); }
.review-form-block h3{ font-family:'Bricolage Grotesque',sans-serif; font-size:19px; margin-bottom:16px; }
.review-form-block label{ display:block; font-size:13px; font-weight:700; margin-bottom:6px; color:var(--ink); }
.review-form-block input[type="text"], .review-form-block input[type="email"], .review-form-block textarea{
  width:100%; padding:11px 13px; border-radius:8px; border:1px solid var(--line); font-family:inherit; font-size:14px; background:var(--paper);
}
.review-form-block input:focus, .review-form-block textarea:focus{ outline:2px solid var(--coral); outline-offset:1px; }
.review-form-block .field{ margin-bottom:14px; max-width:440px; }
.star-picker{ display:flex; gap:4px; font-size:30px; line-height:1; cursor:pointer; color:#ddd; user-select:none; }
.star-picker span{ transition:color .15s; }
.star-picker span.filled{ color:var(--coral); }
.star-picker span:hover{ color:#ffb199; }
.review-submit-btn{ background:var(--ink); color:var(--cream); border:none; padding:13px 28px; border-radius:999px; font-weight:800; font-size:14px; cursor:pointer; }
.review-submit-btn:hover{ background:var(--coral); }
.review-submit-btn:disabled{ opacity:0.6; cursor:default; }
.review-msg{ margin-top:12px; font-size:13.5px; }
.review-honeypot{ position:absolute; left:-9999px; top:-9999px; }

.testimonial-card{ display:flex; gap:22px; align-items:flex-start; background:var(--paper); border:1px solid var(--line); border-radius:var(--radius); padding:30px; }

/* faq */
.faq-item{ border-bottom:1px solid var(--line); }
.faq-q{ width:100%; text-align:left; background:none; border:none; padding:18px 0; font-size:15px; font-weight:700; cursor:pointer; display:flex; justify-content:space-between; align-items:center; color:var(--ink); font-family:'Inter',sans-serif; }
.faq-q .plus{ color:var(--coral); font-size:18px; transition:transform .2s ease; }
.faq-item.open .plus{ transform:rotate(45deg); }
.faq-a{ display:none; padding:0 0 18px; color:var(--ink-soft); font-size:14px; line-height:1.75; }
.faq-item.open .faq-a{ display:block; }

/* compare table */
.compare-table{ width:100%; border-collapse:collapse; background:var(--paper); border-radius:var(--radius); overflow:hidden; border:1px solid var(--line); }
.compare-table th{ background:var(--ink); color:var(--cream); font-family:'Bricolage Grotesque',sans-serif; font-size:13px; text-transform:uppercase; letter-spacing:0.05em; padding:16px 18px; text-align:left; font-weight:700; }
.compare-table th.after-col{ background:var(--coral); }
.compare-table td{ padding:14px 18px; font-size:14.5px; border-bottom:1px solid var(--line); }
.compare-table tr:last-child td{ border-bottom:none; }
.compare-table td.neg{ color:var(--coral-dark); font-weight:600; }
.compare-table td.pos{ color:var(--sage); font-weight:700; }
.compare-table td.pos::before{ content:'✓ '; }
.compare-table td.neg::before{ content:'✕ '; }
@media (max-width:700px){ .compare-table{ font-size:12.5px; } .compare-table th,.compare-table td{ padding:10px; } }

/* install cta */
.install-cta{ background:var(--ink-2); color:var(--cream); border-radius:var(--radius); padding:52px 32px; text-align:center; }
.install-cta h2{ color:var(--cream); font-size:clamp(24px,3vw,34px); margin-bottom:12px; }
.install-cta p{ color:rgba(251,245,234,0.75); margin-bottom:24px; }

/* PDP */
.pdp{ padding-top:24px; }
.pdp-grid{ display:grid; grid-template-columns:1fr 1fr; gap:52px; }
.gallery-main{ background:var(--cream-2); border-radius:var(--radius); padding:30px; text-align:center; min-height:340px; display:flex; align-items:center; justify-content:center; }
.gallery-main img{ max-height:340px; margin:0 auto; }
.gallery-thumbs{ display:flex; gap:10px; margin-top:14px; flex-wrap:wrap; }
.gallery-thumbs button{ border:1.5px solid var(--line); background:var(--paper); border-radius:10px; padding:4px; cursor:pointer; width:64px; height:64px; }
.gallery-thumbs button.active{ border-color:var(--coral); }
.gallery-thumbs img{ width:100%; height:100%; object-fit:contain; }
.pdp-info h1{ font-size:clamp(26px,3vw,34px); margin-bottom:8px; }
.pdp-desc{ color:var(--ink-soft); font-size:15.5px; line-height:1.7; margin-bottom:18px; }
.pdp-variants{ margin-bottom:20px; }
.pdp-variants .label{ font-size:12.5px; font-weight:800; text-transform:uppercase; letter-spacing:.05em; color:var(--ink-soft); margin-bottom:10px; }
.variant-row{ display:flex; gap:10px; flex-wrap:wrap; }
.variant-chip{ border:1.5px solid var(--line-strong); background:var(--paper); border-radius:999px; padding:9px 18px; font-size:13.5px; font-weight:700; cursor:pointer; }
.variant-chip.active{ border-color:var(--coral); background:var(--coral-tint); color:var(--coral-dark); }
.variant-chip:disabled{ opacity:.4; cursor:not-allowed; }
.pdp-price-row{ margin-bottom:18px; }
.pdp-price{ font-family:'Bricolage Grotesque',sans-serif; font-size:30px; font-weight:800; }
.qty-row{ display:flex; align-items:center; gap:16px; margin-bottom:20px; }
.qty-control{ display:flex; align-items:center; border:1.5px solid var(--line-strong); border-radius:999px; overflow:hidden; }
.qty-control button{ width:38px; height:38px; border:none; background:var(--paper); cursor:pointer; font-size:16px; }
.qty-control span{ width:36px; text-align:center; font-weight:700; }
.pdp-meta{ display:grid; grid-template-columns:1fr 1fr 1fr; gap:14px; margin-top:26px; padding-top:24px; border-top:1px solid var(--line); }
.pdp-meta div{ font-size:12.5px; }
.pdp-meta strong{ display:block; font-size:11px; text-transform:uppercase; letter-spacing:.04em; color:var(--ink-lo); margin-bottom:4px; }
.pdp-rating-badge{ font-size:13px; color:var(--ink-soft); }
@media (max-width:860px){ .pdp-grid{ grid-template-columns:1fr; gap:28px; } .pdp-meta{ grid-template-columns:1fr; } }

.pdp-tabs{ padding-top:60px; display:grid; gap:44px; }
.tab-block h2{ font-size:20px; margin-bottom:16px; }
.feature-list{ list-style:none; padding:0; margin:0; display:grid; gap:10px; }
.feature-list li{ padding-left:26px; position:relative; font-size:14.5px; color:var(--ink-soft); }
.feature-list li::before{ content:'✓'; position:absolute; left:0; color:var(--sage); font-weight:800; }
.spec-list{ list-style:none; padding:0; margin:0; }
.spec-list li{ display:flex; justify-content:space-between; padding:11px 0; border-bottom:1px solid var(--line); font-size:14px; color:var(--ink-soft); }
.spec-list li b{ color:var(--ink); }
.related{ padding-top:60px; }

/* cart drawer */
.drawer-overlay{ position:fixed; inset:0; background:rgba(20,24,15,0.5); z-index:80; display:none; }
.drawer-overlay.open{ display:block; }
.drawer{ position:fixed; top:0; right:-420px; width:400px; max-width:92vw; height:100%; background:var(--paper); z-index:90; transition:right .28s ease; display:flex; flex-direction:column; }
.drawer.open{ right:0; }
.drawer-head{ display:flex; justify-content:space-between; align-items:center; padding:22px 24px; border-bottom:1px solid var(--line); }
.drawer-close{ background:none; border:none; font-size:26px; cursor:pointer; color:var(--ink-soft); }
.drawer-items{ flex:1; overflow-y:auto; padding:16px 24px; }
.drawer-item{ display:flex; gap:14px; align-items:center; padding:14px 0; border-bottom:1px solid var(--line); }
.drawer-item img{ width:64px; height:64px; object-fit:contain; background:var(--cream-2); border-radius:10px; }
.drawer-item-info{ flex:1; }
.drawer-item-info .name{ font-weight:700; font-size:14px; }
.drawer-item-info .variant{ color:var(--ink-lo); font-size:12.5px; margin:2px 0 8px; }
.drawer-item-qty{ display:flex; align-items:center; gap:10px; }
.qty-btn{ width:26px; height:26px; border:1px solid var(--line-strong); background:var(--paper); border-radius:50%; cursor:pointer; }
.drawer-item-remove{ background:none; border:none; color:var(--coral-dark); font-size:12px; font-weight:700; cursor:pointer; margin-left:auto; }
.drawer-foot{ padding:20px 24px; border-top:1px solid var(--line); }
.drawer-total{ display:flex; justify-content:space-between; font-weight:800; font-size:16px; margin-bottom:14px; }
.checkout-btn{ width:100%; }
.checkout-note{ text-align:center; font-size:12px; color:var(--ink-lo); margin-top:10px; }
.drawer-empty{ text-align:center; padding:60px 20px; color:var(--ink-soft); }
.drawer-empty-icon{ font-size:36px; margin-bottom:12px; }

/* downloads */
.dl-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:22px; }
.dl-card{ background:var(--paper); border:1px solid var(--line); border-radius:var(--radius); padding:28px; display:flex; gap:18px; align-items:flex-start; transition:transform .2s ease, box-shadow .2s ease; }
.dl-card:hover{ transform:translateY(-4px); box-shadow:var(--shadow-lg); }
.dl-icon{ width:52px; height:52px; border-radius:14px; background:var(--coral-tint); color:var(--coral-dark); display:flex; align-items:center; justify-content:center; flex-shrink:0; font-size:22px; }
.dl-body h3{ font-size:17px; margin-bottom:6px; }
.dl-body p{ color:var(--ink-soft); font-size:13.5px; line-height:1.6; margin:0 0 14px; }
.dl-btn{ display:inline-flex; align-items:center; gap:8px; background:var(--ink); color:var(--cream); border-radius:999px; padding:9px 18px; font-size:13px; font-weight:700; }
.dl-btn:hover{ background:var(--coral); }
@media (max-width:700px){ .dl-grid{ grid-template-columns:1fr; } }

/* footer */
footer{ background:var(--ink-2); color:var(--cream); padding:56px 0 26px; margin-top:60px; }
.foot-grid{ display:grid; grid-template-columns:1.4fr repeat(4,1fr); gap:32px; }
.foot-brand p{ color:rgba(251,245,234,0.65); font-size:13.5px; line-height:1.6; margin:10px 0 0; }
.foot-links{ display:contents; }
.foot-col h4{ color:var(--cream); font-size:13px; text-transform:uppercase; letter-spacing:.05em; margin-bottom:14px; }
.foot-col a{ display:block; color:rgba(251,245,234,0.65); font-size:13.5px; margin-bottom:10px; }
.foot-col a:hover{ color:var(--coral); }
.foot-bottom{ margin-top:10px; padding-top:20px; border-top:1px solid rgba(251,245,234,0.12); font-size:12.5px; color:rgba(251,245,234,0.5); }
@media (max-width:860px){ .foot-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:560px){ .foot-grid{ grid-template-columns:1fr; } }

.whatsapp-float{ position:fixed; bottom:24px; right:24px; width:56px; height:56px; background:#25D366; border-radius:50%; display:flex; align-items:center; justify-content:center; box-shadow:0 10px 26px rgba(37,211,102,0.4); z-index:70; transition:transform .18s ease; }
.whatsapp-float:hover{ transform:scale(1.08); }

.toast{ position:fixed; bottom:24px; left:50%; transform:translateX(-50%) translateY(80px); background:var(--ink); color:var(--cream); padding:14px 22px; border-radius:999px; font-size:13.5px; font-weight:700; z-index:100; opacity:0; transition:all .25s ease; pointer-events:none; }
.toast.show{ transform:translateX(-50%) translateY(0); opacity:1; }

/* generic content pages */
.legal-content{ max-width:760px; }
.legal-content h2{ font-size:19px; margin:32px 0 12px; }
.legal-content p, .legal-content li{ color:var(--ink-soft); font-size:14.5px; line-height:1.75; }
.legal-content ul{ padding-left:20px; }

/* checkout page */
.checkout-grid{ display:grid; grid-template-columns:1.1fr 0.9fr; gap:48px; align-items:flex-start; }
.checkout-form-block{ background:var(--paper); border:1px solid var(--line); border-radius:var(--radius); padding:32px; }
.checkout-summary{ background:var(--cream-2); border-radius:var(--radius); padding:28px; position:sticky; top:100px; }
.form-row{ margin-bottom:16px; }
.form-row label{ display:block; font-size:12.5px; font-weight:700; margin-bottom:6px; color:var(--ink-soft); }
.form-row input, .form-row select{ width:100%; padding:12px 14px; border:1.5px solid var(--line-strong); border-radius:10px; font-size:14.5px; font-family:'Inter',sans-serif; background:var(--paper); }
.form-row input:focus, .form-row select:focus{ outline:none; border-color:var(--coral); }
.form-row-2{ display:grid; grid-template-columns:1fr 1fr; gap:14px; }
#payment-element{ margin:20px 0; }
#payment-message{ color:var(--coral-dark); font-size:13.5px; margin-top:10px; display:none; }
.summary-line{ display:flex; justify-content:space-between; font-size:14px; padding:8px 0; color:var(--ink-soft); }
.summary-total{ display:flex; justify-content:space-between; font-weight:800; font-size:18px; padding-top:14px; margin-top:8px; border-top:1px solid var(--line-strong); }
.summary-item{ display:flex; gap:12px; padding:10px 0; align-items:center; }
.summary-item img{ width:50px; height:50px; object-fit:contain; background:var(--paper); border-radius:8px; }
.summary-item-name{ font-size:13.5px; font-weight:600; flex:1; }
@media (max-width:860px){ .checkout-grid{ grid-template-columns:1fr; } .form-row-2{ grid-template-columns:1fr; } }

.spinner{ display:inline-block; width:16px; height:16px; border:2px solid rgba(255,255,255,.4); border-top-color:#fff; border-radius:50%; animation:spin .7s linear infinite; }
@keyframes spin{ to{ transform:rotate(360deg); } }

.gallery-lifestyle-img{ aspect-ratio:4/5; overflow:hidden; background:var(--cream-2); }
.gallery-lifestyle-img img{ width:100%; height:100%; object-fit:cover; display:block; max-height:none; }

/* google reviews */
.google-badge{ display:flex; align-items:center; gap:14px; background:var(--paper); border:1px solid var(--line); border-radius:16px; padding:18px 24px; margin-bottom:32px; flex-wrap:wrap; }
.google-badge .g-logo{ width:32px; height:32px; flex-shrink:0; }
.google-rating-num{ font-family:'Bricolage Grotesque',sans-serif; font-weight:800; font-size:26px; }
.google-stars{ color:#FBBC04; font-size:15px; letter-spacing:1px; }
.google-count{ color:var(--ink-soft); font-size:13.5px; }
.google-reviews-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.google-review-card{ background:var(--paper); border:1px solid var(--line); border-radius:var(--radius-sm); padding:20px; }
.g-review-head{ display:flex; align-items:center; gap:10px; margin-bottom:10px; }
.g-avatar{ width:36px; height:36px; border-radius:50%; background:var(--coral); color:#fff; display:flex; align-items:center; justify-content:center; font-weight:800; font-size:14px; flex-shrink:0; }
.g-review-name{ font-weight:700; font-size:13.5px; }
.g-review-meta{ font-size:11.5px; color:var(--ink-lo); }
.g-review-stars{ color:#FBBC04; font-size:13px; margin-bottom:8px; }
.g-review-text{ color:var(--ink-soft); font-size:13.5px; line-height:1.6; }
@media (max-width:860px){ .google-reviews-grid{ grid-template-columns:1fr; } }

/* blog / article */
.article-hero{ max-width:760px; }
.article-meta{ display:flex; gap:14px; align-items:center; color:var(--ink-lo); font-size:13px; margin:14px 0 8px; }
.article-body{ max-width:720px; }
.article-body h2{ font-size:22px; margin:38px 0 14px; }
.article-body h3{ font-size:18px; margin:28px 0 10px; }
.article-body p{ color:var(--ink-soft); font-size:15.5px; line-height:1.85; margin:0 0 18px; }
.article-body ul, .article-body ol{ color:var(--ink-soft); font-size:15.5px; line-height:1.85; padding-left:22px; margin:0 0 18px; }
.article-body li{ margin-bottom:8px; }
.article-body a{ color:var(--coral-dark); font-weight:700; }
.article-body blockquote{ border-left:3px solid var(--coral); margin:26px 0; padding:4px 0 4px 20px; font-style:italic; color:var(--ink); font-size:17px; }
.article-cta{ background:var(--cream-2); border-radius:var(--radius); padding:26px; margin:34px 0; text-align:center; }
.article-cta p{ margin-bottom:14px; }
.blog-list{ display:flex; flex-direction:column; gap:0; }
.blog-card{ display:grid; grid-template-columns:220px 1fr; gap:26px; padding:26px 0; border-bottom:1px solid var(--line); text-decoration:none; color:var(--ink); }
.blog-card:first-child{ padding-top:0; }
.blog-card-img{ background:var(--cream-2); border-radius:var(--radius-sm); height:150px; display:flex; align-items:center; justify-content:center; font-size:34px; overflow:hidden; }
.blog-card-img img{ width:100%; height:100%; object-fit:cover; }
.blog-card-tag{ font-size:11.5px; font-weight:800; text-transform:uppercase; letter-spacing:.05em; color:var(--coral-dark); margin-bottom:8px; }
.blog-card h3{ font-size:19px; margin-bottom:8px; }
.blog-card p{ color:var(--ink-soft); font-size:14px; line-height:1.6; margin:0 0 8px; }
.blog-card .read-more{ font-size:13px; font-weight:700; color:var(--coral-dark); }
@media (max-width:640px){ .blog-card{ grid-template-columns:1fr; } .blog-card-img{ height:170px; } }

/* small-mobile refinements */
@media (max-width:480px){
  section{ padding:44px 0; }
  .wrap{ padding:0 18px; }
  .hero{ padding:36px 0 28px; }
  .hero-badge{ font-size:11.5px; padding:5px 12px; }
  .hero-ctas{ flex-direction:column; align-items:stretch; }
  .hero-ctas .btn-primary, .hero-ctas .btn-ghost{ width:100%; text-align:center; }
  .hero-img{ padding:22px; }
  .hero-img img{ max-height:260px; }
  .trust-bar{ gap:16px 20px; padding:20px 0; justify-content:flex-start; }
  .trust-item{ font-size:12.5px; }
  .section-head h2{ font-size:23px; }
  .how-steps{ grid-template-columns:1fr; }
  .testi-card p{ font-size:13.5px; }
  .install-cta{ padding:36px 22px; }
}
