/* ============================================================
   SEJAL AQUA — SHARED STYLESHEET
   Tokens from Phase 1 (Sejal_Aqua_Phase1_Foundation_DesignSystem.md).
   Every page in Phase 2 links this one file — nothing below
   should be redefined per-page.
   ============================================================ */

:root {
  --bg-primary: #FFFFFF;
  --bg-secondary: #F4F6F7;
  --text-primary: #1A2327;
  --text-secondary: #5A6A70;
  --accent-primary: #0E5E6F;
  --accent-secondary: #C9A24B;
  --star-color: #8A6A22;
  /* Phase 4 QA fix: raw gold #C9A24B on white was 2.40:1, fails WCAG AA (needs 4.5:1). This darker gold hits 5.04:1. */
  --border: #E1E5E6;
  --success: #2E7D4F;

  --font-heading: "Playfair Display", Georgia, serif;
  --font-body: "Inter", -apple-system, "Segoe UI", sans-serif;

  --radius: 3px;
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 40px;
  --space-5: 64px;

  --shadow-card: 0 1px 2px rgba(26, 35, 39, 0.06);
  --mobile-bar-h: 56px;
  color-scheme: light;
}

[data-theme="dark"] {
  --bg-primary: #12181C;
  --bg-secondary: #1B2328;
  --text-primary: #EDEFF0;
  --text-secondary: #A6B0B4;
  --accent-primary: #3FA9BC;
  --accent-secondary: #D8B95F;
  --star-color: #D8B95F;
  /* dark theme original already passes at 9.40:1, no change needed */
  --border: #2A343A;
  --success: #4CAF6F;
  --shadow-card: 0 1px 2px rgba(0, 0, 0, 0.4);
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  padding-bottom: 0;
}

@media (max-width: 720px) {
  body.has-mobile-bar {
    padding-bottom: var(--mobile-bar-h);
  }
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 var(--space-2);
}

h1 {
  font-size: 40px;
}

h2 {
  font-size: 30px;
}

h3 {
  font-size: 21px;
}

@media (max-width: 640px) {
  h1 {
    font-size: 30px;
  }

  h2 {
    font-size: 24px;
  }
}

p {
  margin: 0 0 var(--space-2);
}

a {
  color: var(--accent-primary);
}

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

.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 var(--space-3);
}

.lede {
  color: var(--text-secondary);
  max-width: 640px;
}

/* Reduced motion respected */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------------- Skip link ---------------- */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--accent-primary);
  color: #fff;
  padding: 10px 16px;
  z-index: 100;
  border-radius: 0 0 var(--radius) 0;
}

.skip-link:focus {
  left: 0;
}

/* ---------------- Top contact bar ---------------- */
.topbar {
  background: var(--accent-primary);
  color: #fff;
  font-size: 13px;
}

.topbar .wrap {
  display: flex;
  justify-content: space-between;
  padding-top: 6px;
  padding-bottom: 6px;
  flex-wrap: wrap;
  gap: 4px;
}

.topbar a {
  color: #fff;
  text-decoration: none;
}

.topbar a:hover {
  text-decoration: underline;
}

/* ---------------- Nav ---------------- */
.nav {
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 30;
}

.nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-2);
  padding-bottom: var(--space-2);
  gap: var(--space-2);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  color: var(--text-primary);
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-img {
  height: 44px;
  width: auto;
  flex-shrink: 0;
  display: block;
}

.nav-links {
  display: flex;
  gap: var(--space-3);
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--text-primary);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--accent-primary);
  border-bottom-color: var(--accent-primary);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.nav-call-btn {
  display: none;
}

@media (min-width: 641px) {
  .nav-call-btn {
    display: inline-flex;
  }
}

.nav-toggle-menu {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  cursor: pointer;
}

@media (max-width: 860px) {
  .nav-links {
    display: none;
  }

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

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border);
    padding: var(--space-2) var(--space-3);
    gap: var(--space-1);
  }
}

.theme-toggle {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  background: var(--bg-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-primary);
  flex-shrink: 0;
}

.theme-toggle svg {
  width: 18px;
  height: 18px;
}

[data-theme="dark"] .icon-sun {
  display: block;
}

[data-theme="dark"] .icon-moon {
  display: none;
}

.icon-sun {
  display: none;
}

.icon-moon {
  display: block;
}

/* ---------------- Sections ---------------- */
section {
  padding: var(--space-5) 0;
}

section.alt {
  background: var(--bg-secondary);
}

