@import url('https://fonts.googleapis.com/css2?family=Kodchasan:wght@300;400;500;600;700&display=swap');

.h2hpl-pad {
  margin-left: auto;
  margin-right: auto;
}

/* =====================================================
   H2|HPL® — CANONICAL DESIGN SYSTEM (STABLE)
===================================================== */

/* ---------- TOKENS ---------- */
:root{
  --h2hpl-aqua:#2EB6C6;
  --h2hpl-bg:#05060a;
  --h2hpl-ink:#eafcff;
  --h2hpl-muted:rgba(234,252,255,.85);
  --h2hpl-border:rgba(93,240,255,.18);
  --h2hpl-radius:20px;
  --h2hpl-shadow:0 18px 45px rgba(0,0,0,.55);
  --h2hpl-font:'Kodchasan',system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
}

/* ---------- BASE ---------- */
body,
.h2hpl-wrap,
.h2hpl-wrap h1,
.h2hpl-wrap h2,
.h2hpl-wrap h3,
.h2hpl-wrap h4{
  font-family:var(--h2hpl-font);
}

/* ---------- WRAPPER ---------- */
.h2hpl-wrap{
  background:
    radial-gradient(circle at 15% 10%, rgba(46,182,198,.22), transparent 52%),
    radial-gradient(circle at 85% 90%, rgba(46,182,198,.14), transparent 58%),
    linear-gradient(180deg, rgba(3,10,22,.95), var(--h2hpl-bg));
  color:var(--h2hpl-ink);
  border-radius:var(--h2hpl-radius);
  box-shadow:var(--h2hpl-shadow);
  overflow:hidden;
}

/* ---------- HEADINGS ---------- */
.h2hpl-wrap h1{font-size:clamp(36px,5vw,48px);margin-bottom:18px}
.h2hpl-wrap h2{font-size:clamp(26px,3.5vw,32px);margin:48px 0 16px}
.h2hpl-wrap h3{font-size:18px;margin-bottom:10px;font-weight:600}

/* ---------- CARD SYSTEM ---------- */
.h2hpl-card{
  background:
    radial-gradient(circle at 15% 10%, rgba(46,182,198,.10), transparent 55%),
    linear-gradient(160deg, rgba(11,20,32,.96), rgba(15,35,50,.98));
  border:1px solid rgba(93,240,255,.22);
  border-radius:22px;
  padding:22px;
  box-shadow:0 18px 40px rgba(0,0,0,.55);
}

.h2hpl-card-title{color:#fff;font-size:20px;margin-bottom:10px}
.h2hpl-card-text{color:rgba(93,240,255,.9);line-height:1.65}

/* ---------- CARD MEDIA ---------- */
.h2hpl-card-media{
  width:100%;
  aspect-ratio:16/9;
  overflow:hidden;
  border-radius:inherit;
  display:flex;
  align-items:center;
  justify-content:center;
}
.h2hpl-card-media img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.h2hpl-card-media img[src*="beverage"],
.h2hpl-card-media img[src*="water"]{
  object-fit:contain;
}

/* ---------- CTA ---------- */
.h2hpl-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:14px 26px;
  border-radius:999px;
  font-size:15px;
  font-weight:600;
  text-decoration:none;
}
.h2hpl-btn-primary{
  background:linear-gradient(180deg,#2EB6C6,#26A5B5);
  color:#03141c;
}

/* ---------- GRIDS ---------- */
.h2hpl-steps,
.h2hpl-finder-grid,
.h2hpl-guide-grid{
  display:grid;
  gap:28px;
}
@media(min-width:1024px){
  .h2hpl-steps,.h2hpl-guide-grid{grid-template-columns:repeat(3,1fr)}
}
@media(max-width:1023px){
  .h2hpl-steps,.h2hpl-guide-grid{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:639px){
  .h2hpl-steps,.h2hpl-guide-grid{grid-template-columns:1fr}
}

/* ---------- COMPARISON SUMMARY (LOCKED) ---------- */
.h2hpl-comparison-summary,
.h2hpl-comparison-summary p,
.h2hpl-comparison-summary li{
  color:rgba(234,247,250,.95);
}
.h2hpl-comparison-summary h3{
  color:#5FE3F2;
}
.h2hpl-comparison-summary strong{
  color:#fff;
}

/* ---------- WIDTH SAFETY (H2HPL ONLY) ---------- */
.h2hpl-section,
.h2hpl-faqs,
.h2hpl-final-cta,
.h2hpl-cross-guide-hub{
  max-width:1200px;
  margin:0 auto;
  padding:clamp(20px,4vw,48px);
}

/* ---------- HIDE PAGE TITLES ---------- */
body.page h1.entry-title{display:none!important}

/* =====================================================
   H2|HPL® — GLOBAL WIDTH LOCK (SAFE)
   ===================================================== */

.h2hpl-wrap,
.h2hpl-section,
.h2hpl-final-cta,
.h2hpl-faqs,
.h2hpl-comparison-summary {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(20px, 4vw, 48px);
  padding-right: clamp(20px, 4vw, 48px);
}

/* =====================================================
   H2|HPL® — CARD FLOW CONTRACT (FINAL)
   ===================================================== */

.h2hpl-card,
.h2hpl-guide-card,
.h2hpl-product-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: auto;
  min-height: unset;
}

.h2hpl-card > *:last-child,
.h2hpl-guide-card > *:last-child {
  margin-bottom: 0;
}

.h2hpl-card .h2hpl-btn,
.h2hpl-guide-card .h2hpl-btn {
  margin-top: 16px;
  align-self: flex-start;
}

/* =====================================================
   H2|HPL® — COMPARISON SUMMARY (APPROVED COLORS)
   ===================================================== */

.h2hpl-comparison-summary {
  color: rgba(234,247,250,.95);
}

.h2hpl-comparison-summary h3,
.h2hpl-comparison-summary h4 {
  color: #5FE3F2;
}

.h2hpl-comparison-summary p,
.h2hpl-comparison-summary li {
  color: rgba(234,247,250,.92);
}

.h2hpl-comparison-summary strong {
  color: #ffffff;
}

/* Mobile reinforcement — NO layout impact */
@media (max-width: 768px) {
  .h2hpl-comparison-summary {
    color: rgba(234,247,250,.95);
  }
}

/* =========================================================================
   H2|HPL® — Recommendation Funnel Card Contract
   Applies to ALL 6 categories                        xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
   ========================================================================= */

.h2hpl-step {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  padding: 28px 28px 32px;
}

/* Card Title (H3 only — large, readable) */
.h2hpl-step-title {
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.25;
  font-weight: 500;
  color: #eefbfc;
  margin: 0;
}

/* Card Description */
.h2hpl-step-desc {
  font-size: 15.5px;
  line-height: 1.55;
  color: rgba(234,252,254,.75);
  margin: 0;
  max-width: 38ch;
}

/* CTA positioning — prevents large dead space */
.h2hpl-step .h2hpl-btn {
  margin-top: 10px;
  align-self: flex-start;
}

/* Prevent Elementor defaults from collapsing text */
.h2hpl-step h3,
.h2hpl-step p {
  margin-block-start: 0;
  margin-block-end: 0;
}

/* Recommendation Finder Grid */
.h2hpl-finder-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

/* Tablet */
@media (max-width: 1024px) {
  .h2hpl-finder-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 640px) {
  .h2hpl-finder-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================
   H2|HPL® — UNIVERSAL CTA SURFACE (LOCKED)
========================================= */

.h2hpl-cta-wrap {
  max-width: 1200px;
  margin: clamp(48px, 8vw, 96px) auto;
  padding: clamp(28px, 4vw, 44px);
}

.h2hpl-cta-surface {
  background: linear-gradient(
    180deg,
    rgba(235, 250, 252, 0.96),
    rgba(225, 246, 249, 0.96)
  );
  border-radius: 28px;
  box-shadow:
    0 12px 40px rgba(0,0,0,.08),
    inset 0 1px 0 rgba(255,255,255,.6);
  text-align: center;
}

.h2hpl-cta-surface h2 {
  margin: 0 0 18px;
  color: #0b1f2b;
}

.h2hpl-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}

/* =========================================
   FIX: Comparison Summary text dark on mobile
   ========================================= */

/* Target comparison summary cards only */
.h2hpl-comparison-summary,
.h2hpl-comparison-summary * {
  color: #EAF7FA;
}

/* Ensure headings stay bright */
.h2hpl-comparison-summary h3,
.h2hpl-comparison-summary h4 {
  color: #5FE3F2;
}

/* Bullet points & body text */
.h2hpl-comparison-summary p,
.h2hpl-comparison-summary li {
  color: rgba(234, 247, 250, 0.92);
}

/* Extra safety: mobile breakpoint override */
@media (max-width: 768px) {
  .h2hpl-comparison-summary,
  .h2hpl-comparison-summary p,
  .h2hpl-comparison-summary li {
    color: rgba(234, 247, 250, 0.95) !important;
  }
}

/* Comparison Summary – force readable text */
.h2hpl-comparison-summary,
.h2hpl-comparison-summary * {
  color: rgba(234, 247, 250, 0.95);
}

.h2hpl-comparison-summary h3 {
  color: #5FE3F2;
}

.h2hpl-card strong {
  color: #FFFFFF;
}

/* =========================================
   H2|HPL® — COMPARISON SUMMARY TEXT FIX
   ========================================= */

.h2hpl-product-card,
.h2hpl-product-card * {
  opacity: 1 !important;
}

/* Ensure comparison summary text is readable */

.h2hpl-product-card p,
.h2hpl-product-card li {
  color: rgba(235, 245, 248, 0.92);
}

.h2hpl-product-card strong {
  color: #ffffff;
}

/* ===================================================== xxx * xxx
   H2|HPL® — CTA BUTTON WRAP & OVERFLOW FIX (GLOBAL) 
   ===================================================== */

.h2hpl-btn,
.h2hpl-btn-primary,
.h2hpl-btn-ghost {
  white-space: normal !important;
  word-break: break-word;
  overflow-wrap: anywhere;
  text-align: center;
  line-height: 1.3;
  padding-inline: 24px;
}

/* Ensure flex buttons can wrap text */
.h2hpl-btn,
.h2hpl-btn-primary,
.h2hpl-btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 100%;
}

/* =====================================================
   H2|HPL® — UNIVERSAL CTA PANEL REALIGNMENT
   ===================================================== */

.h2hpl-cta-panel,
.h2hpl-alt-cta,
.h2hpl-cta-wrap {
  max-width: 1100px;
  margin: 56px auto;
  padding: clamp(28px, 4vw, 48px);
  border-radius: 24px;
  text-align: center;
}

