/* ==========================================================================
   ICEE Design System — innocapai.com
   Single source of truth. Token-based. No !important overlay hell.
   Loaded once via functions.php (icee_enqueue_assets).

   Direction: premium, calm, light — Apple / Linear-grade B2B SaaS with an
   Icee identity. Primary = Blue/Navy. Surfaces = White / Grey / Frost.
   Accents are restrained. No coral/orange CTAs, no dominant green.
   ========================================================================== */

/* 1. DESIGN TOKENS ------------------------------------------------------- */
:root{
  /* Brand navy — headings, footer, secondary, dark sections */
  --navy-900:#0A1730;
  --navy-800:#0E1C35;
  --navy-700:#15294A;
  --navy-600:#1E3A66;
  --navy-500:#2C4F86;

  /* Frost — light background blue, section tints, trust surfaces */
  --frost-50:#F6F9FE;
  --frost-100:#EDF2FB;
  --frost-200:#DDE7F6;
  --frost-border:#D6E0F1;

  /* Accent — ONE premium blue. Primary CTA, links, focus. Used sparingly. */
  --accent-500:#0A66E0;
  --accent-600:#0A57C2;   /* hover */
  --accent-700:#0846A0;   /* accessible text-on-light (>4.5:1) */
  --accent-tint:#EAF1FD;

  /* Neutrals */
  --ink:#16233B;          /* body text (navy-tinted, >12:1 on white) */
  --muted:#56627A;        /* secondary text ~5.6:1 */
  --subtle:#7A8699;       /* captions ~4.6:1 */
  --surface:#FFFFFF;
  --surface-2:#F6F8FC;    /* alt section */
  --bg:#FBFCFE;
  --border:#E5EAF2;
  --border-strong:#D2DAE8;

  /* Functional status only (never decorative) */
  --success:#1E8E5A;
  --warning:#B4690E;
  --danger:#C0392B;

  /* Typography */
  --font-sans:"Inter","SF Pro Text",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
  --font-display:"Inter","SF Pro Display",-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  --fs-xs:0.75rem; --fs-sm:0.875rem; --fs-base:1rem; --fs-md:1.125rem;
  --fs-lg:1.375rem; --fs-xl:1.75rem; --fs-2xl:2.25rem; --fs-3xl:2.875rem;
  --fs-4xl:3.5rem; --fs-hero:clamp(2rem,1.05rem + 3.2vw,4.25rem);
  --lh-tight:1.08; --lh-snug:1.3; --lh:1.62;

  /* Spacing (4px base) */
  --sp-1:4px; --sp-2:8px; --sp-3:12px; --sp-4:16px; --sp-5:20px;
  --sp-6:24px; --sp-8:32px; --sp-10:40px; --sp-12:48px; --sp-16:64px;
  --sp-20:80px; --sp-24:96px; --sp-32:128px;
  --section-y:clamp(64px,4vw + 40px,112px);

  /* Radius / shadow (soft, premium) */
  --r-sm:10px; --r-md:16px; --r-lg:22px; --r-pill:999px;
  --shadow-sm:0 1px 2px rgba(14,28,53,.05);
  --shadow-md:0 8px 30px rgba(14,28,53,.07);
  --shadow-lg:0 24px 60px rgba(14,28,53,.10);
  --ring:0 0 0 3px rgba(10,102,224,.40);

  /* Layout */
  --container:1120px; --container-narrow:760px; --container-wide:1280px;
  --header-h:68px;
}

/* 2. RESET & BASE ------------------------------------------------------- */
*,*::before,*::after{box-sizing:border-box;}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%;}
body.icee{
  margin:0;font-family:var(--font-sans);font-size:var(--fs-base);
  line-height:var(--lh);color:var(--ink);background:var(--bg);
  -webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility;
  overflow-x:hidden;
}
img,svg,video{max-width:100%;height:auto;display:block;}
a{color:var(--accent-700);text-decoration:none;}
a:hover{color:var(--accent-600);}
h1,h2,h3,h4{font-family:var(--font-display);color:var(--navy-800);
  line-height:var(--lh-tight);letter-spacing:0;margin:0 0 .5em;font-weight:700;
  overflow-wrap:break-word;word-wrap:break-word;}
