/* ─── TOKENS ─── */
  :root {
    --mint:        #A5E8D3;
    --teal:        #0E8A72;
    --teal-deep:   #0B6E5B;
    --teal-ink:    #0A5446;
    --deep-sea:    #0A3F52;
    --deep-sea-2:  #0E5A6B;
    --deep-sea-ink:#08323F;
    --coral:       #F97316;
    --coral-dark:  #D9610C;
    --sand:        #ECEAE3;
    --mist:        #F0FDFA;
    --ink:         #0F172A;
    --muted:       #475569;
    --white:       #FFFFFF;
    --border:      #D1E8E3;

    --r-card:      16px;
    --r-btn:       12px;
    --r-pill:      999px;

    --font-head:   'Fredoka', system-ui, sans-serif;
    --font-body:   'Nunito', system-ui, sans-serif;

    --shadow-sm:   0 1px 4px rgba(10,84,70,.08);
    --shadow-md:   0 4px 20px rgba(10,84,70,.12);
    --shadow-lg:   0 8px 40px rgba(10,84,70,.15);

    --transition:  200ms ease;
  }

  /* ─── RESET ─── */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--ink);
    background: var(--sand);
    -webkit-font-smoothing: antialiased;
  }
  img { display: block; max-width: 100%; height: auto; }
  a { color: var(--teal); text-decoration: none; }
  a:hover { color: var(--teal-deep); }
  ul { list-style: none; }

  /* ─── UTILITIES ─── */
  .screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    position: absolute !important;
    word-wrap: normal !important;
  }
  .screen-reader-text:focus {
    clip: auto !important;
    clip-path: none;
    width: auto;
    height: auto;
    top: 12px;
    left: 12px;
    display: block;
    z-index: 100000;
    padding: 12px 18px;
    font-size: 14px;
    font-weight: 700;
    line-height: normal;
    color: var(--teal-ink);
    background: var(--white);
    border-radius: var(--r-btn);
    box-shadow: var(--shadow-md);
    text-decoration: none;
  }
  .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
  .section-label {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--teal);
    display: block;
    margin-bottom: 8px;
  }
  .section-title {
    font-family: var(--font-head);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 600;
    color: var(--teal-ink);
    line-height: 1.2;
  }
  .section-sub {
    font-size: 17px;
    color: var(--muted);
    max-width: 560px;
    margin-top: 10px;
  }
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 26px;
    border-radius: var(--r-btn);
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    text-decoration: none;
    white-space: nowrap;
  }
  .btn:focus-visible { outline: 3px solid var(--coral); outline-offset: 3px; }
  .btn-coral {
    background: var(--coral);
    color: var(--white);
  }
  .btn-coral:hover { background: var(--coral-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(249,115,22,.3); color: var(--white); }
  .btn-teal {
    background: var(--teal-deep);
    color: var(--white);
  }
  .btn-teal:hover { background: var(--teal-ink); transform: translateY(-1px); color: var(--white); }
  .btn-outline-teal {
    background: transparent;
    color: var(--teal-deep);
    border: 2px solid var(--teal-deep);
  }
  .btn-outline-teal:hover { background: var(--mist); color: var(--teal-ink); }
  .pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: var(--r-pill);
    font-size: 13px;
    font-weight: 700;
    background: var(--mint);
    color: var(--teal-ink);
  }
  .in-stock-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    border-radius: var(--r-pill);
    font-size: 12px;
    font-weight: 700;
    background: #DCFCE7;
    color: #166534;
  }

  /* ─── NAV ─── */
  .nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
  }
  .nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
    gap: 16px;
  }
  .nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
  }
  .logo-blob {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
  }
  /* Uploaded logo (Customize → Site Identity → Logo) — sized to match the blob mark. */
  .nav-logo-img { height: 44px; width: auto; display: block; flex-shrink: 0; }
  .footer-brand .nav-logo-img { height: 40px; }
  .nav-brand {
    font-family: var(--font-head);
    font-size: 19px;
    font-weight: 600;
    color: var(--teal-ink);
    line-height: 1.2;
  }
  .nav-brand span { display: block; font-size: 11px; font-weight: 400; color: var(--muted); font-family: var(--font-body); letter-spacing: .04em; }
  .nav-links {
    display: none;
    align-items: center;
    gap: 4px;
  }
  .nav-links a {
    font-size: 15px;
    font-weight: 600;
    color: var(--ink);
    padding: 6px 10px;
    border-radius: 8px;
    transition: background var(--transition), color var(--transition);
  }
  .nav-links a:hover { background: var(--mist); color: var(--teal-ink); }
  /* The nav menu prints bare <li> items (items_wrap '%3$s', no <ul>), so the
     global `ul { list-style:none }` reset doesn't reach them — kill markers here. */
  .nav-links li, .mobile-menu li { list-style: none; }
  .nav-right {
    display: none;
    align-items: center;
    gap: 12px;
  }
  .nav-phone {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    font-weight: 700;
    color: var(--teal-deep);
    text-decoration: none;
  }
  .nav-phone:hover { color: var(--teal-ink); }
  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    border: none;
    background: transparent;
    cursor: pointer;
    border-radius: 10px;
    transition: background var(--transition);
  }
  .hamburger:hover { background: var(--mist); }
  .hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: transform .22s ease, opacity .22s ease;
  }
  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .mobile-menu {
    display: none;
    flex-direction: column;
    background: var(--white);
    border-top: 1px solid var(--border);
    padding: 16px 20px 24px;
    gap: 4px;
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a {
    font-size: 16px;
    font-weight: 600;
    color: var(--ink);
    padding: 10px 12px;
    border-radius: 10px;
    transition: background var(--transition);
  }
  .mobile-menu a:hover { background: var(--mist); color: var(--teal-ink); }
  .mobile-menu-foot {
    margin-top: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .mobile-menu-foot .nav-phone { font-size: 16px; }

  @media (min-width: 900px) {
    .nav-links { display: flex; }
    .nav-right { display: flex; }
    .hamburger { display: none; }
    .mobile-menu { display: none !important; }
  }

  /* ─── HERO ─── */
  .hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, rgba(232,248,242,.92) 0%, rgba(236,234,227,.80) 50%, rgba(165,232,211,.42) 100%), url('../img/beach-bg.jpg') center/cover no-repeat;
    background-image: linear-gradient(160deg, rgba(232,248,242,.92) 0%, rgba(236,234,227,.80) 50%, rgba(165,232,211,.42) 100%), -webkit-image-set(url('../img/beach-bg.webp') type('image/webp'), url('../img/beach-bg.jpg') type('image/jpeg'));
    background-image: linear-gradient(160deg, rgba(232,248,242,.92) 0%, rgba(236,234,227,.80) 50%, rgba(165,232,211,.42) 100%), image-set(url('../img/beach-bg.webp') type('image/webp'), url('../img/beach-bg.jpg') type('image/jpeg'));
    padding: 60px 0 80px;
  }
  .hero-blob-1 {
    position: absolute;
    top: -80px;
    right: -80px;
    width: 420px;
    height: 420px;
    opacity: .45;
    pointer-events: none;
  }
  .hero-blob-2 {
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 300px;
    height: 300px;
    opacity: .3;
    pointer-events: none;
  }
  .hero-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: flex-start;
  }
  .hero-text { max-width: 580px; }
  .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--mint);
    color: var(--teal-ink);
    font-size: 13px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: var(--r-pill);
    margin-bottom: 18px;
  }
  .hero-headline {
    font-family: var(--font-head);
    font-size: clamp(40px, 7vw, 72px);
    font-weight: 600;
    color: var(--teal-ink);
    line-height: 1.1;
    margin-bottom: 18px;
  }
  .hero-headline em {
    font-style: normal;
    color: var(--coral);
  }
  .hero-sub {
    font-size: 18px;
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 28px;
    max-width: 500px;
  }
  .hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; }
  /* Search card */
  .search-card {
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    padding: 28px;
    width: 100%;
    max-width: 480px;
  }
  .search-card-title {
    font-family: var(--font-head);
    font-size: 20px;
    font-weight: 600;
    color: var(--teal-ink);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .search-field { display: flex; flex-direction: column; gap: 5px; margin-bottom: 14px; }
  .search-field label {
    font-size: 13px;
    font-weight: 700;
    color: var(--muted);
    letter-spacing: .04em;
    text-transform: uppercase;
  }
  .search-field select,
  .search-field input {
    padding: 12px 14px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--ink);
    background: var(--sand);
    transition: border-color var(--transition);
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23475569' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
  }
  .search-field input { background-image: none; }
  .search-field select:focus,
  .search-field input:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(14,138,114,.15); }
  .search-dates { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  @media (min-width: 1100px) {
    .hero-inner { flex-direction: row; align-items: center; gap: 60px; }
    .search-card { flex-shrink: 0; }
  }

  /* ─── TRUST BAND ─── */
  .trust-band {
    background: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 28px 0;
  }
  .trust-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .trust-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--mist);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .trust-item h3 {
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 600;
    color: var(--teal-ink);
    line-height: 1.2;
  }
  .trust-item p { font-size: 13px; color: var(--muted); line-height: 1.4; margin-top: 2px; }
  @media (min-width: 700px) {
    .trust-grid { grid-template-columns: repeat(4, 1fr); }
  }

  /* ─── CATEGORIES ─── */
  .categories { padding: 72px 0; background: var(--mist); }
  .section-header { margin-bottom: 40px; }
  .cat-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .cat-card {
    background: var(--white);
    border-radius: var(--r-card);
    padding: 28px 20px 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition);
    text-decoration: none;
  }
  .cat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
  .cat-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--mint);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .cat-card h3 {
    font-family: var(--font-head);
    font-size: 17px;
    font-weight: 600;
    color: var(--teal-ink);
    line-height: 1.2;
  }
  .cat-card p { font-size: 13px; color: var(--muted); line-height: 1.4; }
  .cat-link {
    font-size: 13px;
    font-weight: 700;
    color: var(--teal);
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: auto;
  }
  @media (min-width: 700px) {
    .cat-grid { grid-template-columns: repeat(3, 1fr); }
  }

  /* ─── HOW IT WORKS ─── */
  .how-it-works { padding: 80px 0; background: var(--sand); }
  .steps-grid {
    display: grid;
    gap: 32px;
    margin-top: 48px;
  }
  .step {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    position: relative;
  }
  .step-num {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--mint);
    color: var(--teal-ink);
    font-family: var(--font-head);
    font-size: 22px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .step-body h3 {
    font-family: var(--font-head);
    font-size: 22px;
    font-weight: 600;
    color: var(--teal-ink);
    margin-bottom: 8px;
  }
  .step-body p { font-size: 16px; color: var(--muted); line-height: 1.65; }
  .step-icon-wrap {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--mist) 0%, var(--mint) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  @media (min-width: 768px) {
    .steps-grid { grid-template-columns: repeat(3, 1fr); }
    .step::after {
      content: '';
      position: absolute;
      top: 26px;
      right: -20px;
      width: 40px;
      height: 2px;
      background: var(--mint);
    }
    .step:last-child::after { display: none; }
  }

  /* ─── FEATURED GEAR ─── */
  .featured { padding: 80px 0; background: var(--mist); position: relative; overflow: hidden; }
  .featured-blob {
    position: absolute;
    top: -100px;
    right: -80px;
    width: 380px;
    height: 380px;
    opacity: .2;
    pointer-events: none;
  }
  .products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 40px;
  }
  .product-card {
    background: var(--white);
    border-radius: var(--r-card);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    transition: transform var(--transition), box-shadow var(--transition);
  }
  .product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
  .product-img {
    background: #F6FCFA;
    height: 210px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  .product-img img { width: 100%; height: 100%; object-fit: contain; padding: 14px; }
  .product-img-icon { opacity: .55; }
  .product-body { padding: 16px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
  .product-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 6px;
  }
  .product-name {
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 600;
    color: var(--teal-ink);
    line-height: 1.3;
  }
  .product-area {
    font-size: 12px;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 4px;
  }
  .product-price {
    font-family: var(--font-head);
    font-size: 20px;
    font-weight: 600;
    color: var(--teal-deep);
  }
  .product-price span { font-size: 13px; font-weight: 400; color: var(--muted); }
  .product-card .btn { width: 100%; justify-content: center; font-size: 14px; padding: 11px 18px; margin-top: auto; }
  @media (min-width: 768px) {
    .products-grid { grid-template-columns: repeat(4, 1fr); }
    .product-img { height: 230px; }
  }

  /* ─── SERVICE AREA ─── */
  .service-area {
    padding: 72px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
  }
  .area-inner { display: flex; flex-direction: column; gap: 32px; }
  .area-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
  .area-map {
    border-radius: 20px;
    background: var(--mist);
    height: 300px;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    border: 6px solid #fff;
    box-shadow: var(--shadow-md);
  }
  .area-map iframe { width: 100%; height: 100%; border: 0; display: block; }
  #service-map { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; }
  .leaflet-container { font-family: var(--font-body); background: #e8f1ef; }
  .map-legend { position: absolute; right: 12px; bottom: 12px; z-index: 800; background: rgba(255,255,255,.95); border-radius: 10px; padding: 9px 11px; font: 12px/1.35 var(--font-body); color: var(--teal-ink); box-shadow: var(--shadow-sm); }
  .map-legend .row { display: flex; align-items: center; gap: 7px; margin-top: 5px; }
  .map-legend .sw { width: 14px; height: 14px; border-radius: 3px; display: inline-block; }
  @media (min-width: 900px) {
    .area-inner { flex-direction: row; align-items: center; gap: 60px; }
    .area-map { width: 480px; height: 380px; }
  }

  /* ─── TESTIMONIALS ─── */
  .testimonials { padding: 80px 0; background: var(--sand); }
  .reviews-grid {
    display: grid;
    gap: 20px;
    margin-top: 40px;
  }
  .review-card {
    background: var(--white);
    border-radius: var(--r-card);
    padding: 28px;
    box-shadow: var(--shadow-sm);
  }
  .stars { display: flex; gap: 3px; margin-bottom: 14px; }
  .review-text {
    font-size: 17px;
    color: var(--ink);
    line-height: 1.65;
    font-style: italic;
    margin-bottom: 18px;
  }
  .review-author { display: flex; align-items: center; gap: 12px; }
  .author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--mint);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-size: 18px;
    font-weight: 600;
    color: var(--teal-ink);
    flex-shrink: 0;
  }
  .author-name {
    font-weight: 700;
    color: var(--teal-ink);
    font-size: 15px;
  }
  .author-detail { font-size: 13px; color: var(--muted); margin-top: 2px; }
  @media (min-width: 768px) {
    .reviews-grid { grid-template-columns: repeat(3, 1fr); }
  }

  /* ─── CTA BAND ─── */
  .cta-band {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--deep-sea) 0%, var(--deep-sea-2) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .cta-blob {
    position: absolute;
    top: -60px;
    right: -60px;
    width: 300px;
    height: 300px;
    opacity: .1;
    pointer-events: none;
  }
  .cta-blob-2 {
    position: absolute;
    bottom: -80px;
    left: -40px;
    width: 260px;
    height: 260px;
    opacity: .08;
    pointer-events: none;
  }
  .cta-band h2 {
    font-family: var(--font-head);
    font-size: clamp(28px, 4vw, 46px);
    font-weight: 600;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 14px;
  }
  .cta-band p {
    font-size: 18px;
    color: rgba(255,255,255,.75);
    margin-bottom: 36px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }
  .cta-band-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

  /* ─── FOOTER ─── */
  .footer {
    background: var(--deep-sea-ink);
    color: rgba(255,255,255,.75);
    padding: 60px 0 32px;
  }
  .footer-grid {
    display: grid;
    gap: 40px;
    margin-bottom: 48px;
  }
  .footer-brand { max-width: 280px; }
  .footer-brand .nav-brand { color: var(--white); }
  .footer-brand .nav-brand span { color: rgba(255,255,255,.55); }
  .footer-tagline { font-size: 14px; color: rgba(255,255,255,.55); margin-top: 12px; line-height: 1.5; }
  .footer-values {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
  }
  .footer-value-pill {
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: var(--r-pill);
    background: rgba(165,232,211,.15);
    color: var(--mint);
    border: 1px solid rgba(165,232,211,.3);
  }
  .footer-col h3 {
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 16px;
  }
  .footer-col ul { display: flex; flex-direction: column; gap: 8px; }
  .footer-col ul li a {
    font-size: 14px;
    color: rgba(255,255,255,.65);
    transition: color var(--transition);
  }
  .footer-col ul li a:hover { color: var(--mint); }
  .footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255,255,255,.65);
    margin-bottom: 10px;
  }
  .footer-contact-item a { color: rgba(255,255,255,.65); transition: color var(--transition); }
  .footer-contact-item a:hover { color: var(--mint); }
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    padding-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  .footer-bottom p { font-size: 13px; }
  .footer-policy { display: flex; flex-wrap: wrap; gap: 8px 18px; }
  .footer-policy a { font-size: 13px; color: rgba(255,255,255,.7); }
  .footer-policy a:hover { color: var(--mint); }

  /* ─── Quick-view modal (in-page Booqable product detail) ─── */
  .product-card .kqv-trigger { cursor: pointer; }
  .product-card .product-img.kqv-trigger:focus-visible { outline: 3px solid var(--teal); outline-offset: -3px; }
  .kqv { position: fixed; inset: 0; z-index: 9998; display: none; overflow-y: auto; -webkit-overflow-scrolling: touch; }
  .kqv.is-open { display: block; }
  .kqv-backdrop { position: fixed; inset: 0; background: rgba(10,63,82,.55); }
  .kqv-panel { position: relative; max-width: 760px; margin: 4vh auto; background: var(--white); border-radius: 18px; box-shadow: var(--shadow-lg); padding: 28px; }
  .kqv-close { position: fixed; top: 16px; right: 16px; width: 40px; height: 40px; border: 0; border-radius: 50%; background: var(--white); color: var(--teal-ink); font-size: 26px; line-height: 40px; text-align: center; cursor: pointer; box-shadow: var(--shadow-md); z-index: 2; }
  .kqv-close:hover { background: var(--mint); }
  .kqv-body { min-height: 120px; }
  @media (max-width: 600px) { .kqv-panel { margin: 0; min-height: 100%; border-radius: 0; padding: 20px 16px 48px; } }
  .social-links { display: flex; gap: 10px; }
  .social-link {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255,255,255,.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition);
  }
  .social-link:hover { background: rgba(165,232,211,.2); }
  .footer-social { margin-top: 20px; }
  .footer-social-label { display: block; font-size: 12px; font-weight: 700; color: rgba(255,255,255,.55); margin-bottom: 10px; }
  @media (min-width: 600px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
  }
  @media (min-width: 900px) {
    .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.4fr; }
    .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; }
  }

  /* ───────────────────────────────  BLOG  ─────────────────────────────── */
  /* Shared page-head band (mirrors the inline one in page templates). */
  .page-head { background: linear-gradient(160deg,#E8F8F2 0%, var(--sand) 100%); padding: 50px 0 36px; }
  .breadcrumb { font-size: 13px; color: var(--muted); margin-bottom: 16px; }
  .breadcrumb a { color: var(--teal-deep); }

  /* Category filter row */
  .blog-filter { display: flex; gap: 8px; margin-top: 22px; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; padding-bottom: 4px; }
  .blog-filter::-webkit-scrollbar { display: none; }
  .blog-chip { flex: 0 0 auto; font-size: 13px; font-weight: 700; padding: 8px 16px; border-radius: var(--r-pill); background: #fff; border: 1px solid var(--border); color: var(--teal-ink); transition: background var(--transition), color var(--transition), border-color var(--transition); }
  .blog-chip:hover { background: var(--mist); }
  .blog-chip[aria-current="page"] { background: var(--teal-ink); color: #fff; border-color: var(--teal-ink); }
  @media (min-width: 768px) { .blog-filter { flex-wrap: wrap; overflow: visible; } }

  /* Grid */
  .post-grid { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 40px; }
  @media (min-width: 640px) { .post-grid { grid-template-columns: repeat(2,1fr); gap: 20px; } }
  @media (min-width: 980px) { .post-grid { grid-template-columns: repeat(3,1fr); gap: 24px; } }
  .cat-toolbar { color: var(--muted); font-size: 14px; }

  /* Card */
  .post-card { position: relative; display: flex; flex-direction: column; background: var(--white); border-radius: var(--r-card); overflow: hidden; box-shadow: var(--shadow-sm); height: 100%; transition: transform var(--transition), box-shadow var(--transition); }
  .post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
  .post-thumb { position: relative; aspect-ratio: 16/10; background: #F6FCFA; overflow: hidden; }
  .post-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 400ms ease; }
  .post-card:hover .post-thumb img { transform: scale(1.04); }
  .post-cat { position: absolute; top: 12px; left: 12px; box-shadow: var(--shadow-sm); }
  .post-thumb--blank { display: grid; place-items: center; background: linear-gradient(150deg, var(--mint) 0%, var(--mist) 100%); }
  .post-thumb--blank svg { width: 64px; height: 64px; opacity: .5; }
  .post-body { padding: 18px 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
  .post-title { font-family: var(--font-head); font-size: 18px; font-weight: 600; color: var(--teal-ink); line-height: 1.3; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
  .post-card:hover .post-title { color: var(--teal-deep); }
  .post-excerpt { font-size: 14.5px; line-height: 1.55; color: var(--muted); flex: 1; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
  .post-meta { margin-top: auto; display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--muted); }
  .post-meta svg { stroke: var(--teal); flex: 0 0 auto; }
  .post-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--border); }
  .post-meta .read-more { margin-left: auto; color: var(--teal-deep); font-weight: 700; }
  .post-card-link::after { content: ""; position: absolute; inset: 0; z-index: 2; }

  /* Featured hero post (archive page 1) */
  .post-feature { position: relative; display: grid; grid-template-columns: 1fr; background: var(--white); border-radius: var(--r-card); overflow: hidden; box-shadow: var(--shadow-md); margin-top: 8px; }
  .post-feature .post-thumb { aspect-ratio: 16/9; }
  .post-feature-body { padding: 24px; display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
  .post-feature-title { font-family: var(--font-head); font-size: clamp(24px,3.2vw,34px); font-weight: 600; color: var(--teal-ink); line-height: 1.2; }
  .post-feature-excerpt { font-size: 16px; color: var(--muted); line-height: 1.6; }
  @media (min-width: 900px) { .post-feature { grid-template-columns: 1.4fr 1fr; } .post-feature .post-thumb { aspect-ratio: auto; height: 100%; min-height: 340px; } .post-feature-body { padding: 40px; justify-content: center; } }

  /* Single post */
  .post-hero .container { max-width: 760px; }
  .post-meta-row { display: flex; align-items: center; gap: 10px; margin-top: 16px; font-size: 14px; color: var(--muted); flex-wrap: wrap; }
  .post-meta-row .author-avatar { width: 38px; height: 38px; font-size: 16px; }
  .post-hero-media { position: relative; z-index: 1; aspect-ratio: 21/9; border-radius: var(--r-card); overflow: hidden; box-shadow: var(--shadow-md); margin: 28px auto -40px; max-width: 760px; }
  .post-hero-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .post-content { max-width: 720px; margin: 0 auto; padding: 56px 20px 64px; font-size: 18px; line-height: 1.75; color: var(--ink); }
  .post-content > p:first-of-type { font-size: 20px; }
  .post-content p { margin-bottom: 1.2em; }
  .post-content h2 { font-family: var(--font-head); font-weight: 600; font-size: 26px; color: var(--teal-ink); margin: 1.6em 0 .5em; }
  .post-content h3 { font-family: var(--font-head); font-weight: 600; font-size: 21px; color: var(--teal-deep); margin: 1.4em 0 .4em; }
  .post-content a { color: var(--teal); text-decoration: underline; text-underline-offset: 3px; }
  .post-content a:hover { color: var(--teal-deep); }
  .post-content blockquote { border-left: 4px solid var(--mint); background: var(--mist); border-radius: var(--r-card); padding: 18px 22px; margin: 1.5em 0; font-style: italic; color: var(--teal-ink); }
  .post-content ul, .post-content ol { margin: 1em 0 1.3em 1.2em; }
  .post-content ul li { list-style: disc; margin-bottom: .5em; }
  .post-content ol li { list-style: decimal; margin-bottom: .5em; }
  .post-content li::marker { color: var(--teal-deep); }
  .post-content img { border-radius: var(--r-card); box-shadow: var(--shadow-sm); margin: 1.4em 0; height: auto; }
  .post-back { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; color: var(--teal-deep); font-size: 14px; }

  /* Pagination */
  .blog-pagination { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px; padding: 56px 0 8px; }
  .blog-pagination .page-numbers { min-width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center; padding: 0 12px; border-radius: var(--r-btn); background: #fff; border: 1px solid var(--border); color: var(--teal-ink); font-weight: 700; }
  .blog-pagination .page-numbers.current { background: var(--teal-ink); color: #fff; border-color: var(--teal-ink); }
  .blog-pagination .page-numbers:hover:not(.current) { background: var(--mist); }
  .blog-pagination .page-numbers.dots { border: 0; background: transparent; }