/* Light aqua background restoration */
.h2hpl-cta-panel,
.h2hpl-alt-cta {
  background:
    radial-gradient(circle at 15% 10%, rgba(46,182,198,.18), transparent 55%),
    linear-gradient(180deg, #e9f9fb, #f6feff);
}

/* Prevent mobile overrides from collapsing cards */
@media (max-width: 768px) {
  .h2hpl-card,
  .h2hpl-product-card {
    min-height: unset;
    height: auto;
  }
}

/* ===================================================== xxx * xxx
   H2|HPL® — GLOBAL FRONT-END WIDTH NORMALISATION
   Fixes Hello Elementor full-width bleed
===================================================== */

.h2hpl-wrap,
.h2hpl-section,
.h2hpl-final-step,
.h2hpl-faqs,
.h2hpl-cta,
.h2hpl-cta-light {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* Ensure padding consistency */
.h2hpl-wrap,
.h2hpl-section,
.h2hpl-final-step,
.h2hpl-faqs {
  padding-left: clamp(20px, 4vw, 48px);
  padding-right: clamp(20px, 4vw, 48px);
}

/* =====================================================
   H2|HPL® — FIX CTA GAP IN GUIDE HUB & FINAL CTA SECTIONS
   Works with Elementor Free + HTML widgets
===================================================== */

/* Force cards to stack content naturally */
.h2hpl-card,
.h2hpl-guide-card,
.h2hpl-final-cta,
.h2hpl-hub-card {
  display: block !important;
  height: auto !important;
  min-height: unset !important;
}

/* Remove phantom spacing above buttons */
.h2hpl-card .h2hpl-btn,
.h2hpl-guide-card .h2hpl-btn,
.h2hpl-final-cta .h2hpl-btn {
  margin-top: 16px !important;
}

/* Kill Elementor-injected last-child spacing */
.h2hpl-card > *:last-child,
.h2hpl-guide-card > *:last-child,
.h2hpl-final-cta > *:last-child {
  margin-bottom: 0 !important;
}

/* Ensure text blocks don’t reserve vertical space */
.h2hpl-card p,
.h2hpl-card ul {
  margin-bottom: 12px !important;
}

/* =====================================================
   H2|HPL® — FORCE COLUMN CONTENT TO TOP (Frontend Fix)
   Elementor Free / Hello Elementor
===================================================== */

/* Target Elementor column inner wrapper */
.elementor-column > .elementor-widget-wrap {
  display: block !important;
  align-content: flex-start !important;
  justify-content: flex-start !important;
}

/* Remove phantom height */
.elementor-column {
  min-height: auto !important;
  height: auto !important;
}

/* Prevent last widget from being pushed down */
.elementor-widget-wrap > * {
  flex-grow: 0 !important;
}

/* Ensure buttons sit directly under text */
.h2hpl-btn {
  margin-top: 16px !important;
}

/* =========================================
   H2|HPL® — Curated Panels (Editorial)
   Scope: Top Picks (Gen-2)
========================================= */

/* Tokens */
html{
  --h2hpl-aqua: #2EB6C6;
  --h2hpl-aqua-soft: rgba(46,182,198,0.18);
  --h2hpl-ink: #1e2a32;
  --h2hpl-muted: #5f6f78;
  --h2hpl-panel: #ffffff;
}

/* PANEL (no border, slab presence) */
body .h2hpl-listings-gen2 .h2hpl-gen2-card{
  background: var(--h2hpl-panel);
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
  overflow: hidden; /* needed for the band */
}

/* SIGNATURE BAND (fingerprint) */
body .h2hpl-listings-gen2 .h2hpl-gen2-card .h2hpl-gen2-badge{
  display: block;
  width: 100%;
  padding: 10px 16px;
  font-weight: 600;
  letter-spacing: .02em;
  color: #2a6f75;

  background:
    linear-gradient(90deg,
      rgba(46,182,198,0.45),
      rgba(46,182,198,0.18) 55%,
      rgba(255,255,255,0.00)
    );
}
  border: none;
  border-radius: 0; /* full-width strip */
}

/* IMAGE MOUNT (object on a plane) */
body .h2hpl-listings-gen2 .h2hpl-gen2-image{
  background: #f6fbfc;
  border-radius: 12px;
  padding: 18px;
  margin: 18px;
}

/* TITLE ZONE (authority via type, not color) */
body .h2hpl-listings-gen2 .h2hpl-gen2-card
.elementor-widget-heading .elementor-heading-title,
body .h2hpl-listings-gen2 .h2hpl-gen2-card
.elementor-widget-text-editor p:first-child{
  color: var(--h2hpl-ink) !important;
  font-weight: 600;
  margin: 12px 18px 6px;
}

/* DESCRIPTION (quiet support) */
body .h2hpl-listings-gen2 .h2hpl-gen2-card
.elementor-widget-text-editor p{
  color: var(--h2hpl-muted);
  margin: 0 18px 10px;
}

/* DECISION LINE (editorial CTA — aqua #2) */
body .h2hpl-listings-gen2 .h2hpl-gen2-card a{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 12px 18px 18px;
  color: var(--h2hpl-aqua) !important;
  font-weight: 600;
  text-decoration: none !important;
}

body .h2hpl-listings-gen2 .h2hpl-gen2-card a:hover{
  opacity: .85;
}

/* SECTION SEPARATION (editorial pause, not a rule) */
body .h2hpl-gen2-top-picks{
  padding-bottom: 32px;
}

@media (min-width: 1024px){
  body .h2hpl-listings-gen2 .h2hpl-gen2-card{
    box-shadow:
      0 28px 60px rgba(0,0,0,0.10);
  }
}

@media (max-width: 1023px){
  body .h2hpl-listings-gen2 .h2hpl-gen2-card{
    box-shadow:
      0 14px 28px rgba(0,0,0,0.10);
  }
}

body .h2hpl-gen2-top-picks::after{
  content:"";
  display:block;
  height: 3px;
  margin: 64px 0 56px;
  background: linear-gradient(
    to right,
    transparent,
    #2EB6C6 35%,
    #2EB6C6 65%,
    transparent
  );
}

body .h2hpl-listings-gen2 .h2hpl-gen2-card a{
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 12px 18px 18px;
  color: #2EB6C6 !important;
  font-weight: 600;
  text-decoration: none !important;
}

body .h2hpl-listings-gen2 .h2hpl-gen2-card a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-6px;
  width: 28px;
  height: 2px;
  background:#2EB6C6;
}

/* =========================================
   H2|HPL® — Curated Panels
   Mobile Centering Pass (Safe)
========================================= */

@media (max-width: 767px){

  /* Center panel contents */
  body .h2hpl-listings-gen2 .h2hpl-gen2-card{
    text-align: center;
  }

  /* Center image mount */
  body .h2hpl-listings-gen2 .h2hpl-gen2-image{
    margin-left: auto;
    margin-right: auto;
  }

  /* Center title + description blocks */
  body .h2hpl-listings-gen2 .h2hpl-gen2-card
  .elementor-widget-heading,
  body .h2hpl-listings-gen2 .h2hpl-gen2-card
  .elementor-widget-text-editor{
    text-align: center;
  }

  /* Center CTA line */
  body .h2hpl-listings-gen2 .h2hpl-gen2-card a{
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
  }

  /* Center CTA underline */
  body .h2hpl-listings-gen2 .h2hpl-gen2-card a::after{
    left: 50%;
    transform: translateX(-50%);
  }

}

/* =========================================
   H2|HPL® — Section Header Centering
   Mobile Only
========================================= */

@media (max-width: 767px){

  /* Center all section headers in listings */
  body .h2hpl-listings-gen2
  .h2hpl-l2-header,
  body .h2hpl-listings-gen2
  .h2hpl-l2-header *{
    text-align: center;
  }

  /* Center Full Listings header block */
  body .h2hpl-listings-gen2
  .h2hpl-full-listings-header,
  body .h2hpl-listings-gen2
  .h2hpl-full-listings-header *{
    text-align: center;
  }

  /* Optional: center the aqua dash + heading row */
  body .h2hpl-listings-gen2
  .h2hpl-section-title{
    justify-content: center;
  }

}

/* =====================================================
   H2|HPL® — FULL LISTINGS v2 (CLEAN, NEUTRAL)
   Location: Appearance → Additional CSS
===================================================== */

.h2hpl-full-v2{
  margin: 56px auto 0;
  max-width: 1200px;
}

.h2hpl-full-v2-wrap{
  padding: 0 24px;
}

/* Header */

.h2hpl-full-v2-header{
  max-width: 720px;
  margin-bottom: 28px;
}

.h2hpl-full-v2-title{
  font-size: 28px;
  margin: 0 0 10px;
}

.h2hpl-full-v2-intro{
  font-size: 15px;
  line-height: 1.6;
  color: #5a6a70;
  margin: 0;
}

/* Grid */

.h2hpl-full-v2-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

/* Card */

.h2hpl-full-v2-card{
  background: #ffffff;
  border-radius: 10px;
  padding: 18px 18px 16px;
  border: 1px solid rgba(0,0,0,.06);
  display: flex;
  flex-direction: column;
}

.h2hpl-full-v2-card-title{
  font-size: 16.5px;
  line-height: 1.35;
  margin: 0 0 6px;
  color: #1f2a2e;
}

.h2hpl-full-v2-card-desc{
  font-size: 14px;
  line-height: 1.5;
  color: #5a6a70;
  margin-bottom: 12px;
}

/* CTA */

.h2hpl-full-v2-card-link{
  margin-top: auto;
  font-size: 14px;
  font-weight: 500;
  color: #2f3a3f;
  text-decoration: none;
}

.h2hpl-full-v2-card-link:hover{
  text-decoration: underline;
}

/* Mobile */

@media (max-width: 900px){
  .h2hpl-full-v2-grid{
    grid-template-columns: 1fr;
  }
}

/* =========================================
   H2|HPL® — PHASE 15
   FULL LISTINGS (GEN-2 / FULL-V2)
========================================= */

/* Section spacing */
.h2hpl-full-v2{
  margin-top: 48px;
}

/* Grid */
.h2hpl-full-v2-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 28px;
}