section.tight {
  padding: var(--space-4) 0;
}

.section-label {
  color: var(--accent-primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: var(--space-1);
}

/* ---------------- Buttons ---------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  line-height: 1;
}

.btn-primary {
  background: var(--accent-primary);
  color: #fff;
}

.btn-primary:hover {
  opacity: 0.92;
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--border);
}

.btn-secondary:hover {
  border-color: var(--accent-primary);
  color: var(--accent-primary);
}

.btn-whatsapp {
  background: #25D366;
  color: #fff;
}

.btn-whatsapp:hover {
  opacity: 0.92;
}

.btn-sm {
  padding: 9px 16px;
  font-size: 13px;
}

.btn-row {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
  align-items: center;
}

input:focus,
textarea:focus,
select:focus,
.btn:focus-visible,
.theme-toggle:focus-visible,
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent-primary);
  outline-offset: 2px;
}

/* ---------------- CTA banner (recurring, sitewide) ---------------- */
.cta-banner {
  background: var(--accent-primary);
  color: #fff;
}

.cta-banner .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  flex-wrap: wrap;
  padding-top: var(--space-4);
  padding-bottom: var(--space-4);
}

.cta-banner h2,
.cta-banner h3 {
  color: #fff;
  margin-bottom: 4px;
}

.cta-banner .lede {
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 var(--space-1);
  max-width: 480px;
}

.cta-banner .btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

.cta-banner .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: #fff;
  color: #fff;
}

/* ---------------- Icon block (Our Services) ---------------- */
.icon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-3);
  margin-top: var(--space-3);
}

.icon-card {
  text-align: center;
  padding: var(--space-3) var(--space-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-primary);
}

.icon-card .motif {
  margin: 0 auto var(--space-2);
  width: 44px;
  height: 44px;
  color: var(--accent-primary);
}

.icon-card h4 {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  margin: 0;
}

/* ---------------- Stats counter ---------------- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: var(--space-3);
  margin-top: var(--space-3);
  text-align: center;
}

.stat {
  padding: var(--space-3) var(--space-1);
}

.stat-num {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 40px;
  color: var(--accent-primary);
  line-height: 1;
}

.stat-num.pending {
  font-size: 20px;
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-weight: 600;
}

.stat-label {
  color: var(--text-secondary);
  font-size: 14px;
  margin-top: 6px;
}

/* ---------------- Cards ---------------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: var(--space-3);
  margin-top: var(--space-3);
}

.card {
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
}

.card-media {
  aspect-ratio: 4/3;
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 13px;
  text-align: center;
  padding: var(--space-2);
  border-bottom: 1px solid var(--border);
}

.card-body {
  padding: var(--space-2);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 2px;
  cursor: pointer;
}

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

.card-spec {
  color: var(--text-secondary);
  font-size: 13px;
  margin-bottom: var(--space-1);
  flex: 1;
}

.card-price {
  font-weight: 700;
  color: var(--accent-primary);
  margin-bottom: var(--space-2);
  font-size: 16px;
}

.card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: auto;
}

.card-actions .btn {
  padding: 9px 8px;
  font-size: 13px;
}

/* Photo placeholder (used until real shoot assets land — never a stock photo) */
.photo-placeholder {
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-secondary);
  font-size: 13px;
  padding: var(--space-3);
  min-height: 220px;
}

.photo-placeholder strong {
  display: block;
  color: var(--text-primary);
  margin-bottom: 4px;
  font-size: 14px;
}

/* ---------------- Badges ---------------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent-secondary);
  color: var(--text-primary);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 999px;
}

.badge-outline {
  background: transparent;
  border: 1px solid var(--accent-secondary);
  color: var(--text-primary);
}

/* ---------------- Forms ---------------- */
.form-grid {
  display: grid;
  gap: var(--space-2);
  max-width: 480px;
}

label {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 4px;
  display: block;
}

input,
textarea,
select {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 15px;
}

.field-hint {
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: 4px;
}

/* ---------------- Testimonial card (shell, Phase 3 fills content) ---------------- */
.testimonial-card {
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-3);
  box-shadow: var(--shadow-card);
}

.testimonial-stars {
  color: var(--star-color);
  margin-bottom: var(--space-1);
}

.testimonial-name {
  font-weight: 700;
}

.testimonial-meta {
  color: var(--text-secondary);
  font-size: 13px;
  margin-bottom: var(--space-1);
}

.testimonial-empty {
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  padding: var(--space-4);
  text-align: center;
  color: var(--text-secondary);
}