h1{font-size:var(--fs-hero);}
h2{font-size:var(--fs-2xl);}
h3{font-size:var(--fs-lg);letter-spacing:0;}
p{margin:0 0 1em;}
ul,ol{margin:0 0 1em;padding-left:1.25em;}
strong{font-weight:650;color:var(--navy-800);}
:where(.icee) ::selection{background:var(--accent-tint);}

/* 3. ACCESSIBILITY ------------------------------------------------------ */
.icee-skip-link{position:absolute;left:-9999px;top:0;z-index:1000;}
.icee-skip-link:focus{left:16px;top:12px;background:var(--surface);color:var(--navy-800);
  padding:10px 16px;border-radius:var(--r-sm);box-shadow:var(--shadow-md);font-weight:600;}
.icee a:focus-visible,.icee button:focus-visible,.icee input:focus-visible,
.icee select:focus-visible,.icee textarea:focus-visible,.icee summary:focus-visible,
.icee [tabindex]:focus-visible{outline:none;box-shadow:var(--ring);border-radius:6px;}
.sr-only{position:absolute!important;width:1px;height:1px;padding:0;margin:-1px;
  overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0;}
@media (prefers-reduced-motion:reduce){
  *{animation-duration:.001ms!important;animation-iteration-count:1!important;
    transition-duration:.001ms!important;scroll-behavior:auto!important;}
}