@media (max-width: 900px){
  .h2hpl-full-v2-grid{
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

/* Card */
.h2hpl-full-v2-card{
  background: #ffffff;
  border-radius: 16px;
  padding: 22px 22px 20px;

  /* DARK-AQUA BORDER (as requested) */
  border: 2px solid rgba(20, 115, 125, 0.35);

  box-shadow: none;
  display: flex;
  flex-direction: column;
}

/* Image */
.h2hpl-full-v2-card img{
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 14px;
}

/* Title */
.h2hpl-full-v2-card h3{
  font-size: 17px;
  line-height: 1.35;
  margin: 0 0 6px;
  color: #1f2a2e;
}

/* Description */
.h2hpl-full-v2-card p{
  font-size: 14.5px;
  line-height: 1.55;
  color: #4a5a60;
  margin-bottom: 14px;
}

/* CTA */
.h2hpl-full-v2-card a{
  margin-top: auto;
  font-size: 14px;
  font-weight: 500;
  color: #1f6f76;
  text-decoration: none;
}

.h2hpl-full-v2-card a:hover{
  text-decoration: underline;
}

/* =========================================
   PHASE 15.3 — MICRO-FACTS ROW (EDITORIAL)
========================================= */

.h2hpl-full-v2-card .h2hpl-l2-microfacts{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 8px 0 14px;
  padding: 0;
  list-style: none;
  font-size: 12px;
  line-height: 1.4;
  color: #6b7f86;
}

.h2hpl-full-v2-card .h2hpl-l2-microfacts li{
  position: relative;
  padding-left: 12px;
}

.h2hpl-full-v2-card .h2hpl-l2-microfacts li::before{
  content: "•";
  position: absolute;
  left: 0;
  color: rgba(46,182,198,0.55);
}

/* Optional: hide on very small screens */
@media (max-width: 520px){
  .h2hpl-full-v2-card .h2hpl-l2-microfacts{
    display: none;
  }
}

/* =========================================
   PHASE 17 — TOP-PICKS - AVOID DUPLICATE DISCLOSURE
   If brand-mention exists, suppress CTA micro-note
========================================= */

.h2hpl-gen2-card:has(.h2hpl-brand-mention)
  a.h2hpl-gen2-cta[rel~="sponsored"]::after {
  display: none;
}

/* =========================================
   PHASE 17 — FULL LISTINGS
   Suppress CTA affiliate note when
   Brand mention is present
========================================= */

.h2hpl-full-v2-card:has(.h2hpl-brand-mention)
  a.h2hpl-full-v2-card-link[rel~="sponsored"]::after {
  display: none;
}

/* =========================================
   H2|HPL — Retail Availability Note
   (Editorial disclosure, non-intrusive)
========================================= */

.h2hpl-retail-note{
  margin:32px auto 0;
  max-width:1100px;
  padding:18px 22px;
  border-radius:18px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
}

.h2hpl-retail-note-title{
  margin:0 0 6px;
  font-size:13px;
  letter-spacing:.04em;
  text-transform:uppercase;
  color:var(--h2hpl-muted);
}

.h2hpl-retail-note-text{
  margin:0;
  font-size:14px;
  line-height:1.55;
  color:var(--h2hpl-muted);
}

.h2hpl-retail-note {
  color: var(--h2hpl-ink);
  opacity: 0.85;
  margin-top: 32px;
}

/* =========================================
   FULL LISTINGS — BRAND MENTION (FORCED FIX)
   Overrides Elementor injected spacing
========================================= */

.h2hpl-full-v2-card .h2hpl-brand-mention {
  margin: 10px 0 6px !important;
  padding: 0 !important;
}

/* Nuke Elementor paragraph spacing */
.h2hpl-full-v2-card .h2hpl-brand-mention,
.h2hpl-full-v2-card .h2hpl-brand-mention * {
  margin: 0 !important;
  padding: 0 !important;
}

/* Label */
.h2hpl-full-v2-card .h2hpl-brand-mention strong {
  display: block !important;
  margin-bottom: 2px !important;

  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.2 !important;
  color: rgba(47,58,63,0.65);
}

/* Disclosure line */
.h2hpl-full-v2-card .h2hpl-brand-mention span {
  display: block !important;

  font-size: 12px;
  line-height: 1.2 !important;
  color: rgba(47,58,63,0.55);
}

/* =========================================
   H2|HPL® — Retail Availability Disclosure
   (Category-level, neutral, non-promotional)
========================================= */

.h2hpl-retail-note{
  max-width: 1100px;
  margin: 32px auto 0;
  padding: 18px 22px;
  background: rgba(0,0,0,0.035);
  border-left: 3px solid var(--h2hpl-aqua);
  border-radius: 10px;
}

.h2hpl-retail-note-title{
  margin: 0 0 6px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--h2hpl-ink);
  opacity: 0.85;
}

.h2hpl-retail-note-text{
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--h2hpl-ink);
  opacity: 0.8;
}

/* Force disclosure out of parent opacity / filter stack */
.h2hpl-retail-note{
  position: relative;
  isolation: isolate;
  background: rgba(255,255,255,0.92);
}

.h2hpl-retail-note *{
  color: #1f2a30 !important;
  opacity: 1 !important;
}

.h2hpl-gen2-card-supplier a {
  font-size: 0.85em;
  opacity: 0.85;
}

.h2hpl-brand-mention{
  margin: 10px 0 6px;
  font-size: 12px;
  line-height: 1.4;
  color: rgba(47,58,63,0.65);
}
.h2hpl-brand-mention strong{
  font-weight: 500;
}

/* =========================================
   FULL LISTINGS — LINK HOVER READABILITY FIX
========================================= */

.h2hpl-full-v2-card a:hover,
.h2hpl-full-v2-card a:focus {
  color: #2F3A3F;
}

/* =========================================
   FULL LISTINGS — LINK HOVER OVERRIDE
   (Overrides Elementor safely)
========================================= */

.h2hpl-full-v2 .h2hpl-full-v2-card a.h2hpl-full-v2-card-link:hover,
.h2hpl-full-v2 .h2hpl-full-v2-card a.h2hpl-full-v2-card-link:focus {
  color: #2F3A3F !important;
}

.h2hpl-full-v2 .h2hpl-full-v2-card .h2hpl-gen2-card-supplier a:hover {
  color: #2F3A3F !important;
}

/* =========================================
   FULL LISTINGS — REMOVE HOVER UNDERLINE
========================================= */

.h2hpl-full-v2 .h2hpl-full-v2-card a.h2hpl-full-v2-card-link:hover,
.h2hpl-full-v2 .h2hpl-full-v2-card a.h2hpl-full-v2-card-link:focus {
  text-decoration: none !important;
  border-bottom: none !important;
}

/* H2|HPL® — SUPPLIER PRODUCT LISTINGS (TRUE LANDSCAPE) */

.h2hpl-supplier-landscape-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 28px;
}

@media (max-width: 980px){
  .h2hpl-supplier-landscape-grid{
    grid-template-columns: 1fr;
  }
}

.h2hpl-supplier-landscape-card{
  display:flex;
  gap: 24px;
}

.h2hpl-supplier-card-media{
  flex: 0 0 40%;
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 16px;
}

.h2hpl-supplier-card-media img{
  width: 100%;
  height: auto;
  max-height: 320px;
  object-fit: contain;
}

.h2hpl-supplier-card-content{
  flex: 1 1 auto;
  display:flex;
  flex-direction:column;
}

.h2hpl-disclosure{
  margin-top: 32px;
  padding-left: 16px;
  border-left: 4px solid var(--h2hpl-aqua);
}

.h2hpl-disclosure-title{
  font-weight: 600;
  margin-bottom: 6px;
}

.h2hpl-disclosure-text{
  margin: 0;
}

.h2hpl-supplier-landscape
  .h2hpl-full-v2-card {
    display: flex;
    flex-direction: row;
}

.h2hpl-supplier-landscape
  .h2hpl-supplier-card-media {
    flex: 0 0 38%;
}

.h2hpl-supplier-landscape
  .h2hpl-supplier-card-content {
    flex: 1 1 auto;
}

.h2hpl-supplier-landscape
  .h2hpl-full-v2-card {
    min-height: 360px;
}

/* DESKTOP — make product images larger */
.h2hpl-supplier-landscape
.h2hpl-supplier-card-media{
  flex: 0 0 46%;
}

.h2hpl-supplier-landscape
.h2hpl-supplier-card-media img{
  max-height: 420px;
}

/* MOBILE — stack image on top and enlarge */
@media (max-width: 680px){

  .h2hpl-supplier-landscape
  .h2hpl-full-v2-card{
    flex-direction: column;
  }

  .h2hpl-supplier-landscape
  .h2hpl-supplier-card-media{
    flex: none;
    width: 100%;
    padding: 20px 16px;
  }

  .h2hpl-supplier-landscape
  .h2hpl-supplier-card-media img{
    max-height: 320px;
  }
}

/* MOBILE — centre header text */
@media (max-width: 680px){

  .h2hpl-supplier-products
  .h2hpl-l2-header{
    text-align: center;
  }

  .h2hpl-supplier-products
  .h2hpl-l2-intro{
    margin-left: auto;
    margin-right: auto;
  }
}

/* ==========================================
   H2|HPL® — ABOUT PAGE
   Premium Editorial Elevation (Scoped)
   Style: Journal / Founder’s Letter
========================================== */

/* Limit reading width for luxury editorial feel */
.h2hpl-about {
  max-width: 820px;
  margin: 0 auto;
}

/* Page title — quieter authority */
.h2hpl-about .h2hpl-h1 {
  letter-spacing: -0.02em;
  margin-bottom: 0.4em;
}

/* Kicker — refined, journal-style */
.h2hpl-about .h2hpl-kicker {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  opacity: 0.7;
}

/* Brand axiom — calm emphasis */
.h2hpl-axiom {
  margin: 1.6em 0 2.4em;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.85;
}

/* Section headers — measured rhythm */
.h2hpl-about .h2hpl-h2 {
  margin-top: 3.2em;
  margin-bottom: 0.8em;
  letter-spacing: -0.01em;
}

/* Paragraphs — journal readability */
.h2hpl-about .h2hpl-p {
  line-height: 1.75;
  margin-bottom: 1.2em;
}

/* Pull quote — editorial moment */
.h2hpl-about .h2hpl-pull {
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 2.2em 0;
  padding-left: 1.4em;
  border-left: 1px solid rgba(46,182,198,0.35);
  opacity: 0.95;
}

/* Divider — hairline, premium */
.h2hpl-about .h2hpl-divider {
  height: 1px;
  margin: 3.5em 0;
  background: linear-gradient(
    90deg,
    rgba(46,182,198,0.0),
    rgba(46,182,198,0.45),
    rgba(46,182,198,0.0)
  );
}

/* Closing lines — reflective pause */
.h2hpl-about .h2hpl-closing {
  font-size: 0.95rem;
  line-height: 1.7;
  opacity: 0.85;
  margin-top: 3em;
}

/* Founder signature — dignified, signed letter feel */
.h2hpl-about .h2hpl-signature {
  margin-top: 3.5em;
  padding-top: 1.2em;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.9rem;
  line-height: 1.6;
  opacity: 0.85;
}

/* =========================================================
   H2|HPL® — ABOUT PAGE
   Editorial Authority Pass v3 (BOLD)
   Style: Founder’s Manifesto / Journal Front Matter
   Scope: .h2hpl-about ONLY
========================================================= */

/* --- Narrow the reading column further (authority move) --- */
.h2hpl-about {
  max-width: 760px;
  margin: 0 auto;
}

/* --- Kicker: colder, quieter, more distant --- */
.h2hpl-about .h2hpl-kicker {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.68rem;
  opacity: 0.55;
  margin-bottom: 1.4em;
}

/* --- H1: declaration, not label --- */
.h2hpl-about .h2hpl-h1 {
  font-size: clamp(2.6rem, 4vw, 3.2rem);
  letter-spacing: -0.035em;
  margin-bottom: 0.9em;
}

/* --- Brand axiom: creed treatment --- */
.h2hpl-about .h2hpl-axiom {
  display: inline-block;
  margin: 2.2em 0 3.8em;
  padding-bottom: 1.2em;
  font-size: 0.82rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  opacity: 0.65;
  border-bottom: 1px solid rgba(46,182,198,0.35);
}

/* --- Section headers: hierarchy, not equality --- */
.h2hpl-about .h2hpl-h2 {
  margin-top: 4.2em;
  margin-bottom: 1em;
  letter-spacing: -0.015em;
}

/* Emphasise the core narrative section */
.h2hpl-about h2:nth-of-type(3) {
  font-size: 1.35em;
}

/* De-emphasise factual sections */
.h2hpl-about h2:nth-of-type(4),
.h2hpl-about h2:nth-of-type(5) {
  opacity: 0.85;
}

/* --- Body text: slower, heavier reading --- */
.h2hpl-about .h2hpl-p {
  line-height: 1.85;
  margin-bottom: 1.35em;
  opacity: 0.92;
}

/* --- Pull quote: rupture moment --- */
.h2hpl-about .h2hpl-pull {
  font-size: 1.15rem;
  line-height: 1.8;
  margin: 3.2em 0 3.2em 1.6em;
  padding-left: 1.8em;
  border-left: 2px solid rgba(46,182,198,0.55);
  opacity: 1;
}

/* Reduce surrounding paragraph dominance */
.h2hpl-about .h2hpl-pull + .h2hpl-p,
.h2hpl-about .h2hpl-p + .h2hpl-pull {
  opacity: 0.75;
}

