/* ==========================================================================
   HydraPure — main stylesheet
   Palette, type and spacing follow the approved HydraPure Visual Design Guide.
   ========================================================================== */

:root{
  --hp-blue:#0057B8;
  --hp-blue-dark:#00458F;
  --hp-navy:#003B73;
  --hp-sky:#00A3E0;
  --hp-ice:#F5FAFF;
  --hp-ice-2:#EAF6FF;
  --hp-white:#FFFFFF;
  --hp-text:#1F2937;
  --hp-muted:#53657A;
  --hp-border:#DCE9F7;
  --hp-border-soft:#EDF4FC;
  --hp-green:#0F9D58;
  --hp-amber:#E8A400;
  --hp-red:#D93025;
  --hp-brand-primary:#0B4DA2;
  --hp-brand-accent:#00A3E0;
  --hp-brand-tagline:#0067C5;
  --hp-radius:14px;
  --hp-radius-sm:8px;
  --hp-shadow:0 2px 10px rgba(0,59,115,.06);
  --hp-shadow-lg:0 8px 28px rgba(0,59,115,.10);
  --hp-wrap:1200px;
  --hp-section:80px;
  --hp-font-head:"Poppins","Segoe UI",Arial,sans-serif;
  --hp-font-brand:"Montserrat","Segoe UI",Arial,sans-serif;
  --hp-font-body:"Inter","Open Sans",Arial,sans-serif;
}

/* ---------- Reset / base ---------- */
*,*::before,*::after{box-sizing:border-box}
html{-webkit-text-size-adjust:100%}
body{
  margin:0;
  font-family:var(--hp-font-body);
  font-size:16px;
  line-height:1.65;
  color:var(--hp-text);
  background:var(--hp-white);
  overflow-x:hidden;
}
img{max-width:100%;height:auto;display:block}
/* Safety net: an icon that lands somewhere without its own sizing rule stays
   an icon instead of expanding to the width of its container. */