/* ---------------- Two-column layout helpers (for asymmetric inner pages) ---------------- */
.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-4);
  align-items: center;
}

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

.split.reverse>*:first-child {
  order: 2;
}

@media (max-width: 800px) {

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

  .split.reverse>*:first-child {
    order: 0;
  }
}

/* ---------------- Accordion-free feature list ---------------- */
.feature-list {
  list-style: none;
  margin: var(--space-3) 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.feature-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.feature-list li svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--success);
}

/* ---------------- Footer ---------------- */
footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: var(--space-4) 0 var(--space-3);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr 1fr;
  gap: var(--space-3);
}

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

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

.footer-grid h4 {
  font-family: var(--font-body);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
  margin-bottom: var(--space-1);
}

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

.footer-grid a {
  color: var(--text-primary);
  text-decoration: none;
  font-size: 14px;
  display: block;
  padding: 3px 0;
}

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

.footer-strip {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-3);
  padding-top: var(--space-2);
  border-top: 1px solid var(--border);
}

.footer-strip img,
.footer-strip .fp {
  width: 56px;
  height: 56px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  text-align: center;
  color: var(--text-secondary);
  padding: 4px;
}

.footer-bottom {
  text-align: center;
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: var(--space-3);
  padding-top: var(--space-2);
  border-top: 1px solid var(--border);
}

/* ---------------- Sticky mobile call/WhatsApp bar ---------------- */
.mobile-cta-bar {
  display: none;
}

@media (max-width: 720px) {
  .mobile-cta-bar {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 40;
    height: var(--mobile-bar-h);
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.12);
  }

  .mobile-cta-bar a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
  }

  .mobile-cta-call {
    background: var(--accent-primary);
    color: #fff;
  }

  .mobile-cta-whatsapp {
    background: #25D366;
    color: #fff;
  }
}

/* ---------------- Modal (product detail, Phase 2 interim) ---------------- */
.modal-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 14, 16, 0.6);
  z-index: 50;
  align-items: center;
  justify-content: center;
  padding: var(--space-2);
}

.modal-backdrop.open {
  display: flex;
}

.modal {
  background: var(--bg-primary);
  border-radius: var(--radius);
  max-width: 440px;
  width: 100%;
  padding: var(--space-3);
  position: relative;
  border: 1px solid var(--border);
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
  padding: 4px;
}

.modal-spec-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}

.modal-spec-row:last-of-type {
  border-bottom: none;
}

/* ---------------- Misc ---------------- */
.eyebrow-badge {
  margin-bottom: var(--space-1);
}

.center {
  text-align: center;
}

.mt-3 {
  margin-top: var(--space-3);
}

.mt-4 {
  margin-top: var(--space-4);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

/* ============================================================
   PHASE 3 ADDITIONS — Trust, Location & New Pages
   Appended to the Phase 1/2 token file; nothing above this line
   is redefined, only added to.
   ============================================================ */

/* ---------------- Aggregate rating banner ---------------- */
.rating-banner {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  justify-content: center;
  flex-wrap: wrap;
}

.rating-banner .rating-num {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 44px;
  color: var(--accent-primary);
  line-height: 1;
}

.rating-banner .rating-stars {
  color: var(--star-color);
  font-size: 20px;
  letter-spacing: 2px;
}

.rating-banner .rating-meta {
  color: var(--text-secondary);
  font-size: 14px;
  text-align: left;
}

.rating-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
}

.rating-pill .rating-stars {
  font-size: 13px;
  color: var(--star-color);
}

/* ---------------- Testimonial card v2 (real reviews) ---------------- */
.testimonial-quote {
  font-style: italic;
  color: var(--text-primary);
  margin-bottom: var(--space-2);
}

.testimonial-source {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--accent-primary);
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 3px 10px;
  margin-top: var(--space-1);
}

.dev-note {
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  background: var(--bg-secondary);
  color: var(--text-secondary);
  font-size: 13px;
  padding: var(--space-2) var(--space-3);
  margin-top: var(--space-3);
}

.dev-note strong {
  color: var(--text-primary);
}

/* ---------------- Find Us / map section ---------------- */
.find-us-icon {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  background: var(--bg-secondary);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  text-decoration: none;
  flex-shrink: 0;
}

.find-us-icon:hover {
  color: var(--accent-primary);
  border-color: var(--accent-primary);
}

.find-us-icon svg {
  width: 18px;
  height: 18px;
}