/* --- Divider: intentional silence --- */
.h2hpl-about .h2hpl-divider {
  height: 1px;
  margin: 5.2em 0;
  background: linear-gradient(
    90deg,
    rgba(46,182,198,0.0),
    rgba(46,182,198,0.55),
    rgba(46,182,198,0.0)
  );
}

/* --- Closing: restrained, reflective --- */
.h2hpl-about .h2hpl-closing {
  font-size: 0.9rem;
  line-height: 1.75;
  opacity: 0.8;
  margin-top: 4em;
}

/* --- Signature: ceremonial, not footer --- */
.h2hpl-about .h2hpl-signature {
  margin-top: 5em;
  padding-top: 1.6em;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.85rem;
  line-height: 1.7;
  opacity: 0.85;
}

/* ==========================================
   H2|HPL® — SCIENCE & RESEARCH
   Premium Educational Styling (Dark)
========================================== */

.h2hpl-science {
  max-width: 880px;
  margin: 0 auto;
}

.h2hpl-science .h2hpl-h2 {
  margin-top: 3.6em;
  margin-bottom: 0.9em;
}

.h2hpl-science .h2hpl-p {
  line-height: 1.85;
  margin-bottom: 1.2em;
  opacity: 0.93;
}

.h2hpl-science .h2hpl-list {
  margin: 1.2em 0 1.6em 1.2em;
  line-height: 1.7;
  opacity: 0.9;
}

.h2hpl-science .h2hpl-ref-list {
  margin-top: 2em;
  line-height: 1.7;
  opacity: 0.85;
}

/* ==========================================
   ABOUT TRICITY — LIGHT AQUA CONTAINER ONLY
   Scoped, non-destructive, Elementor-safe
========================================== */

.page-id-11065 section.h2hpl-bg-light {
  background: linear-gradient(
    180deg,
    #eafcff 0%,
    #f4fbfc 100%
  );
  border-radius: 28px;
}

.page-id-11065 section.h2hpl-bg-light .h2hpl-pad {
  padding: clamp(2.5rem, 4vw, 4rem);
}

.page-id-11065 section.h2hpl-bg-light .h2hpl-h1,
.page-id-11065 section.h2hpl-bg-light .h2hpl-h2,
.page-id-11065 section.h2hpl-bg-light .h2hpl-p,
.page-id-11065 section.h2hpl-bg-light .h2hpl-kicker,
.page-id-11065 section.h2hpl-bg-light .h2hpl-axiom,
.page-id-11065 section.h2hpl-bg-light .h2hpl-closing {
  color: #0a1e22;
}

/* ==========================================
   ABOUT TRICITY — AQUA CONTRAST ENHANCEMENT
   Light background hierarchy fix
========================================== */

/* Kicker */
.page-id-11065 .h2hpl-kicker {
  color: #1F9FAE;
  letter-spacing: 0.22em;
  opacity: 1;
}

/* Dividers */
.page-id-11065 .h2hpl-divider {
  background-color: #1F9FAE;
  opacity: 0.45;
}

/* Optional: thin divider glow for polish */
.page-id-11065 .h2hpl-divider {
  box-shadow: 0 0 0 1px rgba(31, 159, 174, 0.15);
}

/* ==========================================
   ABOUT TRICITY — PULL QUOTE ACCENT LINE
   Light Aqua contrast correction
========================================== */

.page-id-11065 .h2hpl-pull {
  position: relative;
  padding-left: 1.6em;
}

.page-id-11065 .h2hpl-pull::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.15em;
  height: calc(100% - 0.3em);
  width: 3px;
  background-color: #1F9FAE;
  opacity: 0.85;
  border-radius: 2px;
}

/* ==========================================
   ABOUT TRICITY — ORGANIC EDITORIAL DIVIDER
   Water-inspired narrative pause
========================================== */

.page-id-11065 .h2hpl-divider-engineered {
  width: 180px;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent 0%,
    #1F9FAE 20%,
    #1F9FAE 80%,
    transparent 100%
  );
  opacity: 0.6;
  margin: 3.5rem 0;
}

/* ==========================================
   ABOUT TRICITY — LIGHT AQUA TEXT OVERRIDE
   Restore readability for muted content
========================================== */

/* Base body text */
.page-id-11065 .h2hpl-p,
.page-id-11065 .h2hpl-list li {
  color: rgba(34, 60, 66, 0.88);
}

/* Emphasis paragraphs in Section 5 */
.page-id-11065 .h2hpl-p strong {
  color: #223C42;
}

/* Closing note text */
.page-id-11065 .h2hpl-closing {
  color: rgba(34, 60, 66, 0.9);
}

/* Founder signature */
.page-id-11065 .h2hpl-signature {
  color: rgba(34, 60, 66, 0.85);
}

/* Safety: ensure lists are not accidentally hidden */
.page-id-11065 .h2hpl-list {
  opacity: 1;
  visibility: visible;
}

/* ==========================================
   ABOUT TRICITY — CLOSING RHYTHM TUNING
   Reduce over-spacing on Light Aqua
========================================== */

/* Tighten closing paragraph spacing */
.page-id-11065 .h2hpl-closing {
  margin-bottom: 1.6rem;
}

/* Reduce gap before signature */
.page-id-11065 .h2hpl-signature {
  margin-top: 2.2rem;
}

/* Slightly tighten final body paragraphs */
.page-id-11065 .h2hpl-wrap p:last-of-type {
  margin-bottom: 1.4rem;
}

/* =====================================
   H2|HPL® — Supplier Spotlight Logo
   Phase 17 (LOCKED)
===================================== */

.h2hpl-supplier-logo{
  margin: 16px 0 28px;
  max-width: 180px;
}

.h2hpl-supplier-logo img{
  width: 100%;
  height: auto;
  display: block;
}

/* =====================================
   H2|HPL® — Brand Profile Link
   Phase 17 (LOCKED)
===================================== */

.h2hpl-brand-profile{
  margin-top: 6px;
  font-size: 13px;
  opacity: 0.75;
}

.h2hpl-brand-profile a{
  text-decoration: none;
}

.h2hpl-brand-profile a:hover{
  text-decoration: underline;
}

/* =====================================
   H2|HPL® — GEN-2 Card Stretch Override
   Phase 17 — FINAL, CORRECT
===================================== */

.h2hpl-gen2-gallery > .h2hpl-gen2-card{
  align-self: start !important;
  height: auto !important;
}

/* =====================================
   H2|HPL® — Mobile Availability Line Fix
   Top Picks Only — FINAL
===================================== */

@media (max-width: 768px){
  .h2hpl-gen2-top-picks .h2hpl-gen2-card{
    text-align: left;
  }

  .h2hpl-gen2-top-picks .h2hpl-gen2-card *{
    text-align: left;
  }

  .h2hpl-gen2-top-picks .h2hpl-gen2-card::after{
    content: none;
  }
}

/* =====================================
   PHASE 17 — FINAL FIX
   Mobile Retail Note Alignment (GEN-2)
===================================== */

@media (max-width: 767px){

  /* Keep card centered, but force disclosure left-aligned */
  .h2hpl-gen2-card
  a.h2hpl-gen2-cta[rel~="sponsored"]::after{
    display: block;
    text-align: left !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    white-space: normal;
  }

}

/* GEN-2 — Retail Availability (REAL ELEMENT) */
.h2hpl-gen2-card .h2hpl-availability-note{
  display: block;
  margin-top: 6px;
  font-size: 11.5px;
  color: rgba(47,58,63,0.55);
  letter-spacing: 0.02em;
}

/* Mobile — center with CTA */
@media (max-width: 767px){
  .h2hpl-gen2-card .h2hpl-availability-note{
    text-align: center;
  }
}

/* =====================================
   PHASE 17 — Editorial CTA Grouping
   GEN-2 Top Picks (FINAL POLISH)
===================================== */

/* Tighten space above CTA group */
.h2hpl-gen2-card .h2hpl-brand-profile{
  margin-bottom: 14px;
}

/* CTA becomes anchor of the decision unit */
.h2hpl-gen2-card .h2hpl-gen2-cta{
  margin-bottom: 4px;
}

/* Retail note visually attaches to CTA */
.h2hpl-gen2-card .h2hpl-availability-note{
  margin-top: 0;
  font-size: 11px;
  opacity: 0.6;
}

/* =====================================
   GEN-2 — Decision Footer (FINAL)
   Phase 17 SAFE
===================================== */

.h2hpl-gen2-card .h2hpl-gen2-cta{
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(46,182,198,0.18);
}

.h2hpl-gen2-card
a.h2hpl-gen2-cta[rel~="sponsored"]::after{
  display: block;
  margin-top: 6px;
  text-align: left;
}

/* =====================================
   PHASE 18 — GEN-2 DECISION ZONE
   Visual grouping only
===================================== */

.h2hpl-gen2-decision {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(46,182,198,0.18);
}

/* =====================================
   PHASE 18 — CTA REFINEMENT
===================================== */

.h2hpl-gen2-cta{
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
}

/* =====================================
   PHASE 18 — RETAIL NOTE FOOTING
===================================== */

.h2hpl-gen2-retail-note{
  margin-top: 10px;
  font-size: 11.5px;
  opacity: 0.55;
  text-align: left;
}

@media (min-width: 1024px){
  .h2hpl-gen2-card{
    padding-bottom: 36px;
  }
}

/* =====================================================
   PHASE 18 — CARD VISUAL POLISH (PASS 1)
   Scope: ALL PRODUCT CARDS
   Safe, additive, reversible
===================================================== */

/* -------------------------------
   1. Decision Zone Wrapper
   (Brand + CTA + Disclosure)
-------------------------------- */

.h2hpl-gen2-card,
.h2hpl-full-v2-card {
  position: relative;
}

/* Create a calm visual landing area */
.h2hpl-gen2-card::after,
.h2hpl-full-v2-card::after {
  content: "";
  display: block;
  height: 28px;
}

/* -------------------------------
   2. Brand Profile Refinement
-------------------------------- */

.h2hpl-brand-profile {
  margin-top: 22px;
  margin-bottom: 10px;
  font-size: 12.5px;
  line-height: 1.4;
  opacity: 0.75;
}

/* Reduce visual competition */
.h2hpl-brand-profile a {
  font-weight: 500;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 6px;
}

/* -------------------------------
   3. CTA — Editorial Weight
-------------------------------- */

.h2hpl-gen2-card .h2hpl-gen2-cta,
.h2hpl-full-v2-card a {
  margin-top: 14px;
  padding-top: 12px;
  display: inline-flex;
  align-items: center;
}

/* Subtle visual anchor above CTA */
.h2hpl-gen2-card .h2hpl-gen2-cta::before,
.h2hpl-full-v2-card a::before {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: -8px;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(46,182,198,0.35),
    transparent
  );
}

/* -------------------------------
   4. Affiliate / Retail Disclosure
-------------------------------- */

.h2hpl-gen2-card
a.h2hpl-gen2-cta[rel~="sponsored"]::after,
.h2hpl-full-v2-card
a[rel~="sponsored"]::after {
  margin-top: 6px;
  display: block;
  font-size: 11.5px;
  letter-spacing: 0.02em;
  opacity: 0.55;
}

/* -------------------------------
   5. Mobile — Maintain Calm Stack
-------------------------------- */

@media (max-width: 767px){

  .h2hpl-gen2-card .h2hpl-gen2-cta,
  .h2hpl-full-v2-card a {
    justify-content: center;
  }

  .h2hpl-gen2-card .h2hpl-gen2-cta::before,
  .h2hpl-full-v2-card a::before {
    left: 22%;
    right: 22%;
  }

}