/* 4. LAYOUT ------------------------------------------------------------- */
.icee-container{width:100%;max-width:var(--container);margin-inline:auto;padding-inline:24px;}
.icee-container--narrow{max-width:var(--container-narrow);}
.icee-container--wide{max-width:var(--container-wide);}
.icee-section{padding-block:var(--section-y);}
.icee-section--tint{background:var(--frost-100);}
.icee-section--alt{background:var(--surface-2);}
.icee-section--navy{background:var(--navy-800);color:#fff;}
.icee-section--navy h1,.icee-section--navy h2,.icee-section--navy h3{color:#fff;}
.icee-section--navy .icee-lead,.icee-section--navy p{color:rgba(255,255,255,.78);}
.icee-grid{display:grid;gap:var(--sp-6);}
.icee-grid--2{grid-template-columns:repeat(2,1fr);}
.icee-grid--3{grid-template-columns:repeat(3,1fr);}
.icee-grid--4{grid-template-columns:repeat(4,1fr);}
.icee-eyebrow{display:inline-block;font-size:var(--fs-xs);font-weight:700;
  letter-spacing:.14em;text-transform:uppercase;color:var(--accent-700);margin-bottom:14px;}
.icee-lead{font-size:var(--fs-md);color:var(--muted);max-width:60ch;}
.icee-center{text-align:center;margin-inline:auto;}

/* 5. HEADER / NAV ------------------------------------------------------- */
.icee-header{position:sticky;top:0;z-index:200;background:rgba(255,255,255,.82);
  -webkit-backdrop-filter:saturate(180%) blur(18px);backdrop-filter:saturate(180%) blur(18px);
  border-bottom:1px solid var(--border);}
.icee-header__inner{display:flex;align-items:center;justify-content:space-between;
  gap:var(--sp-6);height:var(--header-h);max-width:var(--container-wide);
  margin-inline:auto;padding-inline:24px;}
.icee-logo{display:inline-flex;align-items:center;gap:8px;font-family:var(--font-display);
  font-weight:800;font-size:1.3rem;letter-spacing:0;color:var(--navy-800);
  min-width:0;white-space:nowrap;flex:none;}
.icee-logo:hover{color:var(--navy-800);}
.icee-logo__mark{width:30px;height:30px;flex:none;color:var(--accent-500);}
.icee-logo small{font-weight:600;font-size:.72rem;color:var(--muted);letter-spacing:0;}
.icee-logo .custom-logo-link{display:inline-flex;align-items:center;max-height:40px;overflow:hidden;}
.icee-logo img,.icee-logo .custom-logo{display:block;width:auto;max-width:160px;max-height:40px;object-fit:contain;}
.icee-nav{display:flex;align-items:center;gap:var(--sp-6);}
.icee-nav__list{display:flex;gap:var(--sp-6);list-style:none;margin:0;padding:0;}
.icee-nav__list a{font-size:.95rem;font-weight:500;color:var(--ink);padding:6px 2px;}
.icee-nav__list a:hover,.icee-nav__list a[aria-current="page"]{color:var(--accent-600);}
.icee-header__actions{display:flex;align-items:center;gap:var(--sp-3);}

/* Account: logged-out + logged-in dropdown */
.icee-account{position:relative;}
.icee-account__btn{display:inline-flex;align-items:center;gap:8px;background:none;
  border:1px solid var(--border-strong);border-radius:var(--r-pill);padding:6px 12px 6px 8px;
  font:inherit;font-size:.9rem;font-weight:600;color:var(--navy-800);cursor:pointer;}
.icee-account__btn:hover{border-color:var(--navy-600);}
.icee-avatar{width:28px;height:28px;border-radius:50%;flex:none;display:inline-flex;
  align-items:center;justify-content:center;background:var(--navy-800);color:#fff;
  font-size:.72rem;font-weight:700;overflow:hidden;}
.icee-avatar img{width:100%;height:100%;object-fit:cover;}
.icee-caret{width:14px;height:14px;transition:transform .2s ease;}
.icee-account__btn[aria-expanded="true"] .icee-caret{transform:rotate(180deg);}
.icee-account__menu{position:absolute;right:0;top:calc(100% + 8px);min-width:230px;
  background:var(--surface);border:1px solid var(--border);border-radius:var(--r-md);
  box-shadow:var(--shadow-lg);padding:8px;list-style:none;margin:0;
  opacity:0;visibility:hidden;transform:translateY(-6px);transition:opacity .18s ease,transform .18s ease,visibility .18s;}
.icee-account[data-open="true"] .icee-account__menu{opacity:1;visibility:visible;transform:translateY(0);}
.icee-account__menu li+li{margin-top:2px;}
.icee-account__menu a,.icee-account__menu button{display:flex;align-items:center;gap:10px;
  width:100%;padding:10px 12px;border-radius:10px;font:inherit;font-size:.9rem;
  color:var(--ink);background:none;border:0;text-align:left;cursor:pointer;}
.icee-account__menu a:hover,.icee-account__menu button:hover,
.icee-account__menu a:focus-visible{background:var(--frost-100);color:var(--navy-800);}
.icee-account__menu .is-logout{color:var(--accent-700);}
.icee-account__user{padding:10px 12px 12px;border-bottom:1px solid var(--border);margin-bottom:6px;}
.icee-account__user strong{display:block;color:var(--navy-800);}
.icee-account__user span{font-size:.8rem;color:var(--subtle);}

/* Burger + mobile nav */
.icee-burger{display:none;width:42px;height:42px;border:1px solid var(--border-strong);
  border-radius:12px;background:none;cursor:pointer;align-items:center;justify-content:center;}
.icee-burger span{display:block;width:18px;height:2px;background:var(--navy-800);border-radius:2px;
  position:relative;transition:transform .25s,opacity .2s;}
.icee-burger span::before,.icee-burger span::after{content:"";position:absolute;left:0;width:18px;
  height:2px;background:var(--navy-800);border-radius:2px;transition:transform .25s;}
.icee-burger span::before{top:-6px;} .icee-burger span::after{top:6px;}
.icee-burger[aria-expanded="true"] span{background:transparent;}
.icee-burger[aria-expanded="true"] span::before{transform:translateY(6px) rotate(45deg);}
.icee-burger[aria-expanded="true"] span::after{transform:translateY(-6px) rotate(-45deg);}
.icee-mobile-nav{display:none;}

/* 6. BUTTONS ------------------------------------------------------------ */
.btn,.icee .button{display:inline-flex;align-items:center;justify-content:center;gap:9px;
  font:inherit;font-weight:600;font-size:.975rem;line-height:1;padding:13px 24px;
  border-radius:var(--r-pill);border:1.5px solid transparent;cursor:pointer;
  text-decoration:none;transition:background .18s,border-color .18s,transform .12s,box-shadow .18s,color .18s;
  min-height:46px;}
.btn:active{transform:translateY(1px);}
.btn--primary,.icee .button.alt,.icee .button{background:var(--accent-500);color:#fff;border-color:var(--accent-500);}
.btn--primary:hover,.icee .button:hover{background:var(--accent-600);border-color:var(--accent-600);color:#fff;box-shadow:var(--shadow-md);}
.btn--secondary{background:var(--navy-800);color:#fff;border-color:var(--navy-800);}
.btn--secondary:hover{background:var(--navy-600);border-color:var(--navy-600);color:#fff;}
.btn--outline{background:transparent;color:var(--navy-800);border-color:var(--border-strong);}
.btn--outline:hover{border-color:var(--navy-600);color:var(--navy-800);background:var(--frost-50);}
.btn--ghost{background:transparent;color:var(--navy-700);border-color:transparent;padding-inline:12px;}
.btn--ghost:hover{color:var(--accent-600);}
.btn--lg{padding:16px 30px;font-size:1.05rem;min-height:54px;}
.btn--block{width:100%;}
.icee-section--navy .btn--outline{color:#fff;border-color:rgba(255,255,255,.4);}
.icee-section--navy .btn--outline:hover{background:rgba(255,255,255,.08);border-color:#fff;color:#fff;}

/* 7. BADGES / TRUST CHIPS (neutral / frost — never green-dominant) ------ */
.icee-chip{display:inline-flex;align-items:center;gap:7px;font-size:.8rem;font-weight:600;
  padding:6px 13px;border-radius:var(--r-pill);background:var(--surface-2);
  color:var(--muted);border:1px solid var(--border);}
.icee-chip--trust{background:var(--frost-100);color:var(--navy-700);border-color:transparent;}
.icee-chip--trust svg{color:var(--accent-500);}
.icee-chip-row{display:flex;flex-wrap:wrap;gap:10px;}
.icee-badge{display:inline-block;font-size:.7rem;font-weight:700;letter-spacing:.08em;
  text-transform:uppercase;padding:4px 11px;border-radius:var(--r-pill);
  background:var(--accent-500);color:#fff;}
.icee-badge--soft{background:var(--frost-100);color:var(--accent-700);}

/* 8. CARDS -------------------------------------------------------------- */
.icee-card{background:var(--surface);border:1px solid var(--border);border-radius:var(--r-lg);
  padding:var(--sp-8);box-shadow:var(--shadow-sm);transition:transform .25s,box-shadow .25s;}
.icee-card--hover:hover{transform:translateY(-4px);box-shadow:var(--shadow-md);}
.icee-card--feature{border-color:var(--accent-500);box-shadow:var(--shadow-md);}
.icee-card__icon{width:46px;height:46px;border-radius:13px;display:flex;align-items:center;
  justify-content:center;background:var(--frost-100);color:var(--accent-600);margin-bottom:16px;}
.icee-card h3{margin-bottom:8px;}
.icee-card p{color:var(--muted);margin:0;}

/* 9. HERO --------------------------------------------------------------- */
.icee-hero{position:relative;padding-block:clamp(56px,6vw,96px) var(--section-y);
  background:linear-gradient(180deg,var(--frost-50) 0%,#fff 72%);overflow:hidden;}
.icee-hero__inner{max-width:var(--container);margin-inline:auto;padding-inline:24px;}
.icee-hero h1{max-width:18ch;}
.icee-hero .icee-lead{font-size:var(--fs-md);margin-block:18px 28px;}
.icee-hero__accent{color:var(--accent-600);}
.icee-hero__actions{display:flex;flex-wrap:wrap;gap:14px;margin-bottom:22px;}

/* 10. FORMS (generic) --------------------------------------------------- */
.icee-field{display:flex;flex-direction:column;gap:6px;margin-bottom:16px;}
.icee-field label,.icee label{font-size:.85rem;font-weight:600;color:var(--navy-800);}
.icee input[type=text],.icee input[type=email],.icee input[type=tel],.icee input[type=password],
.icee input[type=number],.icee input[type=search],.icee textarea,.icee select{
  width:100%;font:inherit;font-size:1rem;color:var(--ink);background:var(--surface);
  border:1px solid var(--border-strong);border-radius:var(--r-sm);padding:12px 14px;min-height:48px;
  transition:border-color .15s,box-shadow .15s;}
.icee input::placeholder,.icee textarea::placeholder{color:var(--subtle);}
.icee input:focus,.icee textarea:focus,.icee select:focus{outline:none;
  border-color:var(--accent-500);box-shadow:var(--ring);}
.icee-form-note{font-size:.8rem;color:var(--subtle);}

/* 11. FOOTER ------------------------------------------------------------ */
.icee-footer{background:var(--surface-2);border-top:1px solid var(--border);
  padding-block:var(--sp-16) var(--sp-10);color:var(--muted);}
.icee-footer__grid{display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:var(--sp-8);
  max-width:var(--container);margin:0 auto var(--sp-12);padding-inline:24px;}
.icee-footer h4{font-size:.72rem;letter-spacing:.16em;text-transform:uppercase;
  color:var(--subtle);margin-bottom:14px;}
.icee-footer ul{list-style:none;margin:0;padding:0;}
.icee-footer li{margin-bottom:9px;}
.icee-footer a{color:var(--muted);font-size:.95rem;}
.icee-footer a:hover{color:var(--navy-800);}
.icee-footer__brand p{max-width:32ch;font-size:.95rem;}
.icee-footer__bottom{max-width:var(--container);margin-inline:auto;padding:var(--sp-6) 24px 0;
  border-top:1px solid var(--border);display:flex;flex-wrap:wrap;gap:14px;
  justify-content:space-between;font-size:.8rem;color:var(--subtle);}
.icee-footer__bottom a{color:var(--subtle);}
.icee-footer__legal{display:flex;flex-wrap:wrap;gap:18px;}

/* 12. WOOCOMMERCE (style real WC markup — never replace its forms/nonces) */
.woocommerce-account .icee-container,.woocommerce-cart .icee-container,
.woocommerce-checkout .icee-container{padding-block:var(--section-y);}
.woocommerce form .form-row label,.woocommerce-account label{font-weight:600;color:var(--navy-800);}
.woocommerce form .input-text,.woocommerce-account input,.woocommerce #billing_first_name,
.woocommerce input.input-text,.woocommerce select{width:100%;font:inherit;font-size:1rem;
  border:1px solid var(--border-strong);border-radius:var(--r-sm);padding:12px 14px;min-height:48px;
  color:var(--ink);background:var(--surface);}
.woocommerce form .input-text:focus,.woocommerce input.input-text:focus,.woocommerce select:focus{
  outline:none;border-color:var(--accent-500);box-shadow:var(--ring);}
.woocommerce-form-login,.woocommerce-form-register,.woocommerce-ResetPassword{
  max-width:440px;background:var(--surface);border:1px solid var(--border);
  border-radius:var(--r-lg);padding:var(--sp-8);box-shadow:var(--shadow-sm);}
/* The rememberme + submit row (WC puts both in one .form-row): lay out cleanly,
   wrap on narrow screens so the button never overlaps the checkbox. */
.woocommerce-form-login p.form-row:not(.form-row-wide){display:flex;flex-wrap:wrap;
  align-items:center;gap:12px 16px;}
.woocommerce-form-login__rememberme{display:inline-flex;align-items:center;gap:8px;margin:0;}
.woocommerce-form-login p.form-row:not(.form-row-wide) .button{margin-left:auto;}
.woocommerce-form-login .lost_password{flex-basis:100%;margin:0;}
.woocommerce .col2-set,.woocommerce-page .col2-set{display:grid;grid-template-columns:1fr 1fr;
  gap:var(--sp-8);}
.woocommerce .button,.woocommerce a.button,.woocommerce button.button,
.woocommerce input.button,.woocommerce #place_order{background:var(--accent-500);color:#fff;
  border-radius:var(--r-pill);border:0;padding:13px 26px;font-weight:600;min-height:48px;
  box-shadow:none;transition:background .18s;}
.woocommerce .button:hover,.woocommerce #place_order:hover{background:var(--accent-600);}
.woocommerce .button.alt{background:var(--accent-500);}
body:not(.logged-in).woocommerce-account .woocommerce,
.woocommerce-account .woocommerce:not(:has(.woocommerce-MyAccount-navigation)){
  display:block;max-width:960px;margin-inline:auto;}
body:not(.logged-in).woocommerce-account .woocommerce .woocommerce-form-login,
body:not(.logged-in).woocommerce-account .woocommerce .woocommerce-form-register,
body:not(.logged-in).woocommerce-account .woocommerce .woocommerce-ResetPassword,
.woocommerce-account .woocommerce:not(:has(.woocommerce-MyAccount-navigation)) .woocommerce-form-login,
.woocommerce-account .woocommerce:not(:has(.woocommerce-MyAccount-navigation)) .woocommerce-form-register,
.woocommerce-account .woocommerce:not(:has(.woocommerce-MyAccount-navigation)) .woocommerce-ResetPassword{
  width:100%;max-width:520px;margin-inline:auto;}
body.logged-in.woocommerce-account .woocommerce,
.woocommerce-account .woocommerce:has(.woocommerce-MyAccount-navigation){display:grid;grid-template-columns:240px 1fr;gap:var(--sp-10);
  max-width:var(--container);margin-inline:auto;}
.woocommerce-MyAccount-navigation ul{list-style:none;margin:0;padding:0;
  border:1px solid var(--border);border-radius:var(--r-md);overflow:hidden;background:var(--surface);}
.woocommerce-MyAccount-navigation li a{display:block;padding:13px 18px;color:var(--ink);
  font-weight:500;border-bottom:1px solid var(--border);}
.woocommerce-MyAccount-navigation li a:hover{background:var(--frost-100);color:var(--navy-800);}
.woocommerce-MyAccount-navigation li.is-active a{background:var(--navy-800);color:#fff;}
.woocommerce-MyAccount-content{background:var(--surface);border:1px solid var(--border);
  border-radius:var(--r-md);padding:var(--sp-8);}
.woocommerce-MyAccount-content a{color:var(--accent-700);}
.woocommerce-message,.woocommerce-info,.woocommerce-error,.woocommerce-notice{
  border-radius:var(--r-md);padding:14px 18px;border:1px solid var(--border);
  background:var(--frost-50);color:var(--ink);list-style:none;}
.woocommerce-message{border-left:3px solid var(--success);}
.woocommerce-error{border-left:3px solid var(--danger);color:#7a241b;background:#fdecea;border-color:transparent;}
.woocommerce table.shop_table{border:1px solid var(--border);border-radius:var(--r-md);
  border-collapse:separate;border-spacing:0;overflow:hidden;}
.woocommerce table.shop_table th{background:var(--surface-2);color:var(--navy-800);}

/* 13. PAGE PATTERNS ----------------------------------------------------- */
.icee-pricing{display:grid;grid-template-columns:repeat(2,1fr);gap:var(--sp-6);max-width:880px;margin-inline:auto;}
.icee-price{background:var(--surface);border:1px solid var(--border);border-radius:var(--r-lg);
  padding:var(--sp-8);position:relative;}
.icee-price--feature{border:1.5px solid var(--accent-500);}
.icee-price__amount{font-family:var(--font-display);font-size:var(--fs-3xl);color:var(--navy-800);font-weight:800;}
.icee-price__meta{font-size:.85rem;color:var(--muted);margin-bottom:18px;}
.icee-price ul{list-style:none;padding:0;margin:0 0 22px;}
.icee-price li{display:flex;gap:10px;padding:8px 0;border-bottom:1px solid var(--border);font-size:.95rem;color:var(--muted);}
.icee-price li::before{content:"✓";color:var(--accent-500);font-weight:700;}
.icee-spec{display:flex;justify-content:space-between;font-size:.85rem;color:var(--muted);padding:6px 0;border-bottom:1px solid var(--border);}
.icee-spec b{color:var(--navy-800);font-weight:600;}
.icee-steps{counter-reset:s;display:grid;gap:var(--sp-6);}
.icee-step{display:flex;gap:16px;}
.icee-step__num{flex:none;width:40px;height:40px;border-radius:50%;background:var(--navy-800);
  color:#fff;display:flex;align-items:center;justify-content:center;font-weight:700;}
.icee-faq details{border-bottom:1px solid var(--border);}
.icee-faq summary{cursor:pointer;list-style:none;padding:20px 0;font-weight:600;color:var(--navy-800);
  display:flex;justify-content:space-between;gap:16px;}
.icee-faq summary::-webkit-details-marker{display:none;}
.icee-faq summary::after{content:"+";color:var(--accent-600);font-size:1.4rem;line-height:1;}
.icee-faq details[open] summary::after{content:"–";}
.icee-faq details[open] summary{color:var(--accent-700);}
.icee-faq .icee-faq__a{padding:0 0 20px;color:var(--muted);}
.icee-calc{display:grid;grid-template-columns:1fr 1fr;gap:var(--sp-6);}
.icee-calc__result{background:var(--navy-800);color:#fff;border-radius:var(--r-lg);padding:var(--sp-8);}
.icee-calc__big{font-family:var(--font-display);font-size:var(--fs-3xl);font-weight:800;color:#fff;}
.icee-calc__cta{display:grid;gap:10px;margin-top:18px;}
.icee-yes{color:var(--accent-600);font-weight:700;}
.icee-no{color:var(--subtle);}

/* reveal */
[data-reveal]{opacity:0;transform:translateY(18px);transition:opacity .7s ease,transform .7s ease;}
[data-reveal].is-visible{opacity:1;transform:none;}

/* 14. UTILITIES --------------------------------------------------------- */
.u-mt-0{margin-top:0;} .u-mb-0{margin-bottom:0;} .u-tac{text-align:center;}
.u-maxw-60{max-width:60ch;} .u-muted{color:var(--muted);}
.icee-divider{height:1px;background:var(--border);border:0;margin-block:var(--sp-12);}

/* 15. RESPONSIVE -------------------------------------------------------- */
@media (max-width:1024px){
  .icee-grid--4{grid-template-columns:repeat(2,1fr);}
  .woocommerce-account .woocommerce{grid-template-columns:1fr;}
}
@media (max-width:860px){
  .icee-nav__list,.icee-header .icee-nav{display:none;}
  .icee-burger{display:inline-flex;}
  /* On mobile the header CTAs live in the burger menu — keep only logo + burger
     (and the compact account dropdown when logged in). Prevents header overflow. */
  .icee-header__actions .btn{display:none;}
  /* Any wide table scrolls inside itself instead of pushing the page wider. */
  .icee main table,.woocommerce table.shop_table{display:block;max-width:100%;
    overflow-x:auto;-webkit-overflow-scrolling:touch;}
  .icee-mobile-nav{display:block;position:fixed;inset:var(--header-h) 0 auto 0;
    background:var(--surface);border-bottom:1px solid var(--border);box-shadow:var(--shadow-lg);
    max-height:0;overflow:hidden;transition:max-height .3s ease;z-index:199;}
  .icee-mobile-nav[data-open="true"]{max-height:calc(100vh - var(--header-h));overflow:auto;}
  .icee-mobile-nav ul{list-style:none;margin:0;padding:8px 0;}
  .icee-mobile-nav a{display:block;padding:14px 24px;color:var(--ink);font-weight:500;border-bottom:1px solid var(--border);}
  .icee-grid--2,.icee-grid--3,.icee-grid--4,.icee-pricing,.icee-calc,.woocommerce .col2-set{grid-template-columns:1fr;}
  .icee-footer__grid{grid-template-columns:1fr 1fr;}
}
@media (max-width:480px){
  :root{--section-y:56px;}
  h1{font-size:clamp(1.6rem,6vw,2.15rem);}
  h2{font-size:1.5rem;}
  h3{font-size:1.2rem;}
  .icee-hero h1{max-width:100%;}
  .icee-lead,.icee-hero .icee-lead{font-size:1rem;}
  .icee-footer__grid{grid-template-columns:1fr;}
  .icee-hero__actions{flex-direction:column;align-items:stretch;}
  .icee-hero__actions .btn{width:100%;}
  .icee-header__inner{padding-inline:16px;}
  .icee-container{padding-inline:16px;}
  .icee-chip{max-width:100%;}
}