svg.hp-svg{width:22px;height:22px;flex:none}
a{color:var(--hp-blue);text-decoration:none}
a:hover{color:var(--hp-sky)}
h1,h2,h3,h4,h5,h6{
  font-family:var(--hp-font-head);
  font-weight:700;
  color:var(--hp-navy);
  margin:0 0 .6em;
  line-height:1.25;
}
h1{font-size:clamp(2rem,4.4vw,3.1rem)}
h2{font-size:clamp(1.5rem,2.8vw,2.1rem)}
h3{font-size:1.2rem}
p{margin:0 0 1rem}
ul,ol{margin:0 0 1rem;padding-left:1.2rem}
button{font-family:inherit}
:focus-visible{outline:3px solid var(--hp-sky);outline-offset:2px}
.hp-screen-reader-text{position:absolute!important;width:1px;height:1px;overflow:hidden;clip:rect(1px,1px,1px,1px);white-space:nowrap}
.hp-skip-link{position:absolute;left:-9999px;top:0;background:var(--hp-blue);color:#fff;padding:12px 18px;z-index:999}
.hp-skip-link:focus{left:8px;top:8px;color:#fff}

/* ---------- Layout helpers ---------- */
.hp-wrap{width:100%;max-width:var(--hp-wrap);margin:0 auto;padding:0 20px}
.hp-section{padding:var(--hp-section) 0}
.hp-section--tight{padding:52px 0}
.hp-section--ice{background:var(--hp-ice)}
.hp-section--ice2{background:var(--hp-ice-2)}
.hp-center{text-align:center}
.hp-grid{display:grid;gap:24px}
.hp-grid-2{grid-template-columns:repeat(2,1fr)}
.hp-grid-3{grid-template-columns:repeat(3,1fr)}
.hp-grid-4{grid-template-columns:repeat(4,1fr)}
.hp-grid-5{grid-template-columns:repeat(5,1fr)}
.hp-grid-6{grid-template-columns:repeat(6,1fr)}

/* ---------- Section headings ---------- */
.hp-section-head{max-width:760px;margin:0 auto 44px;text-align:center}
.hp-section-head h2{margin-bottom:14px}
.hp-section-head p{color:var(--hp-muted);margin:0}
.hp-rule{width:60px;height:4px;border-radius:2px;background:var(--hp-blue);margin:0 0 22px}
.hp-rule--center{margin-left:auto;margin-right:auto}

/* ---------- Buttons ---------- */
.hp-btn{
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  font-family:var(--hp-font-head);font-weight:600;font-size:.95rem;
  letter-spacing:.02em;
  padding:14px 26px;border-radius:8px;border:2px solid transparent;
  cursor:pointer;transition:background-color .18s ease,color .18s ease,border-color .18s ease;
  text-align:center;
}
.hp-btn svg{width:18px;height:18px;flex:none}
.hp-btn--primary{background:var(--hp-blue);color:#fff}
.hp-btn--primary:hover{background:var(--hp-blue-dark);color:#fff}
.hp-btn--ghost{background:#fff;color:var(--hp-blue);border-color:var(--hp-blue)}
.hp-btn--ghost:hover{background:var(--hp-ice-2);color:var(--hp-blue)}
.hp-btn--navy{background:var(--hp-navy);color:#fff}
.hp-btn--navy:hover{background:#002d59;color:#fff}
.hp-btn--white{background:#fff;color:var(--hp-blue)}
.hp-btn--block{display:flex;width:100%}
.hp-btn--lg{padding:16px 32px;font-size:1rem}
.hp-btn[disabled],.hp-btn.is-disabled{opacity:.55;cursor:not-allowed}

/* ---------- Cards ---------- */
.hp-card{
  background:#fff;border:1px solid var(--hp-border);
  border-radius:var(--hp-radius);box-shadow:var(--hp-shadow);
  padding:26px;
}
.hp-card--flat{box-shadow:none}
.hp-card h3{margin-bottom:8px}
.hp-card p{color:var(--hp-muted);margin:0}

/* ---------- Icon circles ---------- */
.hp-ico{
  width:64px;height:64px;border-radius:50%;background:var(--hp-ice-2);
  display:flex;align-items:center;justify-content:center;color:var(--hp-blue);
  flex:none;
}
.hp-ico svg{width:30px;height:30px}
.hp-ico--sm{width:44px;height:44px}
.hp-ico--sm svg{width:22px;height:22px}
.hp-ico--plain{background:none;width:auto;height:auto}
.hp-ico--plain svg{width:40px;height:40px}

/* ==========================================================================
   Header
   ========================================================================== */
.hp-topbar{background:var(--hp-navy);color:#cfe4f7;font-size:.85rem}
.hp-topbar .hp-wrap{display:flex;flex-wrap:wrap;gap:8px 26px;align-items:center;justify-content:space-between;padding-top:8px;padding-bottom:8px}
.hp-topbar a{color:#fff}
.hp-topbar-items{display:flex;flex-wrap:wrap;gap:8px 22px;align-items:center}
.hp-topbar-items span{display:inline-flex;align-items:center;gap:7px}
.hp-topbar svg{width:15px;height:15px}

.hp-header{background:#fff;border-bottom:1px solid var(--hp-border-soft);position:sticky;top:0;z-index:120}
.admin-bar .hp-header{top:32px}
.hp-header-inner{display:flex;align-items:center;justify-content:space-between;gap:20px;padding-top:14px;padding-bottom:14px}

.hp-brand{display:flex;align-items:center;gap:10px;flex:none}
.hp-brand img{max-height:56px;width:auto}
.hp-brand-mark{width:44px;height:52px;color:var(--hp-blue);flex:none}
.hp-brand-text{display:flex;flex-direction:column;line-height:1}
.hp-brand-name{font-family:var(--hp-font-head);font-weight:700;font-size:1.6rem;color:var(--hp-blue);letter-spacing:-.01em}
.hp-brand-tag{font-size:.5rem;letter-spacing:.09em;color:var(--hp-sky);font-weight:600;margin-top:4px;text-transform:uppercase}

.hp-nav{display:flex;align-items:center;gap:8px;margin-left:auto}
.hp-nav ul{list-style:none;display:flex;align-items:center;gap:4px;margin:0;padding:0}
.hp-nav li{position:relative}
.hp-nav a{
  display:block;padding:10px 14px;font-family:var(--hp-font-head);
  font-weight:500;font-size:.95rem;color:var(--hp-navy);border-bottom:3px solid transparent;
}
.hp-nav a:hover{color:var(--hp-blue)}
.hp-nav .current-menu-item>a,.hp-nav .current_page_item>a,.hp-nav .hp-nav-current>a{color:var(--hp-blue);border-bottom-color:var(--hp-blue);font-weight:600}
.hp-nav .sub-menu{
  display:none;position:absolute;top:100%;left:0;min-width:210px;background:#fff;
  border:1px solid var(--hp-border);border-radius:var(--hp-radius-sm);box-shadow:var(--hp-shadow-lg);
  padding:8px;flex-direction:column;align-items:stretch;z-index:130;
}
.hp-nav li:hover>.sub-menu,.hp-nav li:focus-within>.sub-menu{display:flex}
.hp-nav .sub-menu a{border-bottom:0;padding:9px 12px;border-radius:6px}
.hp-nav .sub-menu a:hover{background:var(--hp-ice)}

.hp-header-cta{flex:none}
.hp-burger{
  display:none;background:#fff;border:1px solid var(--hp-border);border-radius:8px;
  padding:9px 11px;color:var(--hp-navy);cursor:pointer;line-height:0;
}
.hp-burger svg{width:24px;height:24px}

.hp-mobile-nav{display:none;background:#fff;border-bottom:1px solid var(--hp-border);padding:8px 0 18px}
.hp-mobile-nav.is-open{display:block}
.hp-mobile-nav ul{list-style:none;margin:0;padding:0}
.hp-mobile-nav .sub-menu{padding-left:14px}
.hp-mobile-nav a{display:block;padding:12px 4px;font-family:var(--hp-font-head);font-weight:500;color:var(--hp-navy);border-bottom:1px solid var(--hp-border-soft)}
.hp-mobile-nav .hp-btn{margin-top:16px}

/* ==========================================================================
   Page hero (inner pages)
   ========================================================================== */
.hp-page-hero{position:relative;background:var(--hp-ice-2);overflow:hidden}
.hp-page-hero-bg{position:absolute;inset:0;background-size:cover;background-position:center right;}
.hp-page-hero::after{
  content:"";position:absolute;inset:0;
  background:linear-gradient(100deg,#fff 22%,rgba(255,255,255,.88) 42%,rgba(255,255,255,.25) 68%,rgba(255,255,255,0) 88%);
}
.hp-page-hero .hp-wrap{position:relative;z-index:2;padding-top:56px;padding-bottom:56px}
.hp-page-hero-inner{max-width:560px}
.hp-page-hero h1{margin-bottom:14px}
.hp-page-hero p{color:var(--hp-navy);margin:0;max-width:460px}
.hp-page-hero .hp-rule{margin-top:-4px}
.hp-hero-badges{display:flex;flex-wrap:wrap;gap:22px;margin-top:26px}
.hp-hero-badge{display:flex;align-items:center;gap:10px;font-family:var(--hp-font-head);font-weight:600;font-size:.88rem;color:var(--hp-navy);line-height:1.25}
.hp-hero-badge .hp-ico{width:46px;height:46px;background:#fff;border:1px solid var(--hp-border)}
.hp-hero-badge .hp-ico svg{width:22px;height:22px}

/* ==========================================================================
   Home hero
   ========================================================================== */
.hp-hero{position:relative;background:var(--hp-ice-2) center/cover no-repeat;overflow:hidden}
.hp-hero::after{
  content:"";position:absolute;inset:0;
  background:linear-gradient(100deg,#fff 20%,rgba(255,255,255,.9) 40%,rgba(255,255,255,.3) 66%,rgba(255,255,255,0) 86%);
}
.hp-hero .hp-wrap{position:relative;z-index:2}
.hp-hero-grid{display:grid;grid-template-columns:1.05fr .95fr;gap:40px;align-items:center;padding:78px 0}
.hp-hero-copy h1{font-size:clamp(2.1rem,4.6vw,3.35rem);line-height:1.12;margin-bottom:18px;text-transform:uppercase;letter-spacing:-.01em}
.hp-hero-copy h1 span{display:block;color:var(--hp-blue)}
.hp-hero-copy .hp-lead{font-size:1.08rem;color:var(--hp-navy);max-width:470px;margin-bottom:12px}
.hp-hero-copy .hp-sub{color:var(--hp-muted);max-width:470px}
.hp-hero-actions{display:flex;flex-wrap:wrap;gap:14px;margin-top:26px}
.hp-hero-points{display:flex;flex-wrap:wrap;gap:14px 26px;margin-top:30px;padding:0;list-style:none}
.hp-hero-points li{display:flex;align-items:center;gap:9px;font-weight:600;font-size:.9rem;color:var(--hp-navy);font-family:var(--hp-font-head)}
.hp-hero-points svg{width:20px;height:20px;color:var(--hp-blue);flex:none}
.hp-hero-media{position:relative}
.hp-hero-media img{border-radius:18px;box-shadow:var(--hp-shadow-lg);width:100%}
.hp-hero-price{
  position:absolute;left:-14px;bottom:-18px;background:#fff;border:1px solid var(--hp-border);
  border-radius:var(--hp-radius);box-shadow:var(--hp-shadow-lg);padding:14px 20px;
}
.hp-hero-price strong{display:block;font-family:var(--hp-font-head);color:var(--hp-blue);font-size:1.5rem;line-height:1.1}
.hp-hero-price span{font-size:.8rem;color:var(--hp-muted)}

/* ==========================================================================
   Trust bar + footer
   ========================================================================== */
.hp-trustbar{background:var(--hp-ice-2);border-top:1px solid #dceaf8}
.hp-trustbar .hp-wrap{display:grid;grid-template-columns:repeat(4,1fr);gap:26px;padding-top:30px;padding-bottom:30px}
.hp-trust{display:flex;gap:14px;align-items:flex-start}
.hp-trust svg{width:34px;height:34px;color:var(--hp-blue);flex:none}
.hp-trust h4{font-size:.92rem;margin:0 0 4px;color:var(--hp-blue)}
.hp-trust p{font-size:.85rem;color:var(--hp-muted);margin:0;line-height:1.5}

.hp-footer{background:var(--hp-navy);color:#dceaf8;padding:56px 0 0}
.hp-footer a{color:#dceaf8}
.hp-footer a:hover{color:#fff}
.hp-footer-grid{display:grid;grid-template-columns:1.5fr 1fr 1.4fr 1.2fr;gap:36px}
.hp-footer h4{color:#fff;font-size:1rem;margin-bottom:16px;font-family:var(--hp-font-head)}
.hp-footer ul{list-style:none;margin:0;padding:0}
.hp-footer li{margin-bottom:9px;font-size:.92rem}
.hp-footer p{font-size:.92rem;line-height:1.6}
.hp-footer .hp-brand-name{color:#fff}
.hp-footer .hp-brand-mark{color:#fff}
.hp-footer .hp-brand-tag{color:#9ecbf0}
.hp-footer-contact li{display:flex;gap:11px;align-items:flex-start}
.hp-footer-contact svg{width:17px;height:17px;color:#7fc4f0;flex:none;margin-top:4px}
.hp-social{display:flex;gap:10px;margin-top:18px}
.hp-social a{
  width:38px;height:38px;border-radius:50%;background:rgba(255,255,255,.12);
  display:flex;align-items:center;justify-content:center;color:#fff;
}
.hp-social a:hover{background:var(--hp-sky)}
.hp-social svg{width:19px;height:19px}
.hp-pay{display:flex;flex-wrap:wrap;gap:12px}
.hp-pay-card{
  background:#fff;border-radius:8px;padding:11px 15px;display:flex;align-items:center;gap:10px;
  color:var(--hp-navy);font-size:.82rem;line-height:1.25;font-weight:600;font-family:var(--hp-font-head);
  min-width:150px;
}
.hp-pay-card svg{width:30px;height:30px;flex:none}
.hp-pay-card small{display:block;font-weight:500;color:var(--hp-muted);font-size:.72rem}
.hp-footer-bottom{
  border-top:1px solid rgba(255,255,255,.14);margin-top:44px;padding:18px 0;
  display:flex;flex-wrap:wrap;gap:10px;justify-content:space-between;font-size:.85rem;
}

/* ==========================================================================
   Steps / process rows
   ========================================================================== */
.hp-steps{display:grid;grid-template-columns:repeat(5,1fr);gap:10px;position:relative}
.hp-steps--6{grid-template-columns:repeat(6,1fr)}
.hp-step{text-align:center;position:relative;padding:0 6px}
.hp-step-ico{position:relative;width:88px;height:88px;margin:0 auto 16px;border-radius:50%;background:var(--hp-ice-2);display:flex;align-items:center;justify-content:center;color:var(--hp-blue)}
.hp-step-ico svg{width:40px;height:40px}
.hp-step-num{
  position:absolute;top:-6px;left:50%;transform:translateX(-50%);
  width:28px;height:28px;border-radius:50%;background:var(--hp-blue);color:#fff;
  font-family:var(--hp-font-head);font-size:.82rem;font-weight:600;
  display:flex;align-items:center;justify-content:center;border:3px solid #fff;
}
.hp-step h3{font-size:.95rem;color:var(--hp-blue);text-transform:uppercase;letter-spacing:.02em;margin-bottom:8px}
.hp-step p{font-size:.86rem;color:var(--hp-muted);margin:0;line-height:1.55}
.hp-step:not(:last-child)::after{
  content:"";position:absolute;top:44px;right:-14px;width:28px;height:0;
  border-top:2px dotted #9dc4e6;
}

/* Purify chain (Our Water) */
.hp-chain{display:grid;grid-template-columns:repeat(6,1fr);gap:14px}
.hp-chain-item{background:#fff;border:1px solid var(--hp-border);border-radius:var(--hp-radius);padding:20px 14px;text-align:center;position:relative}
.hp-chain-item .hp-ico{margin:0 auto 14px}
.hp-chain-item h3{font-size:.92rem;margin-bottom:8px;display:flex;align-items:center;justify-content:center;gap:7px;flex-wrap:wrap;color:var(--hp-navy)}
.hp-chain-item h3 i{
  font-style:normal;width:22px;height:22px;border-radius:50%;background:var(--hp-blue);color:#fff;
  font-size:.72rem;display:inline-flex;align-items:center;justify-content:center;font-family:var(--hp-font-head);
}
.hp-chain-item p{font-size:.82rem;color:var(--hp-muted);margin:0;line-height:1.5}

/* ==========================================================================
   Feature / value cards
   ========================================================================== */
.hp-feature{text-align:center;padding:8px 14px}
.hp-feature .hp-ico--plain{margin:0 auto 14px}
.hp-feature h3{font-size:1rem;margin-bottom:8px}
.hp-feature p{font-size:.88rem;color:var(--hp-muted);margin:0;line-height:1.55}
.hp-divided{display:grid;grid-template-columns:repeat(5,1fr);gap:0}
.hp-divided>*+*{border-left:1px solid var(--hp-border)}

.hp-checklist{list-style:none;margin:0;padding:0}
.hp-checklist li{display:flex;gap:12px;margin-bottom:16px;align-items:flex-start}
.hp-checklist svg{width:22px;height:22px;color:var(--hp-blue);flex:none;margin-top:2px}
.hp-checklist strong{display:block;font-family:var(--hp-font-head);color:var(--hp-blue);font-size:.95rem;margin-bottom:2px}
.hp-checklist span{font-size:.88rem;color:var(--hp-muted);line-height:1.5}

.hp-split{display:grid;grid-template-columns:1fr 1fr;gap:40px;align-items:center}
.hp-split-3{display:grid;grid-template-columns:1fr 1.05fr 1fr;gap:34px;align-items:center}
.hp-split img{border-radius:var(--hp-radius)}

/* Commitment band */
.hp-band{background:var(--hp-blue);color:#fff;border-radius:var(--hp-radius);padding:34px;display:grid;grid-template-columns:1.5fr repeat(4,1fr);gap:26px;align-items:flex-start}
.hp-band h3,.hp-band h4{color:#fff}
.hp-band p{color:#d6e8fb;font-size:.87rem;margin:0;line-height:1.55}
.hp-band-lead{display:flex;gap:18px;align-items:flex-start;padding-right:26px;border-right:1px solid rgba(255,255,255,.22)}
.hp-band-lead svg{width:56px;height:56px;flex:none}
.hp-band-item{text-align:center}
.hp-band-item svg{width:34px;height:34px;margin:0 auto 12px;display:block}
.hp-band-item h4{font-size:.86rem;letter-spacing:.03em;text-transform:uppercase;margin-bottom:8px}

/* Callout strip */
.hp-callout{
  background:var(--hp-ice-2);border-radius:var(--hp-radius);padding:26px 30px;
  display:flex;flex-wrap:wrap;gap:20px;align-items:center;justify-content:space-between;
}
.hp-callout h3{margin-bottom:4px}
.hp-callout p{margin:0;color:var(--hp-muted)}
.hp-callout-media{display:flex;align-items:center;gap:18px}
.hp-callout-media svg{width:50px;height:50px;color:var(--hp-blue);flex:none}

/* Help card */
.hp-help{background:var(--hp-ice);border-radius:var(--hp-radius);padding:26px 30px;display:flex;flex-wrap:wrap;gap:22px;align-items:center;justify-content:space-between}
.hp-help-left{display:flex;gap:18px;align-items:center}
.hp-help .hp-ico{width:70px;height:70px;background:#fff;border:1px solid var(--hp-border)}

/* ==========================================================================
   Order flow (5-step wizard)
   ========================================================================== */
.hp-progress{display:flex;align-items:flex-start;justify-content:space-between;max-width:1000px;margin:0 auto 40px;padding:0 6px}
.hp-progress-step{display:flex;flex-direction:column;align-items:center;text-align:center;flex:none;width:120px}
.hp-progress-line{flex:1 1 auto;height:2px;background:var(--hp-border);margin:19px 4px 0;min-width:20px}
.hp-progress-line.is-done{background:var(--hp-blue)}
.hp-progress-dot{
  width:40px;height:40px;border-radius:50%;border:2px solid var(--hp-border);background:#fff;
  color:var(--hp-muted);font-family:var(--hp-font-head);font-weight:600;
  display:flex;align-items:center;justify-content:center;margin-bottom:10px;
}
.hp-progress-dot svg{width:20px;height:20px}
.hp-progress-label{font-size:.8rem;font-family:var(--hp-font-head);font-weight:500;color:var(--hp-muted);line-height:1.35}
.hp-progress-step.is-active .hp-progress-dot{border-color:var(--hp-blue);background:var(--hp-blue);color:#fff}
.hp-progress-step.is-active .hp-progress-label{color:var(--hp-blue);font-weight:600}
.hp-progress-step.is-done .hp-progress-dot{border-color:var(--hp-blue);background:var(--hp-blue);color:#fff}
.hp-progress-step.is-done .hp-progress-label{color:var(--hp-blue);font-weight:600}

.hp-order-layout{display:grid;grid-template-columns:1.75fr 1fr;gap:26px;align-items:start}
.hp-order-panel{background:#fff;border:1px solid var(--hp-border);border-radius:var(--hp-radius);box-shadow:var(--hp-shadow);padding:28px}
.hp-order-panel h2{font-size:1.32rem;margin-bottom:6px}
.hp-order-panel .hp-panel-sub{color:var(--hp-muted);margin-bottom:22px;font-size:.94rem}
.hp-step-pane{display:none}
.hp-step-pane.is-active{display:block}

.hp-product-box{border:1px solid var(--hp-border);border-radius:var(--hp-radius);padding:22px}
.hp-product-top{display:grid;grid-template-columns:230px 1fr;gap:24px;align-items:start}
.hp-product-top img{border-radius:10px}
.hp-product-top h3{font-size:1.3rem;color:var(--hp-blue);margin-bottom:8px}
.hp-product-top p{color:var(--hp-muted);font-size:.92rem}
.hp-product-feats{list-style:none;margin:14px 0 0;padding:0}
.hp-product-feats li{display:flex;align-items:center;gap:10px;font-size:.9rem;margin-bottom:9px;color:var(--hp-text)}
.hp-product-feats svg{width:19px;height:19px;color:var(--hp-blue);flex:none}
.hp-price-row{display:flex;align-items:center;justify-content:space-between;border-top:1px solid var(--hp-border);margin-top:20px;padding-top:16px}
.hp-price-row span{font-weight:600;font-family:var(--hp-font-head);color:var(--hp-navy)}
.hp-price-row strong{font-family:var(--hp-font-head);font-size:1.35rem;color:var(--hp-blue)}
.hp-qty-row{display:flex;flex-wrap:wrap;gap:16px;align-items:center;justify-content:space-between;border-top:1px solid var(--hp-border);margin-top:16px;padding-top:16px}
.hp-qty-label{font-weight:600;font-family:var(--hp-font-head);color:var(--hp-navy);width:100%}
.hp-qty{display:flex;align-items:center;border:1px solid var(--hp-border);border-radius:8px;overflow:hidden}
.hp-qty button{width:44px;height:48px;border:0;background:#fff;color:var(--hp-blue);font-size:1.3rem;cursor:pointer}
.hp-qty button:hover{background:var(--hp-ice)}
.hp-qty input{width:88px;height:48px;border:0;border-left:1px solid var(--hp-border);border-right:1px solid var(--hp-border);text-align:center;font-size:1rem;font-family:var(--hp-font-head);font-weight:600;color:var(--hp-navy)}
.hp-qty input::-webkit-outer-spin-button,.hp-qty input::-webkit-inner-spin-button{-webkit-appearance:none;margin:0}
.hp-qty input[type=number]{-moz-appearance:textfield}
.hp-carton-note{display:inline-flex;align-items:center;gap:10px;background:var(--hp-ice-2);border-radius:8px;padding:12px 18px;font-size:.88rem;color:var(--hp-navy);font-weight:600;font-family:var(--hp-font-head)}
.hp-carton-note svg{width:20px;height:20px;color:var(--hp-blue)}
.hp-inline-note{display:flex;gap:10px;align-items:flex-start;background:var(--hp-ice);border-radius:8px;padding:12px 16px;font-size:.87rem;color:var(--hp-muted);margin-top:18px}
.hp-inline-note svg{width:18px;height:18px;color:var(--hp-blue);flex:none;margin-top:3px}

/* choice cards (pickup / delivery / payment) */
.hp-choices{display:grid;grid-template-columns:1fr 1fr;gap:20px}
.hp-choice{
  position:relative;border:1px solid var(--hp-border);border-radius:var(--hp-radius);
  padding:22px;cursor:pointer;display:block;transition:border-color .18s ease,box-shadow .18s ease;
}
.hp-choice:hover{border-color:var(--hp-sky)}
.hp-choice input{position:absolute;opacity:0;pointer-events:none}
.hp-choice-head{display:flex;gap:16px;align-items:flex-start}
.hp-choice-radio{
  width:20px;height:20px;border-radius:50%;border:2px solid var(--hp-border);flex:none;margin-top:4px;
  display:flex;align-items:center;justify-content:center;
}
.hp-choice-radio::after{content:"";width:10px;height:10px;border-radius:50%;background:var(--hp-blue);opacity:0;transition:opacity .15s}
.hp-choice h3{font-size:1.05rem;color:var(--hp-blue);margin-bottom:4px}
.hp-choice p{font-size:.88rem;color:var(--hp-muted);margin:0}
.hp-choice-list{list-style:none;margin:16px 0 0;padding:0}
.hp-choice-list li{display:flex;gap:10px;align-items:flex-start;font-size:.85rem;color:var(--hp-muted);margin-bottom:9px}
.hp-choice-list svg{width:17px;height:17px;color:var(--hp-blue);flex:none;margin-top:3px}
.hp-choice.is-selected{border-color:var(--hp-blue);box-shadow:0 0 0 1px var(--hp-blue) inset}
.hp-choice.is-selected .hp-choice-radio{border-color:var(--hp-blue)}
.hp-choice.is-selected .hp-choice-radio::after{opacity:1}
.hp-choice-badge{position:absolute;top:16px;right:16px;background:var(--hp-ice-2);color:var(--hp-blue);font-size:.7rem;font-weight:700;font-family:var(--hp-font-head);padding:5px 10px;border-radius:99px;letter-spacing:.04em;text-transform:uppercase}
.hp-choice.is-locked{cursor:not-allowed;opacity:.75}

/* forms */
.hp-field{margin-bottom:18px}
.hp-field label,.hp-label{display:block;font-family:var(--hp-font-head);font-weight:600;font-size:.87rem;color:var(--hp-navy);margin-bottom:7px}
.hp-req{color:var(--hp-red)}
.hp-input,.hp-select,.hp-textarea,
input[type=text],input[type=email],input[type=tel],input[type=url],input[type=number],input[type=date],input[type=time],input[type=search],input[type=password],select,textarea{
  width:100%;padding:13px 15px;border:1px solid var(--hp-border);border-radius:8px;
  font-family:var(--hp-font-body);font-size:.95rem;color:var(--hp-text);background:#fff;
}
textarea{min-height:120px;resize:vertical}
select{appearance:none;background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230057B8' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right 14px center;background-size:18px;padding-right:44px}
.hp-input:focus,.hp-select:focus,.hp-textarea:focus,input:focus,select:focus,textarea:focus{border-color:var(--hp-blue);outline:none;box-shadow:0 0 0 3px rgba(0,87,184,.12)}
.hp-input::placeholder,textarea::placeholder{color:#9aabbd}
.hp-field-row{display:grid;grid-template-columns:1fr 1fr;gap:18px}
.hp-help-text{font-size:.8rem;color:var(--hp-muted);margin-top:6px}
.hp-error{color:var(--hp-red);font-size:.82rem;margin-top:6px;display:none}
.hp-field.has-error .hp-input,.hp-field.has-error select,.hp-field.has-error textarea{border-color:var(--hp-red)}
.hp-field.has-error .hp-error{display:block}
.hp-checkbox{display:flex;gap:10px;align-items:flex-start;font-size:.88rem;color:var(--hp-muted)}
.hp-checkbox input{margin-top:4px;width:16px;height:16px;flex:none}

.hp-step-actions{display:flex;flex-wrap:wrap;gap:14px;margin-top:26px}
.hp-step-actions .hp-btn--primary{flex:1 1 320px}
.hp-step-actions .hp-btn--ghost{flex:0 0 auto;min-width:150px}

/* order summary sidebar */
.hp-summary{position:sticky;top:110px;display:flex;flex-direction:column;gap:18px}
.hp-summary-card{background:#fff;border:1px solid var(--hp-border);border-radius:var(--hp-radius);box-shadow:var(--hp-shadow);padding:24px}
.hp-summary-card h3{font-size:1.12rem;margin-bottom:18px}
.hp-summary-product{display:flex;gap:14px;align-items:center;padding-bottom:18px;border-bottom:1px solid var(--hp-border)}
.hp-summary-product img{width:64px;height:64px;object-fit:cover;border-radius:8px;flex:none}
.hp-summary-product strong{display:block;font-family:var(--hp-font-head);color:var(--hp-navy);font-size:.98rem;line-height:1.3}
.hp-summary-product span{font-size:.85rem;color:var(--hp-muted)}
.hp-summary-line{display:flex;justify-content:space-between;gap:14px;padding:11px 0;font-size:.92rem;border-bottom:1px solid var(--hp-border-soft)}
.hp-summary-line span:first-child{color:var(--hp-muted)}
.hp-summary-line span:last-child{font-weight:600;color:var(--hp-navy);text-align:right}
.hp-summary-total{display:flex;justify-content:space-between;align-items:center;gap:14px;background:var(--hp-ice);margin:16px -24px -24px;padding:18px 24px;border-radius:0 0 var(--hp-radius) var(--hp-radius)}
.hp-summary-total span{font-family:var(--hp-font-head);font-weight:600;color:var(--hp-navy);font-size:1.02rem}
.hp-summary-total strong{font-family:var(--hp-font-head);font-size:1.35rem;color:var(--hp-blue)}
.hp-aside-card{display:flex;gap:14px;background:var(--hp-ice);border-radius:var(--hp-radius);padding:18px 20px;align-items:flex-start}
.hp-aside-card svg{width:26px;height:26px;color:var(--hp-blue);flex:none}
.hp-aside-card h4{font-size:.9rem;margin:0 0 4px;color:var(--hp-blue)}
.hp-aside-card p{font-size:.82rem;color:var(--hp-muted);margin:0;line-height:1.5}
.hp-aside-card a{font-weight:600}

/* review step */
.hp-review-block{border:1px solid var(--hp-border);border-radius:var(--hp-radius);padding:20px;margin-bottom:18px}
.hp-review-block h3{font-size:1rem;display:flex;justify-content:space-between;align-items:center;gap:10px;margin-bottom:14px}
.hp-review-edit{font-size:.82rem;font-weight:600;font-family:var(--hp-font-head);background:none;border:0;color:var(--hp-blue);cursor:pointer;padding:0}
.hp-review-list{display:grid;grid-template-columns:1fr 1fr;gap:10px 24px;margin:0;font-size:.9rem}
.hp-review-list div{display:flex;justify-content:space-between;gap:14px;border-bottom:1px dashed var(--hp-border-soft);padding-bottom:8px}
.hp-review-list dt,.hp-review-list b{color:var(--hp-muted);font-weight:500}
.hp-review-list dd,.hp-review-list strong{margin:0;color:var(--hp-navy);font-weight:600;text-align:right}

/* receipt */
.hp-receipt{max-width:720px;margin:0 auto;background:#fff;border:1px solid var(--hp-border);border-radius:var(--hp-radius);box-shadow:var(--hp-shadow);overflow:hidden}
.hp-receipt-head{background:var(--hp-blue);color:#fff;padding:28px;text-align:center}
.hp-receipt-head svg{width:52px;height:52px;margin-bottom:12px}
.hp-receipt-head h2{color:#fff;margin-bottom:6px}
.hp-receipt-head p{margin:0;color:#d6e8fb}
.hp-receipt-body{padding:28px}
.hp-receipt-num{background:var(--hp-ice);border-radius:10px;padding:16px 20px;text-align:center;margin-bottom:24px}
.hp-receipt-num span{display:block;font-size:.82rem;color:var(--hp-muted)}
.hp-receipt-num strong{font-family:var(--hp-font-head);font-size:1.55rem;color:var(--hp-blue);letter-spacing:.03em}
.hp-receipt-table{width:100%;border-collapse:collapse;margin-bottom:22px}
.hp-receipt-table th,.hp-receipt-table td{text-align:left;padding:11px 0;border-bottom:1px solid var(--hp-border-soft);font-size:.92rem}
.hp-receipt-table th{color:var(--hp-muted);font-weight:500;width:45%}
.hp-receipt-table td{color:var(--hp-navy);font-weight:600;text-align:right}
.hp-receipt-actions{display:flex;flex-wrap:wrap;gap:12px}
.hp-receipt-actions .hp-btn{flex:1 1 200px}
@media print{
  .hp-header,.hp-topbar,.hp-footer,.hp-trustbar,.hp-receipt-actions,.hp-page-hero{display:none!important}
  .hp-receipt{border:0;box-shadow:none}
}

/* ==========================================================================
   Track order
   ========================================================================== */
.hp-track-card{background:#fff;border:1px solid var(--hp-border);border-radius:var(--hp-radius);box-shadow:var(--hp-shadow-lg);padding:24px;max-width:470px}
.hp-track-card h3{font-size:1.05rem;margin-bottom:14px}
.hp-track-actions{display:flex;flex-wrap:wrap;gap:14px;align-items:center;justify-content:space-between;margin-top:16px}
.hp-track-hint{display:inline-flex;gap:8px;align-items:center;font-size:.83rem;color:var(--hp-muted)}
.hp-track-hint svg{width:17px;height:17px;color:var(--hp-blue)}

.hp-status-grid{display:grid;grid-template-columns:repeat(6,1fr);gap:14px}
.hp-status-card{background:#fff;border:1px solid var(--hp-border);border-radius:var(--hp-radius);padding:20px 14px;text-align:center}
.hp-status-card svg{width:34px;height:34px;margin:0 auto 12px;display:block}
.hp-status-card h4{font-size:.92rem;margin-bottom:8px}
.hp-status-card p{font-size:.8rem;color:var(--hp-muted);margin:0;line-height:1.5}
.hp-c-amber{color:var(--hp-amber)}.hp-c-blue{color:var(--hp-blue)}.hp-c-green{color:var(--hp-green)}.hp-c-red{color:var(--hp-red)}
.hp-status-card.hp-s-pending h4{color:var(--hp-amber)}
.hp-status-card.hp-s-green h4{color:var(--hp-green)}
.hp-status-card.hp-s-red h4{color:var(--hp-red)}

.hp-pill{display:inline-flex;align-items:center;gap:6px;padding:5px 12px;border-radius:99px;font-size:.78rem;font-weight:600;font-family:var(--hp-font-head);border:1px solid}
.hp-pill--blue{background:#eaf3fd;border-color:#bcd9f5;color:var(--hp-blue)}
.hp-pill--green{background:#e8f6ee;border-color:#b9e3c9;color:var(--hp-green)}
.hp-pill--amber{background:#fdf5e2;border-color:#f2dfae;color:#a97800}
.hp-pill--red{background:#fdeceb;border-color:#f5c6c3;color:var(--hp-red)}
.hp-pill--grey{background:#f2f5f8;border-color:#dde5ed;color:var(--hp-muted)}

.hp-table-wrap{overflow-x:auto}
.hp-table{width:100%;border-collapse:collapse;font-size:.9rem;min-width:720px}
.hp-table th{
  text-align:left;padding:12px 14px;font-family:var(--hp-font-head);font-size:.8rem;
  color:var(--hp-navy);border-bottom:1px solid var(--hp-border);white-space:nowrap;
}
.hp-table td{padding:14px;border-bottom:1px solid var(--hp-border-soft);color:var(--hp-text);vertical-align:middle}
.hp-table tr:hover td{background:var(--hp-ice)}
.hp-table a{font-weight:600}

.hp-timeline{list-style:none;margin:26px 0 0;padding:0}
.hp-timeline li{position:relative;padding:0 0 22px 34px;border-left:2px solid var(--hp-border);margin-left:9px}
.hp-timeline li:last-child{border-left-color:transparent;padding-bottom:0}
.hp-timeline li::before{
  content:"";position:absolute;left:-9px;top:2px;width:16px;height:16px;border-radius:50%;
  background:#fff;border:3px solid var(--hp-border);
}
.hp-timeline li.is-done::before{border-color:var(--hp-blue);background:var(--hp-blue)}
.hp-timeline li.is-done{border-left-color:var(--hp-blue)}
.hp-timeline strong{display:block;font-family:var(--hp-font-head);color:var(--hp-navy);font-size:.95rem}
.hp-timeline span{font-size:.83rem;color:var(--hp-muted)}

.hp-notice{border-radius:var(--hp-radius);padding:16px 20px;font-size:.92rem;display:flex;gap:12px;align-items:flex-start;margin-bottom:20px}
.hp-notice svg{width:20px;height:20px;flex:none;margin-top:3px}
.hp-notice--info{background:var(--hp-ice-2);color:var(--hp-navy)}
.hp-notice--error{background:#fdeceb;color:#8f231c}
.hp-notice--success{background:#e8f6ee;color:#12633c}

/* ==========================================================================
   Contact
   ========================================================================== */
.hp-contact-grid{display:grid;grid-template-columns:1.25fr 1fr;gap:26px;align-items:start}
.hp-contact-list{list-style:none;margin:0;padding:0}
.hp-contact-list li{display:flex;gap:16px;padding:16px 0;border-bottom:1px solid var(--hp-border-soft);align-items:flex-start}
.hp-contact-list li:last-child{border-bottom:0}
.hp-contact-list .hp-ico{width:48px;height:48px}
.hp-contact-list .hp-ico svg{width:22px;height:22px}
.hp-contact-list h4{font-size:.95rem;margin:0 0 3px;color:var(--hp-blue)}
.hp-contact-list p{margin:0;font-size:.9rem;color:var(--hp-muted);line-height:1.55}
.hp-panel-icon{display:flex;gap:14px;align-items:flex-start;margin-bottom:22px}
.hp-panel-icon .hp-ico{width:46px;height:46px}
.hp-panel-icon h2{margin-bottom:4px;font-size:1.2rem}
.hp-panel-icon p{margin:0;color:var(--hp-muted);font-size:.9rem}

.hp-area-list{list-style:none;margin:0 0 18px;padding:0}
.hp-area-list li{display:flex;gap:10px;align-items:center;padding:7px 0;font-size:.93rem}
.hp-area-list svg{width:19px;height:19px;color:var(--hp-blue);flex:none}
.hp-map{border-radius:var(--hp-radius);overflow:hidden;border:1px solid var(--hp-border);min-height:330px;background:var(--hp-ice-2)}
.hp-map iframe{width:100%;height:100%;min-height:330px;border:0;display:block}

.hp-accordion{border:1px solid var(--hp-border);border-radius:var(--hp-radius);overflow:hidden}
.hp-acc-item+.hp-acc-item{border-top:1px solid var(--hp-border-soft)}
.hp-acc-btn{
  width:100%;background:#fff;border:0;text-align:left;padding:17px 20px;cursor:pointer;
  display:flex;justify-content:space-between;gap:16px;align-items:center;
  font-family:var(--hp-font-head);font-weight:600;font-size:.95rem;color:var(--hp-navy);
}
.hp-acc-btn:hover{background:var(--hp-ice)}
.hp-acc-btn span{font-size:1.4rem;color:var(--hp-blue);line-height:1;flex:none}
.hp-acc-panel{display:none;padding:0 20px 18px;font-size:.92rem;color:var(--hp-muted)}
.hp-acc-item.is-open .hp-acc-panel{display:block}
.hp-acc-item.is-open .hp-acc-btn span{transform:rotate(45deg)}

.hp-reach{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;text-align:center}
.hp-reach-item svg{width:40px;height:40px;margin:0 auto 12px;display:block}
.hp-reach-item h4{font-size:.95rem;margin-bottom:6px}
.hp-reach-item p{font-size:.85rem;color:var(--hp-muted);margin:0 0 12px}

/* Contact Form 7 */
.wpcf7-form p{margin:0}
.wpcf7 .hp-field label{display:block}
.wpcf7-not-valid-tip{color:var(--hp-red);font-size:.82rem;margin-top:6px}
.wpcf7-response-output{
  margin:18px 0 0!important;border-radius:8px!important;border:1px solid var(--hp-border)!important;
  padding:14px 18px!important;font-size:.9rem;background:var(--hp-ice);
}
.wpcf7 form.invalid .wpcf7-response-output,.wpcf7 form.unaccepted .wpcf7-response-output{border-color:#f5c6c3!important;background:#fdeceb;color:#8f231c}
.wpcf7 form.sent .wpcf7-response-output{border-color:#b9e3c9!important;background:#e8f6ee;color:#12633c}
.wpcf7-spinner{margin:0 0 0 10px}
.wpcf7-submit{width:auto}

/* ==========================================================================
   Blog / generic pages
   ========================================================================== */
.hp-entry{max-width:820px;margin:0 auto}
.hp-entry img{border-radius:var(--hp-radius)}
.hp-entry h2,.hp-entry h3{margin-top:1.6em}
.hp-entry blockquote{border-left:4px solid var(--hp-blue);margin:1.5em 0;padding:6px 0 6px 20px;color:var(--hp-muted);font-style:italic}
.hp-entry table{width:100%;border-collapse:collapse}
.hp-entry th,.hp-entry td{border:1px solid var(--hp-border);padding:10px 12px;text-align:left}
.hp-post-card{background:#fff;border:1px solid var(--hp-border);border-radius:var(--hp-radius);overflow:hidden;box-shadow:var(--hp-shadow)}
.hp-post-card .hp-post-body{padding:22px}
.hp-post-card h3{font-size:1.08rem;margin-bottom:8px}
.hp-post-meta{font-size:.82rem;color:var(--hp-muted);margin-bottom:10px}
.hp-pagination{display:flex;gap:8px;justify-content:center;margin-top:36px;flex-wrap:wrap}
.hp-pagination .page-numbers{
  display:inline-flex;min-width:42px;height:42px;align-items:center;justify-content:center;
  border:1px solid var(--hp-border);border-radius:8px;color:var(--hp-navy);font-weight:600;padding:0 12px;
}
.hp-pagination .current,.hp-pagination .page-numbers:hover{background:var(--hp-blue);color:#fff;border-color:var(--hp-blue)}
.hp-404{text-align:center;padding:90px 0}
.hp-404 h1{font-size:4rem;color:var(--hp-blue)}

/* WooCommerce lightweight alignment */
.woocommerce .button,.woocommerce a.button,.woocommerce button.button,.woocommerce input.button,
.woocommerce #respond input#submit,.woocommerce .button.alt{
  background:var(--hp-blue)!important;color:#fff!important;border-radius:8px!important;
  font-family:var(--hp-font-head);font-weight:600;padding:13px 24px!important;
}
.woocommerce .button:hover,.woocommerce a.button:hover,.woocommerce button.button:hover{background:var(--hp-blue-dark)!important}
.woocommerce-message,.woocommerce-info,.woocommerce-error{border-top-color:var(--hp-blue)!important;border-radius:8px}
.woocommerce-message::before,.woocommerce-info::before{color:var(--hp-blue)!important}
.woocommerce table.shop_table{border-radius:var(--hp-radius);border-color:var(--hp-border)}

/* Utilities */
.hp-mt-0{margin-top:0}.hp-mt-16{margin-top:16px}.hp-mt-24{margin-top:24px}.hp-mt-32{margin-top:32px}.hp-mt-40{margin-top:40px}
.hp-mb-0{margin-bottom:0}.hp-mb-16{margin-bottom:16px}.hp-mb-24{margin-bottom:24px}.hp-mb-32{margin-bottom:32px}.hp-mb-40{margin-bottom:40px}
.hp-muted{color:var(--hp-muted)}
.hp-blue{color:var(--hp-blue)}
.hp-hide{display:none!important}
.hp-loading{opacity:.6;pointer-events:none}

@media (prefers-reduced-motion:reduce){
  *{animation-duration:.001ms!important;transition-duration:.001ms!important}
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width:1080px){
  :root{--hp-section:64px}
  .hp-nav{display:none}
  .hp-burger{display:inline-block}
  .hp-header-cta{display:none}
  .hp-order-layout{grid-template-columns:1fr}
  .hp-summary{position:static}
  .hp-band{grid-template-columns:1fr 1fr;gap:22px}
  .hp-band-lead{grid-column:1/-1;border-right:0;border-bottom:1px solid rgba(255,255,255,.22);padding:0 0 20px}
  .hp-chain{grid-template-columns:repeat(3,1fr)}
  .hp-status-grid{grid-template-columns:repeat(3,1fr)}
  .hp-divided{grid-template-columns:repeat(3,1fr)}
  .hp-divided>*+*{border-left:0}
  .hp-footer-grid{grid-template-columns:1fr 1fr}
  .hp-steps,.hp-steps--6{grid-template-columns:repeat(3,1fr);gap:26px 10px}
  .hp-step::after{display:none}
}
@media (max-width:900px){
  .hp-hero-grid{grid-template-columns:1fr;padding:44px 0;gap:28px}
  .hp-hero-media{order:-1;max-width:520px}
  .hp-hero::after{background:linear-gradient(180deg,rgba(255,255,255,.88) 0%,rgba(255,255,255,.94) 45%,#fff 100%)}
  .hp-page-hero::after{background:linear-gradient(180deg,rgba(255,255,255,.9) 20%,rgba(255,255,255,.96) 100%)}
  .hp-split,.hp-split-3,.hp-contact-grid,.hp-grid-3,.hp-grid-4,.hp-grid-5,.hp-grid-6{grid-template-columns:1fr 1fr}
  .hp-split-3 .hp-split-media{grid-column:1/-1;order:-1}
  .hp-trustbar .hp-wrap{grid-template-columns:1fr 1fr}
  .hp-reach{grid-template-columns:1fr}
  .hp-product-top{grid-template-columns:1fr}
  .hp-product-top img{max-width:230px}
  .hp-review-list{grid-template-columns:1fr}
}
@media (max-width:640px){
  :root{--hp-section:44px}
  body{font-size:15.5px}
  .hp-wrap{padding:0 16px}
  .hp-order-panel,.hp-card,.hp-summary-card{padding:20px}
  .hp-summary-total{margin:16px -20px -20px;padding:16px 20px}
  .hp-grid-2,.hp-grid-3,.hp-grid-4,.hp-grid-5,.hp-grid-6,.hp-split,.hp-split-3,.hp-choices,.hp-field-row,
  .hp-contact-grid,.hp-status-grid,.hp-chain,.hp-divided,.hp-footer-grid,.hp-band,.hp-steps,.hp-steps--6{grid-template-columns:1fr}
  .hp-trustbar .hp-wrap{grid-template-columns:1fr;gap:18px}
  .hp-band-lead{padding-bottom:18px}
  .hp-step{display:flex;gap:16px;text-align:left;align-items:flex-start}
  .hp-step-ico{width:62px;height:62px;margin:0}
  .hp-step-ico svg{width:28px;height:28px}
  .hp-progress{overflow-x:auto;justify-content:flex-start;padding-bottom:8px}
  .hp-progress-step{width:96px}
  .hp-progress-label{font-size:.72rem}
  .hp-hero-price{position:static;margin-top:14px;display:inline-block}
  .hp-step-actions .hp-btn{flex:1 1 100%}
  .hp-callout,.hp-help{padding:22px}
  .hp-footer{padding-top:40px}
  .hp-footer-bottom{justify-content:center;text-align:center}
}

/* ==========================================================================
   1.0.1 — layout corrections and home page rebuild
   ========================================================================== */

/* Navigation: tighter padding so seven items fit without crowding the CTA */
.hp-nav a{padding:10px 10px}
.hp-nav ul{gap:2px}
@media (max-width:1240px){
  .hp-nav a{padding:10px 8px;font-size:.9rem}
  .hp-header-inner{gap:14px}
}

/* Inner page hero: taller so the water image reads properly behind the copy */
.hp-page-hero .hp-wrap{padding-top:64px;padding-bottom:96px}
.hp-page-hero-bg{background-position:center right}

/* ---------- Home hero: single column over the photo ---------- */
.hp-hero .hp-wrap{position:relative;z-index:2}
.hp-hero .hp-hero-copy{max-width:560px;padding:88px 0}
.hp-hero-copy h1{text-transform:uppercase}
.hp-hero-copy h1 span{display:block}
.hp-hero-media,.hp-hero-price{display:none}
.hp-hero-points{gap:12px 22px;margin-top:24px}
.hp-hero-points li{font-size:.85rem;font-weight:500}
.hp-hero-points svg{width:17px;height:17px}

/* ---------- Ordering is simple ---------- */
.hp-simple-steps{display:grid;grid-template-columns:repeat(4,1fr);gap:20px}
.hp-simple-step{
  position:relative;background:#fff;border:1px solid var(--hp-border);border-radius:var(--hp-radius);
  padding:26px 20px 22px;text-align:center;box-shadow:var(--hp-shadow);
}
.hp-simple-num{
  position:absolute;top:14px;left:14px;width:26px;height:26px;border-radius:50%;
  background:var(--hp-blue);color:#fff;font-family:var(--hp-font-head);font-size:.78rem;font-weight:600;
  display:flex;align-items:center;justify-content:center;
}
.hp-simple-ico{
  width:62px;height:62px;border-radius:50%;background:var(--hp-blue);color:#fff;
  display:flex;align-items:center;justify-content:center;margin:0 auto 14px;
}
.hp-simple-ico svg{width:28px;height:28px}
.hp-simple-step h3{font-size:1rem;color:var(--hp-blue);margin-bottom:8px}
.hp-simple-step p{font-size:.85rem;color:var(--hp-muted);margin:0;line-height:1.55}

/* ---------- Four home panels ---------- */
.hp-home-panels{display:grid;grid-template-columns:repeat(4,1fr);gap:20px;align-items:stretch}
.hp-panel{
  background:#fff;border:1px solid var(--hp-border);border-radius:var(--hp-radius);
  box-shadow:var(--hp-shadow);padding:20px;display:flex;flex-direction:column;
}
.hp-panel-title{font-size:1rem;color:var(--hp-blue);text-align:center;margin-bottom:18px}
.hp-panel-intro{font-size:.85rem;color:var(--hp-muted);text-align:center;line-height:1.55}
.hp-panel-note{font-size:.78rem;color:var(--hp-muted);text-align:center;margin:14px 0 0}

.hp-panel-product{display:flex;flex-direction:column;align-items:center;gap:14px;text-align:center}
.hp-panel-product img{width:auto;max-height:180px;border-radius:10px}
.hp-panel-product h4{font-size:1rem;color:var(--hp-blue);margin:0 0 6px}
.hp-panel-product p{font-size:.84rem;color:var(--hp-muted);margin:0 0 10px;line-height:1.5}
.hp-panel-price strong{display:block;font-family:var(--hp-font-head);font-size:1.4rem;color:var(--hp-blue);line-height:1.1}
.hp-panel-price span{font-size:.78rem;color:var(--hp-muted)}
.hp-panel-buy{margin-top:auto;padding-top:18px;display:flex;flex-direction:column;align-items:center;gap:12px}
.hp-qty--sm button{width:36px;height:38px;font-size:1.1rem}
.hp-qty--sm input{width:58px;height:38px;font-size:.92rem}
.hp-panel-buy .hp-btn{width:100%}

.hp-why-grid{display:grid;gap:16px}
.hp-why-item{display:flex;gap:12px;align-items:flex-start}
.hp-why-item h4{font-size:.86rem;color:var(--hp-blue);margin:0 0 3px}
.hp-why-item p{font-size:.78rem;color:var(--hp-muted);margin:0;line-height:1.5}

.hp-mini-choice{border:1px solid var(--hp-border);border-radius:var(--hp-radius);padding:18px;text-align:center;margin-bottom:16px}
.hp-mini-choice:last-child{margin-bottom:0}
.hp-mini-choice .hp-ico{margin:0 auto 12px}
.hp-mini-choice h4{font-size:.88rem;letter-spacing:.05em;color:var(--hp-navy);margin:0 0 8px}
.hp-mini-choice p{font-size:.8rem;color:var(--hp-muted);margin:0 0 14px;line-height:1.5}
.hp-btn--sm{padding:10px 16px;font-size:.78rem;width:100%}

.hp-pay-row{display:flex;align-items:center;gap:12px;border:1px solid var(--hp-border);border-radius:10px;padding:12px 14px;margin-bottom:12px}
.hp-pay-row svg{width:34px;height:34px;flex:none}
.hp-pay-row strong{display:block;font-family:var(--hp-font-head);font-size:.86rem;color:var(--hp-navy);line-height:1.3}
.hp-pay-row span{font-size:.76rem;color:var(--hp-amber);font-weight:600}

/* ---------- Trust bar now carries five items ---------- */
.hp-trustbar .hp-wrap{grid-template-columns:repeat(5,1fr);gap:20px}
.hp-trustbar svg{width:28px;height:28px}

/* ---------- Our Water: "Tested. Trusted. Always." ---------- */
.hp-callout{align-items:center;gap:24px}
.hp-callout-media{flex:1 1 460px;align-items:flex-start}
.hp-callout-media svg{width:44px;height:44px;margin-top:4px}
.hp-callout .hp-pill{
  flex:none;white-space:nowrap;padding:10px 18px;font-size:.8rem;
  background:#fff;border-color:#bcd9f5;
}
.hp-callout .hp-pill svg{width:18px;height:18px}

/* ---------- How It Works: "Our commitment" band ---------- */
.hp-band{grid-template-columns:1.7fr repeat(4,1fr);gap:24px;align-items:stretch}
.hp-band-lead{align-items:flex-start;gap:14px;padding-right:24px}
.hp-band-lead svg{width:42px;height:42px}
.hp-band-lead h3{font-size:1.15rem;margin-bottom:8px;line-height:1.25}
.hp-band-lead p{font-size:.85rem}
.hp-band-item{text-align:left}
.hp-band-item svg{margin:0 0 10px;width:28px;height:28px}
.hp-band-item h4{font-size:.8rem;margin-bottom:6px}
.hp-band-item p{font-size:.82rem}

/* ---------- Contact ---------- */
.hp-help-text--icon{display:flex;align-items:center;gap:8px;margin-top:16px}
.hp-inline-icon{width:16px!important;height:16px!important;color:var(--hp-blue)}
.hp-map,.hp-map iframe{min-height:420px}
.hp-area-list{margin-bottom:22px}

.hp-reach{gap:24px;align-items:stretch}
.hp-reach-item{display:flex;flex-direction:column;align-items:center}
.hp-reach-item svg{width:30px;height:30px;margin-bottom:10px}
.hp-reach-item p{flex:1 1 auto}
.hp-reach-item .hp-btn{
  width:100%;padding:11px 12px;font-size:.75rem;letter-spacing:.02em;
  margin-top:auto;white-space:nowrap;
}

/* ==========================================================================
   Responsive corrections
   ========================================================================== */
@media (max-width:1080px){
  .hp-home-panels{grid-template-columns:repeat(2,1fr)}
  .hp-simple-steps{grid-template-columns:repeat(2,1fr)}
  .hp-trustbar .hp-wrap{grid-template-columns:repeat(2,1fr)}
  .hp-band{grid-template-columns:repeat(2,1fr)}
  .hp-band-lead{grid-column:1/-1;border-right:0;border-bottom:1px solid rgba(255,255,255,.22);padding:0 0 20px}
}

@media (max-width:900px){
  .hp-hero .hp-hero-copy{padding:56px 0;max-width:100%}
  .hp-page-hero .hp-wrap{padding-top:48px;padding-bottom:56px}
  .hp-callout{flex-direction:column;align-items:flex-start}
  .hp-callout-media{flex:1 1 auto}
  .hp-reach{grid-template-columns:repeat(3,1fr)}
}

@media (max-width:640px){
  /* Header */
  .hp-topbar{font-size:.76rem}
  .hp-topbar .hp-wrap{justify-content:center;text-align:center;gap:4px 14px}
  .hp-brand-name{font-size:1.25rem}
  .hp-brand-tag{font-size:.44rem}
  .hp-brand-mark{width:34px;height:40px}

  /* Hero */
  .hp-hero .hp-hero-copy{padding:40px 0}
  .hp-hero-copy h1{font-size:1.95rem;line-height:1.18}
  .hp-hero-copy .hp-lead{font-size:1rem}
  .hp-hero-actions{gap:10px}
  .hp-hero-actions .hp-btn{flex:1 1 100%}
  .hp-hero-points{gap:10px 16px}
  .hp-hero-points li{font-size:.8rem}

  /* Home sections */
  .hp-simple-steps,.hp-home-panels{grid-template-columns:1fr;gap:16px}
  .hp-panel{padding:18px}
  .hp-panel-product{flex-direction:row;text-align:left;align-items:flex-start}
  .hp-panel-product img{max-height:120px}
  .hp-mini-choice{padding:16px}

  /* Trust bar + footer */
  .hp-trustbar .hp-wrap{grid-template-columns:1fr;gap:16px}
  .hp-footer-grid{grid-template-columns:1fr;gap:28px}
  .hp-footer-bottom{flex-direction:column;align-items:center;gap:6px}
  .hp-pay-card{min-width:0;width:100%}

  /* Our Water / How It Works */
  .hp-chain{grid-template-columns:1fr}
  .hp-band{grid-template-columns:1fr;padding:24px}
  .hp-band-item{text-align:left}
  .hp-callout .hp-pill{white-space:normal;text-align:center}
  .hp-help{flex-direction:column;align-items:stretch}
  .hp-help .hp-btn{width:100%}

  /* Contact */
  .hp-reach{grid-template-columns:1fr;gap:20px}
  .hp-reach-item{border:1px solid var(--hp-border);border-radius:var(--hp-radius);padding:20px}
  .hp-map,.hp-map iframe{min-height:280px}
  .hp-contact-list .hp-ico{width:40px;height:40px}

  /* Order flow + tables */
  .hp-order-panel{padding:18px}
  .hp-track-card{max-width:100%}
  .hp-track-actions{flex-direction:column;align-items:stretch}
  .hp-track-actions .hp-btn{width:100%}
  .hp-receipt-actions .hp-btn{flex:1 1 100%}
  .hp-qty{width:100%;justify-content:space-between}
  .hp-qty input{flex:1 1 auto;width:auto}
  .hp-review-list div{flex-direction:column;gap:2px;align-items:flex-start}
  .hp-review-list strong{text-align:left}
}

@media (max-width:400px){
  .hp-hero-copy h1{font-size:1.7rem}
  .hp-panel-product{flex-direction:column;text-align:center;align-items:center}
}

/* ==========================================================================
   1.1.0 — brand artwork placements
   ========================================================================== */

/* Header logo artwork */
.hp-brand--image img{max-height:58px;width:auto}
@media (max-width:640px){.hp-brand--image img{max-height:42px}}

/* Shared figure treatment for the supplied photography */
.hp-figure{margin:0}
.hp-figure img{width:100%;border-radius:var(--hp-radius);box-shadow:var(--hp-shadow)}
.hp-figure figcaption{font-size:.78rem;color:var(--hp-muted);margin-top:10px;line-height:1.5}
.hp-figure--flush img{box-shadow:none;border:1px solid var(--hp-border)}
.hp-media-rounded{border-radius:var(--hp-radius);box-shadow:var(--hp-shadow)}

/* Contact — location block */
.hp-location{background:#fff;border:1px solid var(--hp-border);border-radius:var(--hp-radius);box-shadow:var(--hp-shadow);overflow:hidden}
.hp-location .hp-figure--flush img{border:0;border-radius:0;display:block}
.hp-location-body{padding:22px 24px}
.hp-location-body h2{font-size:1.15rem;margin-bottom:8px}
.hp-location-body p{margin-bottom:16px;font-size:.92rem}
.hp-location .hp-map{border:0;border-radius:0;border-top:1px solid var(--hp-border);min-height:300px}
.hp-location .hp-map iframe{min-height:300px}

@media (max-width:640px){
  .hp-location-body{padding:18px}
  .hp-location .hp-map,.hp-location .hp-map iframe{min-height:240px}
}

/* ==========================================================================
   Our Water — source section
   ========================================================================== */
.hp-source-media{position:relative}
.hp-source-media img{
  width:100%;aspect-ratio:16/10;object-fit:cover;
  border-radius:var(--hp-radius);box-shadow:var(--hp-shadow);
}
.hp-source-badge{
  position:absolute;right:20px;bottom:20px;max-width:290px;
  display:flex;gap:12px;align-items:flex-start;
  background:#fff;border-radius:var(--hp-radius);box-shadow:var(--hp-shadow-lg);
  padding:16px 18px;
}
.hp-source-badge svg{width:26px;height:26px;color:var(--hp-blue);flex:none}
.hp-source-badge h4{font-size:.95rem;margin:0 0 4px;color:var(--hp-blue)}
.hp-source-badge p{font-size:.83rem;color:var(--hp-muted);margin:0;line-height:1.45}

@media (max-width:900px){
  .hp-source-media img{aspect-ratio:16/9}
  .hp-source-badge{right:14px;bottom:14px;padding:13px 15px;max-width:250px}
}
@media (max-width:640px){
  .hp-source-badge{position:static;max-width:100%;margin-top:14px;box-shadow:var(--hp-shadow)}
}

/* Footer logo artwork — sits on a white chip so the blue lockup stays legible
   against the navy footer. */
.hp-footer-logo{
  display:inline-block;background:#fff;border-radius:10px;padding:12px 16px;
  line-height:0;margin-bottom:4px;
}
.hp-footer-logo img{max-width:230px;height:auto}
@media (max-width:640px){.hp-footer-logo img{max-width:200px}}

/* ==========================================================================
   1.2.0 — brand wordmark, unit pricing, trust bar
   ========================================================================== */

/* STEP 1 — wordmark uses Montserrat and the brand colours; the rest of the
   site keeps Poppins/Inter from the approved design guide. */
.hp-brand-name{font-family:var(--hp-font-brand);font-weight:700;color:var(--hp-brand-primary)}
.hp-brand-name em{font-style:normal;color:var(--hp-brand-accent)}
.hp-brand-tag{font-family:var(--hp-font-brand);font-weight:600;letter-spacing:2px;color:var(--hp-brand-tagline)}
.hp-brand--footer .hp-brand-name,.hp-brand--footer .hp-brand-name em{color:#fff}
.hp-brand--footer .hp-brand-name em{color:var(--hp-brand-accent)}
.hp-brand--footer .hp-brand-tag{color:#9ecbf0}
.hp-brand--footer .hp-brand-mark{color:#fff}

/* STEP 7 — sachet vs full sack */
.hp-unit-choice{border-top:1px solid var(--hp-border);margin-top:20px;padding-top:18px}
.hp-unit-choice .hp-label{margin-bottom:12px}
.hp-unit{
  position:relative;display:flex;align-items:center;gap:14px;
  border:1px solid var(--hp-border);border-radius:var(--hp-radius);
  padding:14px 16px;margin-bottom:12px;cursor:pointer;transition:border-color .18s ease;
}
.hp-unit:hover{border-color:var(--hp-sky)}
.hp-unit input{position:absolute;opacity:0;pointer-events:none}
.hp-unit .hp-choice-radio{margin-top:0}
.hp-unit-body{flex:1 1 auto;min-width:0}
.hp-unit-body strong{display:block;font-family:var(--hp-font-head);font-size:.98rem;color:var(--hp-navy);line-height:1.3}
.hp-unit-body span{font-size:.82rem;color:var(--hp-muted)}
.hp-unit-price{font-family:var(--hp-font-head);font-weight:600;color:var(--hp-blue);white-space:nowrap}
.hp-unit.is-selected{border-color:var(--hp-blue);box-shadow:0 0 0 1px var(--hp-blue) inset}
.hp-unit.is-selected .hp-choice-radio{border-color:var(--hp-blue)}
.hp-unit.is-selected .hp-choice-radio::after{opacity:1}

.hp-panel-price--alt{margin-top:6px}
.hp-panel-price--alt strong{font-size:1.05rem}

@media (max-width:640px){
  .hp-unit{flex-wrap:wrap}
  .hp-unit-price{width:100%;padding-left:34px}
}