/* =====================================================
   PHASE 18 — PASS 2
   Disclosure placement reset (non–GEN-2 cards)
===================================================== */

/* Force disclosure onto its own line */
.h2hpl-card:not(.h2hpl-gen2) .h2hpl-cta-row{
  display: block;
}

/* CTA stays primary */
.h2hpl-card:not(.h2hpl-gen2) .h2hpl-cta{
  display: inline-block;
}

/* Disclosure below CTA, quieter */
.h2hpl-card:not(.h2hpl-gen2) .h2hpl-disclosure{
  display: block;
  margin-top: 6px;
  font-size: 0.78rem;
  opacity: 0.55;
  line-height: 1.3;
}

/* =====================================================
   PHASE 18 — PASS 2
   Typography lock (cards only)
===================================================== */

.h2hpl-card,
.h2hpl-card *{
  font-family: "Kodchasan", sans-serif !important;
  font-weight: inherit;
}

/* =====================================================
   H2|HPL® — PHASE 18 / PASS 3
   Disclosure Stack + Font Absolute Lock
   Scope: ALL product cards only
===================================================== */

/* ---------- FONT LOCK (NO DRIFT) ---------- */

.h2hpl-gen2-card,
.h2hpl-full-v2-card,
.h2hpl-supplier-landscape-card,
.h2hpl-gen2-card *,
.h2hpl-full-v2-card *,
.h2hpl-supplier-landscape-card * {
  font-family: "Kodchasan", system-ui, -apple-system, "Segoe UI",
               Roboto, Arial, sans-serif !important;
}

/* ---------- CTA + DISCLOSURE STACK ---------- */

.h2hpl-gen2-cta,
.h2hpl-full-v2-cta,
.h2hpl-supplier-cta {
  display: inline-flex;
  align-items: center;
  margin-bottom: 6px;
}

/* Force disclosure to its own line, always below CTA */
.h2hpl-gen2-disclosure,
.h2hpl-full-v2-disclosure,
.h2hpl-supplier-disclosure,
.h2hpl-full-v2-card .available-note,
.h2hpl-gen2-card .available-note,
.h2hpl-supplier-landscape-card .available-note {
  display: block !important;
  margin-top: 6px;
  font-size: 12px;
  line-height: 1.35;
  color: rgba(74, 90, 96, 0.55);
  white-space: normal;
}

/* Prevent inline collapsing caused by flex parents */
.h2hpl-gen2-card,
.h2hpl-full-v2-card,
.h2hpl-supplier-landscape-card {
  align-items: stretch;
}

/* ---------- MOBILE SAFETY ---------- */

@media (max-width: 768px) {
  .h2hpl-gen2-disclosure,
  .h2hpl-full-v2-disclosure,
  .h2hpl-supplier-disclosure,
  .available-note {
    text-align: left;
  }
}

/* =========================================
   PHASE 18 — DISCLOSURE + FONT LOCK (FIX)
   Scope: Full listings + Supplier listings
========================================= */

/* Force CTA + disclosure to stack vertically */
.h2hpl-full-v2-card-link{
  display: inline-block;
  margin-bottom: 6px;
}

/* Normalize disclosure line placement */
.h2hpl-full-v2-card-link + .h2hpl-disclosure,
.h2hpl-full-v2-card-link + span,
.h2hpl-full-v2-card-link + em{
  display: block;
  font-size: 12.5px;
  line-height: 1.4;
  color: rgba(74,90,96,0.55);
  margin-top: 2px;
}