.map-frame {
  width: 100%;
  height: 320px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.map-note {
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: 8px;
}

/* ---------------- Pricing table ---------------- */
.price-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: var(--space-3);
}

.price-table th,
.price-table td {
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}

.price-table th {
  font-family: var(--font-body);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
  font-weight: 600;
}

.price-table td.num {
  font-weight: 700;
  color: var(--accent-primary);
}

.price-table tr:last-child td {
  border-bottom: none;
}

.price-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-primary);
}

.price-table-wrap .price-table {
  margin-top: 0;
}

/* ---------------- AMC plan cards ---------------- */
.plan-card {
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-3);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
}

.plan-card.featured {
  border-color: var(--accent-primary);
  border-width: 2px;
}

.plan-card h3 {
  margin-bottom: 4px;
}

.plan-card .plan-tag {
  color: var(--text-secondary);
  font-size: 13px;
  margin-bottom: var(--space-2);
}

.plan-card .feature-list {
  margin-top: 0;
  margin-bottom: var(--space-3);
  flex: 1;
}

.plan-card .feature-list li {
  font-size: 14px;
}

/* ---------------- FAQ accordion ---------------- */
.accordion {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-primary);
}

.accordion-item {
  border-bottom: 1px solid var(--border);
}

.accordion-item:last-child {
  border-bottom: none;
}

.accordion-trigger {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-3);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  color: var(--text-primary);
}

.accordion-trigger:hover {
  color: var(--accent-primary);
}

.accordion-trigger .chevron {
  flex-shrink: 0;
  transition: transform 0.15s ease;
  color: var(--accent-primary);
}

.accordion-item.open .accordion-trigger .chevron {
  transform: rotate(180deg);
}

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease;
}

.accordion-item.open .accordion-panel {
  max-height: 480px;
}

.accordion-panel-inner {
  padding: 0 var(--space-3) var(--space-2);
  color: var(--text-secondary);
  font-size: 14px;
}

/* ---------------- Blog / structure-only placeholder ---------------- */
.blog-empty {
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  background: var(--bg-secondary);
  padding: var(--space-4);
  text-align: center;
}

.blog-card-skeleton {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-primary);
  overflow: hidden;
  opacity: 0.6;
}

.blog-card-skeleton .card-media {
  aspect-ratio: 16/9;
}

/* ---------------- Product detail page ---------------- */
.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: var(--space-2);
}

.spec-table td {
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}

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

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

.breadcrumb {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: var(--space-2);
}

.breadcrumb a {
  color: var(--text-secondary);
}

.breadcrumb a:hover {
  color: var(--accent-primary);
}

/* ---------------- Legal page ---------------- */
.legal-body h2 {
  font-size: 20px;
  margin-top: var(--space-4);
}

.legal-body p,
.legal-body li {
  color: var(--text-secondary);
  font-size: 15px;
}

/* ============================================================
   PHASE 4 ADDITIONS — Functional UX, SEO & Theme QA
   ============================================================ */

/* ---------------- Sitewide floating WhatsApp button (desktop + mobile) ---------------- */
.wa-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  text-decoration: none;
  transition: transform 0.15s ease;
}

.wa-float:hover {
  transform: scale(1.06);
}

.wa-float svg {
  width: 28px;
  height: 28px;
}

/* On narrow screens the mobile Call/WhatsApp bar already covers this job at the bottom of the
   viewport, so the floating button tucks up above it to avoid stacking two WhatsApp CTAs. */
.has-mobile-bar .wa-float {
  bottom: calc(var(--mobile-bar-h) + 16px);
}

@media (min-width: 721px) {
  .wa-float {
    bottom: 20px;
  }
}

/* ---------------- Form status / confirmation message ---------------- */
.form-status {
  display: none;
  margin-top: var(--space-2);
  padding: 10px 14px;
  border-radius: var(--radius);
  font-size: 14px;
}

.form-status.show {
  display: block;
}

.form-status.success {
  background: rgba(46, 125, 79, 0.12);
  color: var(--success);
  border: 1px solid var(--success);
}

.form-status.error {
  background: rgba(200, 60, 60, 0.1);
  color: #B23A3A;
  border: 1px solid #B23A3A;
}

[data-theme="dark"] .form-status.error {
  color: #E88;
  border-color: #E88;
}

/* ============================================================
   PHASE 4.1 ADDITION — Real product/site photos from sejalaqua.com
   ============================================================ */
