/** Shopify CDN: Minification failed

Line 25:2 All "@import" rules must come first

**/
#th, #th * { box-sizing: border-box; }

  #th {
    --orange: #f48a3a;
    --orange-dark: #C25E12;
    --orange-soft: #FBDCC0;
    --navy: #23364D;
    --cream: #EEF3F1;
    --cream-2: #E4ECE9;
    --text: #31485D;
    --muted: #6d8088;
    --line: #C8D6D2;
    --pad: max(22px, calc((100% - 1180px) / 2));
    color: var(--text);
    background: var(--cream);
    font-family: "Inter", "Trebuchet MS", Arial, sans-serif;
    line-height: 1.55;
    overflow-x: hidden;
  }
  @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Poppins:wght@500;600;700;800&display=swap');

  #th h1, #th h2, #th h3 { font-family: "Poppins", "Trebuchet MS", sans-serif; font-weight: 700; color: var(--navy); margin: 0; line-height: 1.08; }
  #th p { margin: 0; }
  #th img { display: block; max-width: 100%; }

  /* ---- Buttons (the ONLY CTA is Shop Now) ---- */
  #th .btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 9px;
    min-height: 54px; padding: 0 30px;
    border: 0; border-radius: 12px;
    background: var(--orange); color: var(--navy);
    font-family: "Poppins", sans-serif; font-weight: 800; font-size: 17px; letter-spacing: .02em;
    text-decoration: none; cursor: pointer;
    transition: transform .12s ease, background .15s ease;
  }
  #th .btn:hover { background: #e97e28; transform: translateY(-1px); }
  #th .btn svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
  #th .btn--ghost { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.7); }
  #th .btn--ghost:hover { background: rgba(255,255,255,.12); }

  /* ---- Announcement + header ---- */
  #th .th-announce {
    display: flex; align-items: center; overflow: hidden; white-space: nowrap;
    height: 37px; padding: 0 14px;
    background: var(--navy); color: #fff;
  }
  #th .th-announce__track {
    display: flex; gap: 52px; min-width: max-content;
    font-weight: 800; font-style: italic; font-size: 12px; letter-spacing: .06em; text-transform: uppercase;
    animation: th-marquee 18s linear infinite;
  }
  @keyframes th-marquee { to { transform: translateX(-50%); } }

  #th .th-header {
    position: sticky; top: 0; z-index: 50;
    display: grid; grid-template-columns: 44px 1fr 44px; align-items: center;
    gap: 12px; height: 74px; padding: 0 var(--pad);
    background: var(--cream-2); border-bottom: 1px solid var(--line);
  }
  #th .th-icon { width: 40px; height: 40px; display: grid; place-items: center; border: 0; background: transparent; color: var(--navy); cursor: pointer; }
  #th .th-icon svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
  #th .th-logo { justify-self: center; }
  #th .th-logo img { width: min(160px, 42vw); height: auto; filter: brightness(0); }
  #th .th-header__right { justify-self: end; display: flex; align-items: center; gap: 10px; }
  #th .th-header__right .btn { display: none; } /* shown on desktop only; mobile uses the hero + menu CTA */
  #th .th-nav { display: none; }

  /* ---- Hero ---- */
  #th .th-hero {
    position: relative;
    min-height: min(84vh, 640px);
    display: grid; align-items: end;
    padding: 0 var(--pad) clamp(40px, 8vw, 84px);
    color: #fff;
    background: #1a2636;
    overflow: hidden;
  }
  #th .th-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
  #th .th-hero::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(15,22,33,.15) 0%, rgba(15,22,33,.05) 40%, rgba(15,22,33,.82) 100%);
  }
  #th .th-hero__in { position: relative; z-index: 1; max-width: 620px; }
  #th .th-eyebrow { display: inline-block; margin-bottom: 14px; padding: 5px 13px; border-radius: 20px; background: var(--orange); color: var(--navy); font-family: "Poppins",sans-serif; font-weight: 800; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
  #th .th-hero h1 { color: #fff; font-size: clamp(38px, 8.5vw, 68px); }
  #th .th-hero p { margin: 16px 0 26px; font-size: clamp(16px, 2.4vw, 20px); font-weight: 600; color: rgba(255,255,255,.92); max-width: 520px; }

  /* ---- Alternating text / image rows ---- */
  #th .th-row { padding: clamp(46px, 8vw, 84px) var(--pad); }
  #th .th-row--tint { background: var(--cream-2); }
  #th .th-row__grid { display: grid; gap: 26px; align-items: center; }
  #th .th-row__text .th-kick { display: inline-block; margin-bottom: 12px; color: var(--orange-dark); font-family: "Poppins",sans-serif; font-weight: 800; font-size: 13px; letter-spacing: .09em; text-transform: uppercase; }
  #th .th-row__text h2 { font-size: clamp(28px, 6vw, 42px); }
  #th .th-row__text p { margin-top: 14px; font-size: 17px; color: var(--text); }
  #th .th-row__img { border-radius: 20px; overflow: hidden; box-shadow: 0 18px 40px rgba(35,54,77,.14); }
  #th .th-row__img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }

  /* ---- Value strip ---- */
  #th .th-values { padding: clamp(44px, 7vw, 72px) var(--pad); background: var(--navy); color: #fff; }
  #th .th-values h2 { color: #fff; text-align: center; font-size: clamp(26px, 6vw, 40px); margin-bottom: 34px; }
  #th .th-values__grid { display: grid; gap: 26px; }
  #th .th-value { text-align: center; }
  #th .th-value__ic { width: 68px; height: 68px; display: grid; place-items: center; margin: 0 auto 14px; border-radius: 16px; background: var(--orange-soft); color: var(--orange-dark); }
  #th .th-value__ic svg { width: 32px; height: 32px; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
  #th .th-value h3 { color: #fff; font-size: 20px; margin-bottom: 6px; }
  #th .th-value p { color: #C8D7D3; font-size: 15px; }

  /* ---- CTA band ---- */
  #th .th-cta { position: relative; padding: clamp(56px, 9vw, 96px) var(--pad); text-align: center; color: #fff; background: #1a2636; overflow: hidden; }
  #th .th-cta img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .28; }
  #th .th-cta::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(26,38,54,.7), rgba(26,38,54,.9)); }
  #th .th-cta__in { position: relative; z-index: 1; max-width: 620px; margin: 0 auto; }
  #th .th-cta h2 { color: #fff; font-size: clamp(30px, 7vw, 50px); }
  #th .th-cta p { margin: 14px 0 28px; font-size: 18px; font-weight: 600; color: rgba(255,255,255,.9); }

  /* ---- Footer ---- */
  #th .th-footer { padding: clamp(44px, 6vw, 64px) var(--pad) 30px; background: var(--navy); color: #fff; }
  #th .th-footer__top { display: grid; gap: 26px; }
  #th .th-footer h4 { color: #fff; font-family: "Poppins",sans-serif; font-size: 20px; margin: 0 0 12px; }
  #th .th-flinks { display: grid; gap: 8px; }
  #th .th-flinks a { color: #d7e0e6; text-decoration: none; font-size: 15px; }
  #th .th-flinks a:hover { color: #fff; }
  #th .th-foot-blurb { color: #C8D7D3; font-size: 15px; max-width: 360px; }
  #th .th-footer__logo { margin: 34px 0 0; }
  #th .th-footer__logo img { width: 100%; height: auto; filter: brightness(0) invert(1); }
  #th .th-footer__bar { margin-top: 26px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.16); display: flex; flex-wrap: wrap; gap: 14px 20px; align-items: center; justify-content: space-between; }
  #th .th-pay { display: flex; flex-wrap: wrap; gap: 7px; }
  #th .th-paylogo { width: 42px; height: 27px; display: grid; place-items: center; padding: 3px 4px; border-radius: 4px; background: #fff; overflow: hidden; }
  #th .th-paylogo img { width: 100%; height: 100%; object-fit: contain; }
  #th .th-paylogo--shop { padding: 5px; background: #5a31f4; }
  #th .th-shopmark { width: 100%; height: 100%; filter: brightness(0) invert(1); }
  #th .th-copy { color: #9fb0b8; font-size: 12px; }

  /* ---- Mobile menu drawer ---- */
  #th .th-overlay { position: fixed; inset: 0; z-index: 98; background: rgba(35,54,77,.45); opacity: 0; pointer-events: none; transition: opacity .25s ease; }
  #th .th-overlay.open { opacity: 1; pointer-events: auto; }
  #th .th-drawer { position: fixed; top: 0; bottom: 0; left: 0; z-index: 99; width: min(80vw, 320px); padding: 22px; background: var(--cream); transform: translateX(-105%); transition: transform .28s ease; }
  #th .th-drawer.open { transform: translateX(0); }
  #th .th-drawer__top { display: flex; align-items: center; justify-content: space-between; padding-bottom: 16px; border-bottom: 1px solid var(--line); }
  #th .th-drawer__top strong { font-family: "Poppins",sans-serif; font-size: 22px; color: var(--navy); }
  #th .th-drawer nav { display: grid; gap: 4px; padding-top: 14px; }
  #th .th-drawer nav a { padding: 14px 4px; border-bottom: 1px solid var(--line); color: var(--navy); text-decoration: none; font-weight: 800; font-size: 18px; }
  #th .th-drawer .btn { margin-top: 20px; width: 100%; }

  /* ================= DESKTOP ================= */
  @media (min-width: 820px) {
    #th .th-header { grid-template-columns: 1fr auto 1fr; height: 84px; }
    #th .th-header .th-icon--menu { display: none; }
    #th .th-nav { display: flex; align-items: center; gap: 28px; }
    #th .th-nav a { color: var(--navy); text-decoration: none; font-weight: 700; font-size: 15px; }
    #th .th-nav a:hover { color: var(--orange-dark); }
    #th .th-header__right { gap: 16px; }
    #th .th-header__right .btn { display: inline-flex; min-height: 44px; padding: 0 20px; font-size: 15px; }
    #th .th-logo img { width: 180px; }

    #th .th-row__grid { grid-template-columns: 1fr 1fr; gap: 56px; }
    #th .th-row--reverse .th-row__text { order: 2; }
    #th .th-row__text h2 { font-size: 40px; }

    #th .th-values__grid { grid-template-columns: repeat(3, 1fr); gap: 40px; }

    #th .th-footer__top { grid-template-columns: 1.7fr 1fr; gap: 48px; }
  }

  /* ================= SITE-WIDE BRAND FONTS =================
     Override Horizon's default Inter with the product-page brand fonts
     (Poppins headings + Inter body) on EVERY page — home, collections,
     policies, cart, search. Loads after theme-styles-variables so :root wins. */
  :root {
    --font-heading--family: "Poppins", "Trebuchet MS", sans-serif !important;
    --font-accent--family: "Poppins", "Trebuchet MS", sans-serif !important;
    --font-body--family: "Inter", "Trebuchet MS", Arial, sans-serif !important;
    --font-subheading--family: "Inter", "Trebuchet MS", Arial, sans-serif !important;
  }

  /* ================= CENTERED SITE FOOTER ================= */
  #th .th-footer--center { text-align: center; padding-top: clamp(40px, 6vw, 60px); }
  #th .th-footer--center .th-footer__logo { margin: 0 auto 16px; max-width: 180px; }
  #th .th-footer--center .th-footer__logo img { width: 100%; }
  #th .th-footer--center .th-foot-blurb { margin: 0 auto 22px; max-width: 440px; }
  #th .th-flinks--row { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 22px; margin: 0 0 16px; }
  #th .th-flinks--row a { color: #d7e0e6; text-decoration: none; font-size: 15px; font-weight: 700; }
  #th .th-flinks--row a:hover { color: #fff; }
  #th .th-foot-contact { margin: 0 auto 24px; color: #C8D7D3; font-size: 14px; }
  #th .th-foot-contact a { color: #fff; text-decoration: underline; }
  #th .th-footer--center .th-pay { justify-content: center; margin: 0 auto 18px; max-width: 520px; }
  #th .th-footer--center .th-copy { text-align: center; color: #9fb0b8; font-size: 12px; }