/* Hard font lock for card text (prevents Elementor drift) */
.h2hpl-full-v2-card,
.h2hpl-full-v2-card p,
.h2hpl-full-v2-card li{
  font-family: "Kodchasan", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

/* =========================================
   H2HPL — CTA + DISCLOSURE LOCK
========================================= */

.h2hpl-full-v2-card-link{
  display: inline-block;
  margin-bottom: 6px;
}

.h2hpl-disclosure{
  display: block;
  font-size: 12.5px;
  line-height: 1.4;
  color: rgba(74,90,96,0.55);
}

/* =========================================
   PHASE 18 — Brand Profile Hover Correction
   Scope: Product + Supplier Listings only
========================================= */

.h2hpl-brand-profile a {
  color: #2EB6C6;
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.h2hpl-brand-profile a:hover {
  color: #1f8f9c; /* darker aqua for contrast */
  opacity: 0.9;
}

/* =========================================
   GLOBAL FONT LOCK — H2|HPL®
   Applies site-wide, preserves hierarchy
========================================= */

html, body {
  font-family: "Kodchasan", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

h1, h2, h3, h4, h5, h6,
p, li, a, span, button, input, textarea {
  font-family: "Kodchasan", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

/* =========================================
   PHASE 18 — PASS 3 (FINAL LOCK)
   Brand hover correction + card font integrity
========================================= */

/* 1. Brand profile link — readable hover (no glow / no washout) */
.h2hpl-brand-profile a {
  color: rgba(46, 182, 198, 0.85);
  text-decoration: none;
  transition: color 0.2s ease;
}

.h2hpl-brand-profile a:hover {
  color: #2b8f9b; /* darker aqua for contrast */
  text-decoration: underline;
}

/* 2. Card-only font integrity (defensive, non-global) */
.h2hpl-full-v2-card,
.h2hpl-full-v2-card * {
  font-family: "Kodchasan", system-ui, -apple-system, BlinkMacSystemFont,
               "Segoe UI", Roboto, Arial, sans-serif;
}

/* =========================================
   PHASE 18 — BRAND LINK HOVER FIX (FULL LISTINGS)
   Correct selector — no layout risk
========================================= */

/* Full Listings + Supplier Listings brand links */
.h2hpl-full-v2-card a[href*="supplier"],
.h2hpl-full-v2-card p a {
  color: rgba(46, 182, 198, 0.85);
  text-decoration: none;
  transition: color 0.2s ease;
}

.h2hpl-full-v2-card a[href*="supplier"]:hover,
.h2hpl-full-v2-card p a:hover {
  color: #2b8f9b; /* darker aqua — readable */
  text-decoration: underline;
}

/* Phase 19 — Supplier Spotlight Logo Soft Rounding */
.h2hpl-supplier-spotlight img,
.h2hpl-supplier-logo img {
  border-radius: 10px;
}

/* Phase 19 — Supplier Spotlight Logo Encased */
.h2hpl-supplier-spotlight img,
.h2hpl-supplier-logo img {
  border-radius: 12px;
  background: #ffffff;
  padding: 6px;
}

/* =====================================
   SUPPLIER SPOTLIGHT HUB — PREMIUM PASS
   ===================================== */

/* ---- Page rhythm & centring ---- */

.h2hpl-supplier-hub,
.h2hpl-supplier-listing,
.h2hpl-hub-footnote {
  width: 100%;
  display: flex;
  justify-content: center;
}

.h2hpl-supplier-hub > .h2hpl-content,
.h2hpl-supplier-listing > .h2hpl-content,
.h2hpl-hub-footnote > .h2hpl-content {
  width: 100%;
  max-width: 1040px;
  padding: 0 1.25rem;
  box-sizing: border-box;
}

/* ---- Title & intro (editorial authority) ---- */

.h2hpl-hub-title {
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 1.75rem;
}

.h2hpl-hub-intro {
  max-width: 820px;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  opacity: 0.88;
}

/* ---- Supplier section framing ---- */

.h2hpl-section-title {
  margin-top: 3.5rem;
  margin-bottom: 2.25rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

/* ---- Supplier list as editorial rows ---- */

.h2hpl-supplier-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 880px;
}

.h2hpl-supplier-grid li {
  position: relative;
  padding: 2rem 0 2rem 1.25rem;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

/* subtle left guide line (premium cue) */
.h2hpl-supplier-grid li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2.2rem;
  bottom: 2.2rem;
  width: 2px;
  background: rgba(46,182,198,0.35); /* your aqua, very restrained */
  border-radius: 2px;
}

/* supplier name */
.h2hpl-supplier-grid li strong {
  font-weight: 600;
  font-size: 1.05rem;
  display: block;
  margin-bottom: 0.35rem;
}

/* description text */
.h2hpl-supplier-grid li {
  line-height: 1.6;
}

/* supplier link */
.h2hpl-supplier-grid a {
  display: inline-block;
  margin-top: 0.4rem;
  font-size: 0.95rem;
  text-decoration: none;
  opacity: 0.75;
  transition: opacity 0.2s ease;
}

.h2hpl-supplier-grid a:hover {
  opacity: 1;
}

/* ---- Footnote ---- */

.h2hpl-footnote {
  max-width: 820px;
  font-size: 0.9rem;
  line-height: 1.6;
  opacity: 0.7;
  margin-top: 2.5rem;
}

/* ---- Mobile refinement ---- */

@media (max-width: 768px) {

  .h2hpl-hub-title,
  .h2hpl-section-title {
    text-align: center;
  }

  .h2hpl-hub-intro,
  .h2hpl-footnote {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .h2hpl-supplier-grid {
    margin-left: auto;
    margin-right: auto;
  }

  .h2hpl-supplier-grid li {
    padding-left: 0;
    text-align: center;
  }

  .h2hpl-supplier-grid li::before {
    display: none; /* remove guide line on mobile */
  }
}

/* ==================================================
   H2HPL CARD v3 — CANONICAL PREMIUM CARD
   ================================================== */

.h2hpl-card-v3 {
  margin: 5rem auto;
  max-width: 1200px;
}

.h2hpl-card-frame {
  border-radius: 32px;
  padding: 3rem;
  background:
    radial-gradient(120% 120% at 10% 10%, rgba(46,182,198,0.18), transparent 60%),
    linear-gradient(180deg, rgba(6,20,24,0.92), rgba(3,10,12,0.96));
  box-shadow:
    0 30px 70px rgba(0,0,0,0.55),
    inset 0 0 0 1px rgba(46,182,198,0.18);
}

.h2hpl-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.h2hpl-card-v3.is-reversed .h2hpl-card-grid {
  direction: rtl;
}

.h2hpl-card-v3.is-reversed .h2hpl-card-body,
.h2hpl-card-v3.is-reversed .h2hpl-card-media {
  direction: ltr;
}

.h2hpl-card-media {
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.55), rgba(0,0,0,0.75));
  padding: 2.5rem;
}

.h2hpl-card-media img {
  width: 100%;
  height: auto;
  display: block;
}

.h2hpl-card-body h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.h2hpl-card-body p {
  font-size: 1.05rem;
  line-height: 1.7;
  opacity: 0.9;
}

.h2hpl-card-actions {
  margin-top: 2rem;
  display: flex;
  gap: 2rem;
  align-items: center;
}

.h2hpl-link-secondary {
  color: #2eb6c6;
  text-decoration: none;
  font-weight: 500;
}

.h2hpl-btn-primary {
  padding: 0.9rem 2.2rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #35d2e1, #1aa3b1);
  color: #052025;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(46,182,198,0.45);
}

.h2hpl-affiliate-note {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  opacity: 0.6;
}

/* ======================
   MOBILE (STACKED)
   ====================== */

@media (max-width: 767px) {
  .h2hpl-card-grid {
    grid-template-columns: 1fr;
  }

  .h2hpl-card-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ======================
   Start the cards in a NEW wrapper
   ====================== */

.h2hpl-category-cards {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 4rem);
}

/* =========================================================
   CATEGORY HYBRID — READABILITY + CENTRING FIX
   Tablet & Mobile ONLY
   ========================================================= */

/* ---------- TEXT BRIGHTENING (ALL DEVICES) ---------- */

.h2hpl-category-hybrid h2,
.h2hpl-category-hybrid h3 {
  color: rgba(240, 250, 252, 0.98);
  text-shadow: 0 1px 2px rgba(0,0,0,0.35);
}

.h2hpl-category-hybrid p {
  color: rgba(215, 235, 238, 0.92);
}

/* Buyer’s guide link */
.h2hpl-category-hybrid .h2hpl-float-link {
  color: #3fd6e6;
  font-weight: 500;
}

/* Affiliate disclaimer */
.h2hpl-category-hybrid .h2hpl-affiliate-note {
  color: rgba(200, 220, 225, 0.75);
}


/* ---------- TABLET & MOBILE LAYOUT FIX ---------- */

@media (max-width: 1024px) {

  /* Force vertical flow */
  .h2hpl-category-hybrid .h2hpl-float-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  /* Image block centring */
  .h2hpl-category-hybrid .h2hpl-float-media {
    width: 100%;
    max-width: 420px;
    margin: 0 auto 2rem;
  }

  /* Content centring */
  .h2hpl-category-hybrid .h2hpl-float-content {
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
    align-items: center;
    text-align: center;
  }

  /* CTA alignment */
  .h2hpl-category-hybrid .h2hpl-float-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    margin-top: 1.6rem;
  }

  /* Button visual stability */
  .h2hpl-category-hybrid .h2hpl-float-actions .h2hpl-btn {
    margin: 0 auto;
  }
}


/* ---------- MOBILE FINE-TUNING ---------- */

@media (max-width: 640px) {

  .h2hpl-category-hybrid h2 {
    font-size: 1.9rem;
    line-height: 1.25;
  }

  .h2hpl-category-hybrid p {
    font-size: 1rem;
    line-height: 1.55;
  }

  .h2hpl-category-hybrid .h2hpl-float-media {
    max-width: 300px;
  }
}

.h2hpl-category-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

/* STACKED LAYOUT */
@media (max-width: 1024px) {
  .h2hpl-category-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .h2hpl-category-card * {
    margin-left: auto;
    margin-right: auto;
  }
}

.h2hpl-category-card h2,
.h2hpl-category-card h3 {
  color: #EAFBFF;
}

.h2hpl-category-card p {
  color: rgba(234, 251, 255, 0.92);
}

.h2hpl-category-card .h2hpl-kicker,
.h2hpl-category-card a {
  color: #2EB6C6;
}

/* FORCE GRID TO RELEASE PIXEL LOCK */
.h2hpl-card-grid {
  grid-template-columns: 1fr 1fr !important;
  width: 100% !important;
  max-width: 100% !important;
}

/* STACK & CENTER PROPERLY */
@media (max-width: 1024px) {
  .h2hpl-card-grid {
    grid-template-columns: 1fr !important;
    justify-items: center !important;
    text-align: center !important;
  }
}

.h2hpl-card-frame {
  margin-left: auto !important;
  margin-right: auto !important;
  width: 100% !important;
}

.h2hpl-card-grid h2,
.h2hpl-card-grid h3 {
  color: #F2FCFF !important;
}

.h2hpl-card-grid p {
  color: rgba(242, 252, 255, 0.94) !important;
}

/* Affiliate note — quieter, premium */
.h2hpl-affiliate-note {
  font-size: 0.82rem;
  opacity: 0.65;
  margin-top: 0.75rem;
}

/* =====================================================
   HARD FORCE CENTRING — ELEMENTOR-SAFE
   ===================================================== */
@media (max-width: 1024px) {

  section.h2hpl-card-v3 * {
    box-sizing: border-box;
  }

  section.h2hpl-card-v3 a {
    display: inline-flex !important;
  }

  section.h2hpl-card-v3
  .elementor-widget-container {
    text-align: center !important;
  }

  section.h2hpl-card-v3
  a[href*="buyers-guide"],
  section.h2hpl-card-v3
  a[href*="product"] {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  section.h2hpl-card-v3 p {
    text-align: center !important;
  }
}

@media (max-width: 1024px) {
  section.h2hpl-card-v3 p:last-of-type {
    font-size: 0.75rem !important;
    opacity: 0.6 !important;
  }
}

/* =====================================================
   FORCE-CENTER CTA + GUIDE — OVERRIDE ELEMENTOR FLEX
   ===================================================== */
@media (max-width: 1024px) {

  /* Target Elementor widget containers inside the card */
  section.h2hpl-card-v3
  .elementor-widget-wrap,
  section.h2hpl-card-v3
  .elementor-widget-container {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
  }

  /* Center the buyer guide link */
  section.h2hpl-card-v3 a[href*="buyer"] {
    align-self: center !important;
    margin: 0 auto 1rem auto !important;
  }

  /* Center the CTA button */
  section.h2hpl-card-v3 a[href*="product"] {
    align-self: center !important;
    margin: 0 auto !important;
  }

  /* Reduce affiliate note size */
  section.h2hpl-card-v3 p:last-of-type {
    font-size: 0.7rem !important;
    opacity: 0.55 !important;
    margin-top: 1.25rem !important;
    text-align: center !important;
  }
}

/* ==================================================
   CARD v3 — TABLET + MOBILE TRUE CENTERING
   ================================================== */

@media (max-width: 1024px) {

  /* Centre the card itself */
  .h2hpl-card-v3 {
    display: flex;
    justify-content: center;
  }

  .h2hpl-card-frame {
    width: 100%;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
  }

  /* Collapse grid to vertical */
  .h2hpl-card-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* Centre body content */
  .h2hpl-card-body {
    text-align: center;
    align-items: center;
  }

  /* Centre CTA actions */
  .h2hpl-card-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  /* Prevent width drift */
  .h2hpl-card-body > *,
  .h2hpl-card-media {
    width: 100%;
    max-width: 520px;
  }
}

/* =========================================
   DESKTOP — AFFILIATE NOTE (CARD v3 ONLY)
   ========================================= */

@media (min-width: 1025px) {
  .h2hpl-card-v3 .h2hpl-affiliate-note {
    font-size: 0.78rem;
    opacity: 0.6;
    margin-top: 1.5rem;
  }
}

/* =====================================================
   BUYER’S GUIDE LINK — EDITORIAL (DESKTOP)
   ===================================================== */

.h2hpl-card-v3 .h2hpl-link-secondary {
  display: inline-block;
  max-width: 16ch;              /* forces elegant wrap */
  line-height: 1.3;

  font-size: 0.95rem;
  font-weight: 500;

  color: #02D8E9;
  text-decoration: none;

  white-space: normal;
}

/* Arrow stays visually tied, but drops to next line naturally */
.h2hpl-card-v3 .h2hpl-link-secondary::after {
  content: " →";
  white-space: nowrap;
}

/* =====================================================
   CARD v3 — SIGNATURE CTA (FINAL · CLEAN)
   DARK FRAME · ENGRAVED AQUA · GLOSS SWEEP
   ===================================================== */

.h2hpl-card-v3 a.h2hpl-btn-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 3px;                 /* frame thickness */
  min-width: 260px;

  border-radius: 16px;
  text-decoration: none;

  /* OUTER FRAME — DARK GREY (LOCKED) */
  background: linear-gradient(
    180deg,
    #3a3f42 0%,
    #1f2326 100%
  );

  box-shadow:
    0 18px 36px rgba(0,0,0,0.45),
    inset 0 1px 0 rgba(255,255,255,0.04);

  overflow: hidden;
  isolation: isolate;

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

/* INNER ENGRAVED PANEL — SIGNATURE AQUA */
.h2hpl-card-v3 a.h2hpl-btn-primary::before {
  content: "";
  position: absolute;
  inset: 10px;

  border-radius: 10px;

  background: linear-gradient(
    180deg,
    #19cddd 0%,
    #02d8e9 55%,
    #009fb0 100%
  );

  box-shadow:
    inset 0 4px 10px rgba(0,0,0,0.35),
    inset 0 0 0 1px rgba(15, 28, 32, 0.65);

  pointer-events: none;
}

/* GLOSS SWEEP */
.h2hpl-card-v3 a.h2hpl-btn-primary::after {
  content: "";
  position: absolute;
  top: -40%;
  left: -60%;
  width: 60%;
  height: 180%;

  background: linear-gradient(
    120deg,
    transparent 35%,
    rgba(255,255,255,0.35) 50%,
    transparent 65%
  );

  transform: translateX(-120%) rotate(8deg);
  animation: h2hpl-gloss-sweep 6.5s ease-in-out infinite;

  pointer-events: none;
}

/* TEXT LAYER */
.h2hpl-card-v3 a.h2hpl-btn-primary span {
  position: relative;
  z-index: 2;

  padding: 0.95rem 2.6rem;

  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;

  color: #002a2f;

  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.h2hpl-card-v3 a.h2hpl-btn-primary span::after {
  content: "→";
}

/* HOVER */
.h2hpl-card-v3 a.h2hpl-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow:
    0 28px 56px rgba(0,0,0,0.55),
    inset 0 1px 0 rgba(255,255,255,0.08);
}

/* GLOSS ANIMATION */
@keyframes h2hpl-gloss-sweep {
  0%   { transform: translateX(-120%) rotate(8deg); opacity: 0; }
  20%  { opacity: 1; }
  45%  { transform: translateX(260%) rotate(8deg); opacity: 0; }
  100% { opacity: 0; }
}

/* =====================================================
   H2HPL — ELEMENTOR FREE SPACING OVERRIDE (LOCKED)
   ===================================================== */

/* Kill Elementor's default widget spacing */
.elementor-widget {
  margin-bottom: 0 !important;
}

/* Kill section bottom spacing */
.elementor-section {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

/* Kill inner section spacing */
.elementor-section > .elementor-container {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

/* Optional: ensure cards control their own spacing */
.h2hpl-card-v3 {
  margin: 48px 0; /* adjust once, globally */
}

/* =====================================================
   H2HPL — ELEMENTOR FREE VERTICAL SPACING HARD STOP
   ===================================================== */

/* Kill widget wrap spacing */
.elementor-widget-wrap {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

/* Kill column spacing */
.elementor-column-gap-default > .elementor-column > .elementor-element-populated {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

/* Kill section spacing */
.elementor-section {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

/* Optional: control spacing explicitly via card */
.h2hpl-card-v3 {
  margin: 48px 0; /* single, intentional spacing */
}

/* =========================================
   HARD STOP — ELEMENTOR WIDGET SPACING
   (Free Elementor compatible)
   ========================================= */

/* Kill widget-to-widget vertical spacing */
.elementor-widget {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

/* Kill container-injected spacing variables */
:root {
  --widgets-spacing: 0px !important;
  --widgets-spacing-row: 0px !important;
  --widgets-spacing-column: 0px !important;
}

/* Safety net for flex containers */
.e-con,
.e-con-inner {
  gap: 0 !important;
}

/* =========================================
   H2HPL — GLOBAL SPACING TOKEN LOCK
   Kills Elementor widget vertical gaps
   ========================================= */

.h2hpl-wrap,
.h2hpl-card-v3 {
  --widgets-spacing: 0px !important;
}

/* Hard override for Elementor containers */
.h2hpl-wrap > .elementor-widget,
.h2hpl-card-v3 > .elementor-widget {
  margin-block-start: 0 !important;
  margin-block-end: 0 !important;
}

/* =====================================================
   CARD v3 — FINAL SPACING LOCK (5% TIGHTER)
   ===================================================== */

/* Space BETWEEN cards — editorial, not airy */
.h2hpl-card-v3 {
  margin-block: 2.1rem;
}

/* Inner frame padding — slightly more compact */
.h2hpl-card-frame {
  padding: 2.4rem 2.8rem;
}

/* Grid rhythm */
.h2hpl-card-grid {
  row-gap: 1.9rem;
}

/* Title → paragraph */
.h2hpl-card-body h2 {
  margin-bottom: 0.75rem;
}

/* Paragraph → CTA cluster */
.h2hpl-card-body p {
  margin-bottom: 1.4rem;
}

/* CTA cluster */
.h2hpl-card-actions {
  margin-top: 1.2rem;
  gap: 1.2rem;
}

/* Affiliate note — tucked, quiet */
.h2hpl-affiliate-note {
  margin-top: 1rem;
  font-size: 0.8rem;
  opacity: 0.72;
}

/* =====================================================
   LOCKED — mobile kicker centering (Elementor override)
===================================================== */

/* MOBILE — force-center kicker (override Elementor) */
@media (max-width: 767px) {
  .h2hpl-wrap .h2hpl-kicker {
    text-align: center !important;
    width: 100%;
    display: block;
  }
}

/* =====================================
   PHASE 20 — VISIBILITY FIX (TEMPORARY)
   Purpose: Make body text readable - Step 5
   ===================================== */

/* Base body copy */
.h2hpl-home-section .h2hpl-p,
.h2hpl-home-hero .h2hpl-p {
  color: rgba(25, 30, 32, 0.85);
}

/* Headings remain dominant */
.h2hpl-home-section h1,
.h2hpl-home-section h2,
.h2hpl-home-hero h1 {
  color: #0f1f24;
}

/* Kickers stay subtle but visible */
.h2hpl-kicker {
  color: #2eb6c6;
  opacity: 0.9;
}

/* CTA buttons unaffected (intentional) */

/* Light section background (default) */
.h2hpl-home-section {
  background: #ffffff;
}

/* Dark aqua sections — apply this class manually later */
.h2hpl-home-section.is-dark {
  background: linear-gradient(
    180deg,
    #0b2a31 0%,
    #081e24 100%
  );
}

.h2hpl-home-section.is-dark .h2hpl-p {
  color: rgba(255, 255, 255, 0.85);
}

.h2hpl-home-section.is-dark h1,
.h2hpl-home-section.is-dark h2 {
  color: #ffffff;
}

.h2hpl-home-section.is-dark .h2hpl-kicker {
  color: #6fdce6;
}

/* =====================================
   PHASE 20 — VERTICAL RHYTHM POLISH
   Purpose: breathing room & readability - Step 7
   ===================================== */

/* Global section spacing */
.h2hpl-home-section,
.h2hpl-home-hero,
.h2hpl-home-slogan {
  padding-top: 5.5rem;
  padding-bottom: 5.5rem;
}

/* Reduce spacing on small screens */
@media (max-width: 768px) {
  .h2hpl-home-section,
  .h2hpl-home-hero,
  .h2hpl-home-slogan {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }
}

/* Headings spacing */
.h2hpl-home-section h1,
.h2hpl-home-section h2,
.h2hpl-home-hero h1 {
  margin-bottom: 1.2rem;
}

/* Paragraph spacing */
.h2hpl-home-section .h2hpl-p,
.h2hpl-home-hero .h2hpl-p {
  margin-bottom: 1.8rem;
  max-width: 42rem;
}

/* CTA spacing — keeps it attached to copy */
.h2hpl-cta-group {
  margin-top: 1.5rem;
}

/* Slogan spacing */
.h2hpl-home-slogan {
  text-align: center;
}

.h2hpl-home-slogan .h2hpl-slogan span {
  margin: 0 0.75rem;
}

/* =====================================
   PHASE 20 — SECTION CONTRAST & EMPHASIS
   Purpose: depth, separation, focus - Step 8
   ===================================== */

/* Light sections — very soft surface lift */
.h2hpl-home-section:not(.is-dark),
.h2hpl-home-slogan {
  background-color: #ffffff;
  box-shadow: inset 0 -1px 0 rgba(0,0,0,0.04);
}

/* Dark sections — depth without heaviness */
.h2hpl-home-section.is-dark,
.h2hpl-home-hero.is-dark {
  position: relative;
}

.h2hpl-home-section.is-dark::after,
.h2hpl-home-hero.is-dark::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.04),
    rgba(0,0,0,0.08)
  );
  pointer-events: none;
}

/* Prevent overlay from affecting content */
.h2hpl-home-section.is-dark > *,
.h2hpl-home-hero.is-dark > * {
  position: relative;
  z-index: 1;
}

/* Slight emphasis for headings in dark sections */
.h2hpl-home-section.is-dark h1,
.h2hpl-home-section.is-dark h2,
.h2hpl-home-hero.is-dark h1 {
  text-shadow: 0 1px 2px rgba(0,0,0,0.25);
}

/* =====================================
   PHASE 20 — CARD SURFACE & CONTAINMENT
   Purpose: premium structure & clarity - Step 9
   ===================================== */

/* Homepage card base */
.h2hpl-card-homepage {
  background: rgba(255,255,255,0.94);
  border-radius: 22px;
  padding: 3.2rem;
  box-shadow:
    0 18px 45px rgba(0,0,0,0.08),
    inset 0 0 0 1px rgba(0,0,0,0.04);
}

/* Cards inside dark sections adapt */
.h2hpl-home-section.is-dark .h2hpl-card-homepage,
.h2hpl-home-hero.is-dark .h2hpl-card-homepage {
  background: rgba(10, 30, 36, 0.85);
  box-shadow:
    0 22px 55px rgba(0,0,0,0.45),
    inset 0 0 0 1px rgba(255,255,255,0.06);
}

/* Headings inside cards stay crisp */
.h2hpl-card-homepage h1,
.h2hpl-card-homepage h2 {
  margin-top: 0;
}

/* Media separation (no border) */
.h2hpl-card-media {
  border-radius: 16px;
  overflow: hidden;
}

/* Prevent cards from touching section edges */
.h2hpl-home-section .h2hpl-card-homepage,
.h2hpl-home-hero .h2hpl-card-homepage {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* =====================================
   PHASE 20 — CTA EMPHASIS & HIERARCHY
   Purpose: clarity, focus, confidence - Step 10
   ===================================== */

/* Primary CTA baseline */
.h2hpl-btn-primary {
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow: 0 10px 24px rgba(46,182,198,0.35);
}

/* Primary CTA hover — calm lift */
.h2hpl-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(46,182,198,0.45);
}

/* Dark section CTA adaptation */
.h2hpl-home-section.is-dark .h2hpl-btn-primary,
.h2hpl-home-hero.is-dark .h2hpl-btn-primary {
  box-shadow: 0 12px 28px rgba(0,0,0,0.55);
}

/* CTA group alignment */
.h2hpl-cta-group {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

/* Secondary CTA (text link) — subtle */
.h2hpl-cta-group a:not(.h2hpl-btn-primary) {
  color: rgba(15,31,36,0.65);
  font-weight: 500;
  text-decoration: none;
}

.h2hpl-home-section.is-dark
.h2hpl-cta-group a:not(.h2hpl-btn-primary) {
  color: rgba(255,255,255,0.7);
}

/* Secondary CTA hover — gentle underline */
.h2hpl-cta-group a:not(.h2hpl-btn-primary):hover {
  text-decoration: underline;
}

/* =====================================
   STEP 15 — HERO SHADOW REMOVAL (FINAL)
   ===================================== */

/* Disable dark-section overlay entirely for hero */
.h2hpl-home-hero.is-dark::after {
  display: none !important;
}


/* =====================================
   PHASE 20 — MOBILE QA SAFETY NET
   Purpose: readability & comfort - Step 13
   ===================================== */

@media (max-width: 768px) {

  /* Card padding adjustment */
  .h2hpl-card-homepage {
    padding: 2.2rem;
  }

  /* Prevent cards touching edges */
  .h2hpl-home-section .h2hpl-card-homepage,
  .h2hpl-home-hero .h2hpl-card-homepage {
    margin-left: 1rem;
    margin-right: 1rem;
  }

  /* Headline spacing */
  .h2hpl-h1,
  .h2hpl-h2 {
    line-height: 1.25;
  }

  /* CTA tap comfort */
  .h2hpl-btn-primary {
    padding: 0.9rem 1.4rem;
  }

}

/* ===============================
   HERO — LIGHT TEXT ENFORCEMENT
   =============================== */

.h2hpl-hero,
.h2hpl-hero * {
  color: #EAFBFD !important;
}

.h2hpl-hero h1,
.h2hpl-hero h2 {
  color: #FFFFFF !important;
  text-shadow: 0 6px 22px rgba(0,0,0,0.55);
}

.h2hpl-hero p {
  color: rgba(234, 251, 253, 0.88) !important;
}

/* ===============================
   SLOGAN ANCHOR — VISUAL ELEVATION
   =============================== */

.h2hpl-slogan-anchor {
  display: block;
  margin: 4rem auto 3.5rem;
  padding: 1.2rem 2.5rem;

  font-size: 0.95rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  text-align: center;

  color: rgba(46,182,198,0.9);

  border-top: 1px solid rgba(46,182,198,0.25);
  border-bottom: 1px solid rgba(46,182,198,0.25);
}

/* ===============================
   REMOVE DARK-ON-DARK REDUNDANCY
   =============================== */

.h2hpl-section-dark {
  background: transparent !important;
}

/* ===============================
   LIGHT SECTIONS — AQUA SURFACES
   =============================== */

.h2hpl-section-light,
.h2hpl-surface-light {
  background:
    linear-gradient(
      180deg,
      rgba(46,182,198,0.08),
      rgba(46,182,198,0.04)
    );
}

/* ===============================
   CTA — SHOP MASTER SKIN
   =============================== */

/* STEP 15.3 — APPLY SHOP SIGNATURE CTA TO HOMEPAGE */
body.home .h2hpl-card-homepage a.h2hpl-btn-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 3px;
  min-width: 260px;

  border-radius: 16px;
  text-decoration: none;

  background: linear-gradient(
    180deg,
    #3a3f42 0%,
    #1f2326 100%
  );

  box-shadow:
    0 18px 36px rgba(0,0,0,0.45),
    inset 0 1px 0 rgba(255,255,255,0.04);

  overflow: hidden;
  isolation: isolate;
}

body.home .h2hpl-card-homepage a.h2hpl-btn-primary::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 10px;

  background: linear-gradient(
    180deg,
    #19cddd 0%,
    #02d8e9 55%,
    #009fb0 100%
  );

  box-shadow:
    inset 0 4px 10px rgba(0,0,0,0.35),
    inset 0 0 0 1px rgba(15, 28, 32, 0.65);
}

body.home .h2hpl-card-homepage a.h2hpl-btn-primary span {
  position: relative;
  z-index: 2;
  padding: 0.95rem 2.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #002a2f;
}

/* STEP 15 — HERO TEXT (FINAL) */
body.home .h2hpl-home-hero.is-dark h1.h2hpl-h1,
body.home .h2hpl-home-hero.is-dark h2,
body.home .h2hpl-home-hero.is-dark .h2hpl-p {
  color: #ffffff !important;
}

body.home .h2hpl-home-hero.is-dark .h2hpl-p {
  color: rgba(234,251,253,0.88) !important;
}

/* STEP 15.9 — HERO SHADOW REFINEMENT */
body.home .h2hpl-home-hero .h2hpl-card-homepage {
  box-shadow:
    0 18px 36px rgba(0,0,0,0.35),
    inset 0 0 0 1px rgba(255,255,255,0.04);
}

/* STEP 15 — SLOGAN ELEVATION (FINAL) */
body.home section.h2hpl-home-slogan {
  background: linear-gradient(
    180deg,
    rgba(46,182,198,0.07),
    rgba(46,182,198,0.04)
  );
}

body.home section.h2hpl-home-slogan p.h2hpl-slogan {
  display: inline-block;
  padding: 1.1rem 2.6rem;

  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;

  color: rgba(46,182,198,0.95);

  border-top: 1px solid rgba(46,182,198,0.28);
  border-bottom: 1px solid rgba(46,182,198,0.28);
}

/* STEP 15.7 — SLOGAN PRESENCE BOOST */
body.home section.h2hpl-home-slogan {
  padding-top: 7rem;
  padding-bottom: 7rem;
}

body.home section.h2hpl-home-slogan p.h2hpl-slogan {
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: #2eb6c6;
}

/* STEP 15 — REMOVE DARK ON DARK */
body.home section.h2hpl-home-section.is-dark {
  background: transparent !important;
}

body.home section.h2hpl-home-section.is-dark::after {
  display: none !important;
}

/* STEP 15.1 — RESTORE SIGNATURE DARK-AQUA CARDS */
body.home .h2hpl-home-section .h2hpl-card-homepage {
  background: linear-gradient(
    180deg,
    #0b2a31 0%,
    #081e24 100%
  );
}

/* STEP 15.2 — LIGHT-AQUA CARD SURFACE */
body.home .h2hpl-home-section:not(.is-dark) .h2hpl-card-homepage {
  background: linear-gradient(
    180deg,
    rgba(46,182,198,0.12),
    rgba(46,182,198,0.06)
  );
}

/* STEP 15 — SHOP CTA SKIN */
body.home .h2hpl-btn-primary {
  background: linear-gradient(135deg, #2EB6C6, #1F8F9C);
  color: #00292E;

  box-shadow:
    0 14px 36px rgba(46,182,198,0.5),
    inset 0 0 0 1px rgba(255,255,255,0.35);
}

body.home .h2hpl-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 20px 50px rgba(46,182,198,0.65),
    inset 0 0 0 1px rgba(255,255,255,0.5);
}

/* STEP 15.8 — COMPLETE SHOP CTA FRAME */
body.home .h2hpl-card-homepage a.h2hpl-btn-primary {
  background: linear-gradient(
    180deg,
    #3a3f42 0%,
    #1f2326 100%
  );
  padding: 3px;
}

body.home .h2hpl-card-homepage a.h2hpl-btn-primary::before {
  inset: 8px;
}

/* STEP 15.4 — CONTENT CENTERING */
body.home .h2hpl-card-homepage {
  text-align: center;
}

body.home .h2hpl-card-homepage .h2hpl-cta-group {
  justify-content: center;
}

/* STEP 15.6 — CENTER CARD CONTENT (SAFE) */
body.home .h2hpl-card-homepage .h2hpl-card-content {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

body.home .h2hpl-card-homepage .h2hpl-p {
  margin-left: auto;
  margin-right: auto;
}

body.home .h2hpl-card-homepage .h2hpl-cta-group {
  justify-content: center;
}

/* STEP 15.22 — UNIVERSAL CTA FRAME REFINEMENT */
body.home .h2hpl-card-homepage a.h2hpl-btn-primary {
  padding: 3px !important;
}

/* STEP 15.13 — HERO CARD DARK-AQUA RESTORE */
body.home .h2hpl-home-hero .h2hpl-card-homepage {
  background: linear-gradient(
    180deg,
    #0b2a31 0%,
    #081e24 100%
  );
}

/* STEP 15.14 — ENABLE GLOSS SWEEP (HOMEPAGE) */
body.home .h2hpl-card-homepage a.h2hpl-btn-primary::after {
  content: "";
  position: absolute;
  top: -40%;
  left: -60%;
  width: 60%;
  height: 180%;

  background: linear-gradient(
    120deg,
    transparent 35%,
    rgba(255,255,255,0.35) 50%,
    transparent 65%
  );

  transform: translateX(-120%) rotate(8deg);
  animation: h2hpl-gloss-sweep 6.5s ease-in-out infinite;

  pointer-events: none;
}

/* STEP 15.21 — REMOVE PAGE-LEVEL SHADOW UNDER HERO (FINAL) */
body.home main.site-main {
  box-shadow: none !important;
}

body.home main.site-main::after,
body.home main.site-main::before {
  display: none !important;
}

/* STEP 15.16 — STRONGER LIGHT-AQUA CARDS */
body.home .h2hpl-home-section:not(.is-dark)
.h2hpl-card-homepage {
  background: linear-gradient(
    180deg,
    rgba(46,182,198,0.22),
    rgba(46,182,198,0.14)
  );
}

/* Light-surface CTA frame refinement */
.h2hpl-home-section:not(.is-dark)
.h2hpl-btn-primary {
  box-shadow:
    0 14px 30px rgba(0,0,0,0.35),
    inset 0 1px 0 rgba(255,255,255,0.05);
}

/* =====================================
   STEP 15 — CTA FRAME NORMALISATION
   Applies signature CTA padding globally
   ===================================== */

/* Homepage + non-card-v3 CTAs */
.h2hpl-home-section a.h2hpl-btn-primary,
.h2hpl-home-hero a.h2hpl-btn-primary {
  padding: 3px !important; /* thinner frame */
}

/* =====================================
   STEP 15 — CTA FRAME THICKNESS (FINAL)
   This is the real border
   ===================================== */

/* Reduce engraved panel inset (frame thickness) */
.h2hpl-btn-primary::before {
  inset: 2px !important; /* was 10px */
}

/* =====================================
   PHASE 21 — CTA CONTEXT-AWARE FRAMING
   Light vs Dark sections
   ===================================== */

/* LIGHT SECTIONS — thinner, elegant frame */
.h2hpl-home-section:not(.is-dark)
.h2hpl-btn-primary::before {
  inset: 2px !important;
}

/* DARK SECTIONS — slightly stronger definition */
.h2hpl-home-section.is-dark
.h2hpl-btn-primary::before,
.h2hpl-home-hero.is-dark
.h2hpl-btn-primary::before {
  inset: 4px !important;
}

.h2hpl-label {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.35rem 0.9rem;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7fe6ef;
  border: 1px solid rgba(127,230,239,0.35);
  border-radius: 999px;
		
/* =====================================================
   H2HPL — TWO-COLUMN ZIG-ZAG CARD GRID (LOCKED)
   ===================================================== */

/* Base card grid */
.h2hpl-card-homepage {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 2.5rem;
}

/* Desktop only: activate two-column layout */
@media (min-width: 1024px) {

  .h2hpl-card-homepage {
    grid-template-columns: 1fr 1fr;
    column-gap: 3.5rem;
    align-items: center;
  }

  /* Default order: image left, content right */
  .h2hpl-card-homepage .h2hpl-card-media {
    grid-column: 1;
  }

  .h2hpl-card-homepage .h2hpl-card-content {
    grid-column: 2;
  }

  /* Reversed: content left, image right */
  .h2hpl-card-homepage.is-reversed .h2hpl-card-media {
    grid-column: 2;
  }

  .h2hpl-card-homepage.is-reversed .h2hpl-card-content {
    grid-column: 1;
  }
}
		
/* =========================================
   BULLET SUB-GRID — ZIG-ZAG CARDS (LOCKED)
   ========================================= */

.h2hpl-bullet-grid {
  list-style: none;
  padding: 0;
  margin: 1.6rem 0 2rem;
  display: grid;
  gap: 0.75rem;
}

.h2hpl-bullet-grid li {
  display: grid;
  grid-template-columns: 10px 1fr;
  align-items: start;
  column-gap: 0.65rem;
}

/* Bullet dot */
.h2hpl-bullet-dot {
  width: 6px;
  height: 6px;
  margin-top: 0.55em;
  border-radius: 50%;
  background-color: var(--h2hpl-accent, #2EB6C6);
  opacity: 0.9;
}

/* Bullet text */
.h2hpl-bullet-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: inherit;
}

/* Dark card tuning */
.is-dark .h2hpl-bullet-dot {
  opacity: 1;
}

/* Mobile — unchanged order, no zig-zag */
@media (max-width: 768px) {
  .h2hpl-bullet-grid {
    margin-left: 0;
  }
}
		
/* =====================================
   ZIG-ZAG CARD GRID — CANONICAL v1
   ===================================== */

.h2hpl-card-homepage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.h2hpl-card-homepage.is-reversed {
  direction: rtl;
}

.h2hpl-card-homepage.is-reversed > * {
  direction: ltr;
}

/* Mobile: always stack image then content */
@media (max-width: 900px) {
  .h2hpl-card-homepage {
    grid-template-columns: 1fr;
  }
}


/* =====================================
   BULLET SUB-GRID — v1
   ===================================== */

.h2hpl-bullet-grid {
  list-style: none;
  margin: 2rem 0;
  padding: 0;

  display: grid;
  grid-template-columns: 1fr;
  row-gap: 0.6rem;
}

.h2hpl-bullet-grid li {
  display: grid;
  grid-template-columns: 14px 1fr;
  column-gap: 0.75rem;
  align-items: start;
}

.h2hpl-bullet-dot {
  width: 6px;
  height: 6px;
  margin-top: 0.55em;
  border-radius: 50%;
  background: #2EB6C6;
  opacity: 0.9;
}

.h2hpl-bullet-text {
  font-size: 0.95rem;
  line-height: 1.55;
  color: inherit;
}
		
/* ================================
   BULLET SUB-GRID — v1 (CANONICAL)
   ================================ */

.h2hpl-bullet-grid {
  list-style: none;
  margin: 2rem 0;
  padding: 0;

  display: grid;
  grid-template-columns: 1fr;
  row-gap: 0.6rem;
}

.h2hpl-bullet-grid li {
  display: grid;
  grid-template-columns: 14px 1fr;
  column-gap: 0.75rem;
  align-items: start;
}

/* Bullet dot */
.h2hpl-bullet-dot {
  width: 6px;
  height: 6px;
  margin-top: 0.55em;
  border-radius: 50%;
  background: #2EB6C6;
  opacity: 0.9;
}

/* Bullet text */
.h2hpl-bullet-text {
  font-size: 0.95rem;
  line-height: 1.55;
  color: inherit;
}
		
/* =========================================
   ZIG-ZAG CARD GRID — DESKTOP ONLY (LOCKED)
   ========================================= */

.h2hpl-card-homepage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

/* Default order */
.h2hpl-card-media {
  order: 1;
}

.h2hpl-card-content {
  order: 2;
}

/* Reversed card — CLASS IS ON SECTION */
.h2hpl-home-section.is-reversed .h2hpl-card-media {
  order: 2;
}

.h2hpl-home-section.is-reversed .h2hpl-card-content {
  order: 1;
}

/* =========================================
   MOBILE — STACKED, NON-ZIGZAG (LOCKED)
   ========================================= */

@media (max-width: 768px) {
  .h2hpl-card-homepage {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .h2hpl-card-media,
  .h2hpl-card-content {
    order: unset;
  }
}