/* Product cutout renders (and small icon PNGs) from the live site were shot/exported on a plain
   white background, not transparent. Rather than let that show as an accidental "white box" when
   the surrounding card flips to the dark theme (the exact bug the Phase 4 QA checklist warns
   against), we frame them deliberately as a white "product mat" in both themes -- a normal,
   intentional e-commerce presentation pattern, not a theming bug. */
.photo-mat {
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-media.photo-mat img,
.photo-placeholder.photo-mat img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.card-media.photo-mat {
  padding: var(--space-2);
}

.photo-placeholder.photo-mat {
  display: flex;
  padding: var(--space-3);
}

.icon-card .motif.photo-mat {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  padding: 8px;
}

.icon-card .motif.photo-mat img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-photo.photo-mat,
.about-photo.photo-mat {
  padding: var(--space-2);
}

.hero-photo.photo-mat img,
.about-photo.photo-mat img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* ============================================================
   HERO FULLSCREEN, CURTAIN REVEAL & HORIZONTAL PRODUCT SLIDER
   Matching ThrillHikers Reference Video Experience
   ============================================================ */

/* Navbar overlay styling on homepage */
.has-hero-overlay .topbar {
  display: none;
}

.has-hero-overlay .nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  box-shadow: none;
  color: #fff;
  transition: background 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}

.has-hero-overlay .nav-logo {
  color: #ffffff;
}

/* nav-logo is now an <img> — no SVG colour override needed */

.has-hero-overlay .nav-links a {
  color: rgba(255, 255, 255, 0.9);
}

.has-hero-overlay .nav-links a:hover,
.has-hero-overlay .nav-links a[aria-current="page"] {
  color: #ffffff;
  border-bottom-color: #4ed8f3;
}

.has-hero-overlay .find-us-icon {
  background: rgba(255, 255, 255, 0.15) !important;
  border: 1px solid rgba(255, 255, 255, 0.28) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #ffffff !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.has-hero-overlay .find-us-icon:hover {
  background: rgba(255, 255, 255, 0.3) !important;
  border-color: rgba(255, 255, 255, 0.5) !important;
  color: #4ed8f3 !important;
  transform: scale(1.05);
}

.has-hero-overlay .theme-toggle,
.has-hero-overlay .nav-toggle-menu {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.25);
  color: #ffffff;
}

.has-hero-overlay .theme-toggle:hover,
.has-hero-overlay .nav-toggle-menu:hover {
  background: rgba(255, 255, 255, 0.28);
}

/* Nav when scrolled down: stays overlay at top, but becomes normal solid/frosted */
.has-hero-overlay .nav.scrolled {
  background: rgba(14, 28, 42, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.has-hero-overlay .nav.scrolled .find-us-icon {
  background: rgba(255, 255, 255, 0.12) !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
  color: #ffffff !important;
}

[data-theme="light"] .has-hero-overlay .find-us-icon {
  background: rgba(255, 255, 255, 0.2) !important;
  border-color: rgba(255, 255, 255, 0.35) !important;
  color: #ffffff !important;
}

[data-theme="light"] .has-hero-overlay .nav.scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .has-hero-overlay .nav.scrolled .nav-logo {
  color: var(--text-primary);
}

/* nav-logo is now an <img> — no SVG colour override needed */

[data-theme="light"] .has-hero-overlay .nav.scrolled .nav-links a {
  color: var(--text-primary);
}

[data-theme="light"] .has-hero-overlay .nav.scrolled .nav-links a:hover,
[data-theme="light"] .has-hero-overlay .nav.scrolled .nav-links a[aria-current="page"] {
  color: var(--accent-primary);
  border-bottom-color: var(--accent-primary);
}

[data-theme="light"] .has-hero-overlay .nav.scrolled .find-us-icon {
  background: rgba(0, 0, 0, 0.06) !important;
  border-color: var(--border) !important;
  color: var(--text-primary) !important;
}

[data-theme="light"] .has-hero-overlay .nav.scrolled .theme-toggle,
[data-theme="light"] .has-hero-overlay .nav.scrolled .nav-toggle-menu {
  background: var(--bg-secondary);
  border-color: var(--border);
  color: var(--text-primary);
}

/* Sticky Hero Pin Container: sticks at top: 0 and never moves */
.hero-sticky-pin {
  position: sticky;
  top: 0;
  height: 100vh;
  min-height: 680px;
  z-index: 1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Fullscreen Hero: fully visible from top of screen, stays 100% stationary */
.hero-fullscreen {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 100%;
  background-image: linear-gradient(180deg, rgba(8, 22, 38, 0.55) 0%, rgba(6, 18, 32, 0.25) 40%, rgba(4, 12, 22, 0.9) 100%), url('hero-bg.jpg');
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #ffffff;
  padding-top: 80px;
  padding-bottom: clamp(32px, 5vh, 60px);
  transform: none !important;
}

/* Giant Watermark Branding across center */
.hero-watermark {
  position: absolute;
  top: 36%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-body);
  font-size: clamp(3.8rem, 12.5vw, 11rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.16);
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: 2;
  line-height: 1;
}

/* Hero Content Grid (Bottom aligned) */
.hero-content-wrap {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 40px;
  align-items: flex-end;
}

/* Hero Left Column */
.hero-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(14, 94, 111, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(78, 216, 243, 0.35);
  color: #c0f2ff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  width: fit-content;
}

.hero-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ed8f3;
  box-shadow: 0 0 0 0 rgba(78, 216, 243, 0.7);
  animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
  0% { box-shadow: 0 0 0 0 rgba(78, 216, 243, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(78, 216, 243, 0); }
  100% { box-shadow: 0 0 0 0 rgba(78, 216, 243, 0); }
}

.hero-title {
  font-size: clamp(34px, 4.2vw, 56px);
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  color: #ffffff;
  margin: 0;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.6);
}

.hero-title span {
  color: #79e3f8;
  display: block;
}

.hero-desc {
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
  max-width: 540px;
  margin: 0;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
}

/* Trust Stats Pill Row: strictly on 1 line, fluidly resizable */
.hero-trust-row {
  display: flex;
  align-items: center;
  flex-wrap: nowrap !important;
  width: 100%;
  max-width: 540px;
  gap: 0;
  padding-top: 10px;
}

.hero-trust-item {
  display: flex;
  flex-direction: column;
  flex: 1 1 0;
  min-width: 0;
}

.hero-trust-num {
  font-size: clamp(14px, 2.2vw, 22px);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  white-space: nowrap;
}

.hero-trust-label {
  font-size: clamp(9px, 1.1vw, 12px);
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero-trust-divider {
  width: 1px;
  height: clamp(18px, 2.8vw, 28px);
  background: rgba(255, 255, 255, 0.2);
  margin: 0 clamp(6px, 1.4vw, 16px);
  flex-shrink: 0;
}

/* Hero Right Column: Finder Widget */
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero-finder-card {
  background: rgba(255, 255, 255, 0.96);
  color: #1a2327;
  border-radius: 18px;
  padding: 16px 20px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  gap: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

[data-theme="dark"] .hero-finder-card {
  background: rgba(22, 32, 40, 0.94);
  color: #edeff0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6);
}

.finder-field {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.finder-field label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #5a6a70;
}

[data-theme="dark"] .finder-field label {
  color: #9cb0b8;
}

.finder-field select {
  width: 100%;
  border: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: #1a2327;
  cursor: pointer;
  padding: 4px 0;
  outline: none;
}

[data-theme="dark"] .finder-field select {
  color: #ffffff;
  background: #162028;
}

.finder-divider {
  width: 1px;
  height: 36px;
  background: #e1e5e6;
}

[data-theme="dark"] .finder-divider {
  background: rgba(255, 255, 255, 0.12);
}

.finder-btn {
  background: #0e5e6f;
  color: #ffffff;
  border: none;
  border-radius: 12px;
  padding: 12px 20px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  flex-shrink: 0;
}

.finder-btn:hover {
  background: #11788e;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(14, 94, 111, 0.4);
}

/* Floating Offer Tag beneath Finder */
.hero-offer-pill {
  background: rgba(14, 28, 40, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(201, 162, 75, 0.4);
  border-radius: 999px;
  padding: 8px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: #f1ebd8;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.offer-badge {
  background: linear-gradient(135deg, #c9a24b, #dfba60);
  color: #1a1a1a;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 6px;
  display: inline-block;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

/* Scroll cue indicator */
.hero-scroll-cue {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
  width: fit-content;
  margin-top: 6px;
  transition: color 0.2s ease;
}

.hero-scroll-cue:hover {
  color: #4ed8f3;
}

.mouse-icon {
  width: 20px;
  height: 32px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 12px;
  position: relative;
  display: flex;
  justify-content: center;
}

.mouse-wheel {
  width: 3px;
  height: 6px;
  background: #4ed8f3;
  border-radius: 2px;
  position: absolute;
  top: 6px;
  animation: scroll-wheel 1.6s infinite ease-in-out;
}

@keyframes scroll-wheel {
  0% { transform: translateY(0); opacity: 1; }
  80% { transform: translateY(12px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ============================================================
   CURTAIN REVEAL SECTION
   Slides up OVER the hero section on scroll
   ============================================================ */
.curtain-sheet {
  position: relative;
  z-index: 10;
  background: var(--bg-primary);
  border-radius: 40px 40px 0 0;
  box-shadow: 0 -25px 65px rgba(0, 0, 0, 0.3);
  margin-top: 0;
  min-height: 100vh;
  transition: background 0.3s ease;
  overflow: hidden;
}

[data-theme="dark"] .curtain-sheet {
  box-shadow: 0 -25px 65px rgba(0, 0, 0, 0.7), 0 -1px 0 rgba(255, 255, 255, 0.1);
}

/* ============================================================
   HORIZONTAL MOVE CARDS SECTION (PRODUCT CAROUSEL)
   Matching "OUR DESTINATIONS" in video
   ============================================================ */
.products-showcase-section {
  padding: 60px 0 40px;
  position: relative;
}

.showcase-header-wrap {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}

.showcase-header-left {
  max-width: 680px;
}

.section-pill-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-primary);
  background: rgba(14, 94, 111, 0.08);
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 12px;
  border: 1px solid rgba(14, 94, 111, 0.16);
}

[data-theme="dark"] .section-pill-tag {
  color: #5ed6ee;
  background: rgba(94, 214, 238, 0.1);
  border-color: rgba(94, 214, 238, 0.25);
}

.showcase-heading {
  font-size: clamp(28px, 3.2vw, 42px);
  font-family: var(--font-heading);
  line-height: 1.2;
  margin: 0;
  color: var(--text-primary);
}

.showcase-header-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.see-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-primary);
  border: 1px solid var(--border);
  padding: 10px 18px;
  border-radius: 999px;
  text-decoration: none;
  background: var(--bg-secondary);
  transition: all 0.2s ease;
}

.see-all-btn:hover {
  background: var(--accent-primary);
  color: #ffffff;
  border-color: var(--accent-primary);
  transform: translateX(2px);
}

/* Horizontal Slider Container & Track */
.product-slider-container {
  position: relative;
  width: 100%;
}

.product-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 12px 24px 32px;
  scrollbar-width: none;
}

.product-track::-webkit-scrollbar {
  display: none;
}

/* Product Card (Matching the video cards) */
.product-slide-card {
  flex: 0 0 320px;
  max-width: 330px;
  scroll-snap-align: start;
  background: var(--bg-primary);
  border-radius: 20px;
  border: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
  user-select: none;
}

[data-theme="dark"] .product-slide-card {
  background: var(--bg-secondary);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.product-slide-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(14, 94, 111, 0.15);
  border-color: var(--accent-primary);
}

[data-theme="dark"] .product-slide-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  border-color: var(--accent-primary);
}

/* Top bar over card image */
.card-top-bar {
  position: absolute;
  top: 14px;
  left: 14px;
  right: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 3;
}

.card-pill-badge {
  background: rgba(14, 28, 42, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.card-pill-badge.featured {
  background: linear-gradient(135deg, #0e5e6f, #1b8ba2);
  color: #ffffff;
  border-color: rgba(78, 216, 243, 0.4);
}

.card-pill-badge.copper {
  background: linear-gradient(135deg, #a45a2a, #d48248);
  color: #ffffff;
  border-color: rgba(255, 200, 160, 0.4);
}

.card-pill-badge.commercial {
  background: linear-gradient(135deg, #30404d, #495e6f);
  color: #ffffff;
}

.card-quick-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(6px);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a2327;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

[data-theme="dark"] .card-quick-btn {
  background: rgba(22, 32, 40, 0.85);
  color: #ffffff;
}

.card-quick-btn:hover {
  transform: scale(1.1);
  background: #ffffff;
}

/* Card Visual / Media */
.card-hero-media {
  height: 220px;
  width: 100%;
  background: linear-gradient(180deg, rgba(240, 246, 248, 0.9) 0%, rgba(225, 236, 240, 0.5) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  position: relative;
  overflow: hidden;
}

[data-theme="dark"] .card-hero-media {
  background: linear-gradient(180deg, rgba(27, 35, 40, 0.95) 0%, rgba(20, 26, 30, 0.9) 100%);
}

.card-hero-media img {
  max-width: 100%;
  max-height: 180px;
  object-fit: contain;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.12));
}

.product-slide-card:hover .card-hero-media img {
  transform: scale(1.06);
}

/* Card Details */
.card-details-panel {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 10px;
}

.card-item-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
  line-height: 1.25;
  text-decoration: none;
}

.card-item-title:hover {
  color: var(--accent-primary);
}

.card-item-tech {
  font-size: 13px;
  color: var(--accent-primary);
  font-weight: 600;
}

[data-theme="dark"] .card-item-tech {
  color: #4ed8f3;
}

.card-item-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.card-price-tag {
  font-size: 19px;
  font-weight: 700;
  color: var(--text-primary);
}

.card-price-label {
  font-size: 12px;
  color: var(--text-secondary);
  font-weight: 400;
}

.card-actions-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 4px;
}

.card-actions-row .btn {
  padding: 8px 12px;
  font-size: 13px;
  justify-content: center;
  text-align: center;
}

/* Slider Navigation Controls (Below the cards, matching video) */
.slider-controls-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 12px;
}

.slider-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg-secondary);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.slider-nav-btn:hover {
  background: var(--accent-primary);
  color: #ffffff;
  border-color: var(--accent-primary);
  transform: scale(1.08);
  box-shadow: 0 4px 14px rgba(14, 94, 111, 0.25);
}

.slider-dots-container {
  display: flex;
  align-items: center;
  gap: 6px;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background: var(--border);
  transition: all 0.2s ease;
  cursor: pointer;
}

.slider-dot.active {
  width: 24px;
  background: var(--accent-primary);
}

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */
@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-watermark {
    top: 30%;
    font-size: clamp(3rem, 14vw, 7rem);
  }

  .hero-fullscreen {
    padding-bottom: 28px;
  }

  .hero-finder-card {
    flex-wrap: wrap;
    padding: 14px;
  }

  .finder-divider {
    display: none;
  }

  .finder-field {
    flex: 1 1 45%;
    min-width: 140px;
  }

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

  .showcase-header-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 860px) {
  .has-hero-overlay .nav-links.open {
    background: rgba(14, 28, 42, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.45);
    padding: 16px 20px;
    gap: 6px;
  }

  .has-hero-overlay .nav-links.open a {
    color: #ffffff !important;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
  }

  .has-hero-overlay .nav-links.open a:hover,
  .has-hero-overlay .nav-links.open a[aria-current="page"] {
    background: rgba(78, 216, 243, 0.15);
    color: #4ed8f3 !important;
  }

  /* Light mode mobile dropdown menu: clear high-contrast dark text on white/frosted bg */
  [data-theme="light"] .has-hero-overlay .nav-links.open {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
  }

  [data-theme="light"] .has-hero-overlay .nav-links.open a {
    color: #1a2327 !important;
  }

  [data-theme="light"] .has-hero-overlay .nav-links.open a:hover,
  [data-theme="light"] .has-hero-overlay .nav-links.open a[aria-current="page"] {
    background: rgba(14, 94, 111, 0.08);
    color: var(--accent-primary) !important;
  }
}

@media (max-width: 640px) {
  .hero-sticky-pin {
    min-height: 100svh;
  }

  .hero-fullscreen {
    padding-top: 76px;
    padding-bottom: 20px;
  }

  .hero-watermark {
    font-size: clamp(2.4rem, 13vw, 5rem);
    top: 24%;
  }

  .hero-grid {
    gap: 12px;
  }

  .hero-left {
    gap: 8px;
  }

  .hero-eyebrow {
    font-size: 11px;
    padding: 4px 10px;
    margin-bottom: 2px;
  }

  .hero-title {
    font-size: clamp(20px, 5.8vw, 28px);
    line-height: 1.15;
  }

  .hero-desc {
    font-size: 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .hero-trust-row {
    padding-top: 4px;
    gap: 0;
  }

  .hero-trust-num {
    font-size: clamp(13px, 4vw, 17px);
  }

  .hero-trust-label {
    font-size: clamp(8px, 2.2vw, 10.5px);
  }

  .hero-trust-divider {
    margin: 0 clamp(4px, 1.5vw, 8px);
    height: 20px;
  }

  .hero-finder-card {
    flex-direction: column;
    gap: 10px;
  }

  .finder-field {
    width: 100%;
    flex: 1 1 100%;
  }

  .hero-offer-pill {
    font-size: 11px;
    padding: 6px 12px;
    flex-wrap: wrap;
  }

  .curtain-sheet {
    border-radius: 26px 26px 0 0;
  }

  .product-slide-card {
    flex: 0 0 280px;
  }
}