/** Shopify CDN: Minification failed

Line 504:80 Expected "}" to go with "{"

**/
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --navy: #0c1a2e;
  --navy-mid: #12263f;
  --navy-light: #1a3554;
  --gold: #b8963e;
  --gold-light: #d4af6a;
  --gold-pale: #f5edda;
  --gold-dim: #7a6028;
  --cream: #faf8f3;
  --cream-2: #f2ede0;
  --white: #ffffff;
  --text: #1a1a2e;
  --text-mid: #3d4460;
  --muted: #6b7280;
  --border: #e8e0cc;
  --border-2: #d4c9aa;
  --green: #1a6b3c;
  --green-bg: #edf7f1;
  --red: #b03a2e;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --nav-h: 72px;
  --r: 4px;
  --r-lg: 8px;
  --shadow: 0 4px 24px rgba(12,26,46,.12);
  --shadow-lg: 0 12px 48px rgba(12,26,46,.18);
  --max-w: 1240px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--cream);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; }
input, textarea, select { font-family: var(--font-body); font-size: 1rem; color: var(--text); background: none; border: none; outline: none; width: 100%; }

h1,h2,h3,h4,h5,h6 { font-family: var(--font-display); font-weight: 600; line-height: 1.2; color: var(--navy); }
h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); }
h4 { font-size: 1.2rem; }
p { max-width: 68ch; line-height: 1.8; }
.kicker { display: inline-block; font-family: var(--font-body); font-size: .72rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.lead { font-size: 1.15rem; color: var(--text-mid); max-width: 60ch; line-height: 1.8; }

.wrap { width: min(var(--max-w), 94vw); margin-inline: auto; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-dark { background: var(--navy); }
.section-navy-mid { background: var(--navy-mid); }
.section-cream { background: var(--cream-2); }
.section-white { background: var(--white); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.flex-center { display: flex; align-items: center; }
.text-center { text-align: center; }
.text-white { color: var(--white) !important; }
.text-gold { color: var(--gold) !important; }
.text-muted { color: var(--muted) !important; }
.mt-xs { margin-top: 12px; }
.mt-sm { margin-top: 20px; }
.mt-md { margin-top: 36px; }
.mt-lg { margin-top: 56px; }
.mb-md { margin-bottom: 36px; }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 30px; font-family: var(--font-body); font-size: .85rem; font-weight: 600; letter-spacing: .04em; border-radius: var(--r); transition: all .22s ease; white-space: nowrap; cursor: pointer; }
.btn-gold { background: var(--gold); color: var(--white); border: 2px solid var(--gold); }
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(184,150,62,.35); }
.btn-gold-outline { background: transparent; color: var(--gold); border: 2px solid var(--gold); }
.btn-gold-outline:hover { background: var(--gold); color: var(--white); transform: translateY(-2px); }
.btn-navy { background: var(--navy); color: var(--white); border: 2px solid var(--navy); }
.btn-navy:hover { background: var(--navy-light); border-color: var(--navy-light); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-white { background: var(--white); color: var(--navy); border: 2px solid var(--white); }
.btn-white:hover { background: var(--gold-pale); transform: translateY(-2px); }
.btn-outline-white { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.6); }
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,.08); }
.btn-green { background: var(--green); color: var(--white); border: 2px solid var(--green); }
.btn-green:hover { background: #145530; border-color: #145530; transform: translateY(-2px); }
.btn-lg { padding: 18px 40px; font-size: .95rem; }
.btn-sm { padding: 10px 20px; font-size: .78rem; }
.btn-block { width: 100%; }
.btn-arrow::after { content: ' →'; }

.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 900; height: var(--nav-h); display: flex; align-items: center; transition: background .3s, box-shadow .3s; }
.nav.scrolled { background: var(--navy); box-shadow: 0 2px 24px rgba(0,0,0,.25); }
.nav-transparent { background: transparent; }
.nav-solid { background: var(--navy); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; width: min(var(--max-w), 94vw); margin-inline: auto; }
.nav-logo { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: var(--white); line-height: 1.15; display: flex; flex-direction: column; }
.nav-logo-sub { font-family: var(--font-body); font-size: .6rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold-light); font-weight: 500; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-size: .8rem; font-weight: 500; letter-spacing: .06em; color: rgba(255,255,255,.8); transition: color .2s; position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -3px; left: 0; right: 100%; height: 1.5px; background: var(--gold); transition: right .25s ease; }
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { right: 0; }
.nav-links a.active { color: var(--white); }
.nav-cta-wrap { display: flex; gap: 10px; align-items: center; }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--white); transition: all .25s; }
.mobile-menu { display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0; background: var(--navy); z-index: 899; padding: 48px 6vw; flex-direction: column; gap: 8px; overflow-y: auto; }
.mobile-menu.open { display: flex; }
.mobile-menu a { font-family: var(--font-display); font-size: 1.8rem; color: rgba(255,255,255,.7); padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.08); transition: color .2s; }
.mobile-menu a:hover { color: var(--white); }
.mobile-menu .cta-section { margin-top: 32px; display: flex; flex-direction: column; gap: 12px; }

.trust-badge { display: inline-flex; align-items: center; gap: 6px; font-size: .72rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; padding: 6px 12px; border-radius: 999px; }
.trust-green { background: var(--green-bg); color: var(--green); border: 1px solid rgba(26,107,60,.2); }
.trust-gold { background: var(--gold-pale); color: var(--gold-dim); border: 1px solid rgba(184,150,62,.3); }
.trust-navy { background: rgba(12,26,46,.07); color: var(--navy); border: 1px solid rgba(12,26,46,.15); }

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-size: .78rem; font-weight: 600; letter-spacing: .06em; color: var(--text-mid); text-transform: uppercase; }
.form-field { background: var(--white); border: 1.5px solid var(--border-2); border-radius: var(--r); padding: 13px 16px; font-size: .95rem; color: var(--text); transition: border-color .2s, box-shadow .2s; width: 100%; }
.form-field:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(184,150,62,.12); outline: none; }
.form-field::placeholder { color: var(--muted); opacity: .7; }
.form-field.has-error { border-color: var(--red); }
.form-error { font-size: .78rem; color: var(--red); margin-top: 4px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-grid { display: flex; flex-direction: column; gap: 18px; }
.field-select-wrap { position: relative; }
.field-select-wrap::after { content: '▾'; position: absolute; right: 14px; top: 50%; transform: translateY(-50%); color: var(--muted); pointer-events: none; font-size: .9rem; }
select.form-field { appearance: none; cursor: pointer; padding-right: 36px; }
textarea.form-field { resize: vertical; min-height: 120px; }
.form-check { display: flex; align-items: center; gap: 10px; cursor: pointer; }
.submit-note { font-size: .78rem; color: var(--muted); margin-top: 8px; line-height: 1.6; }

.sec-head { margin-bottom: 56px; }
.sec-head .kicker { margin-bottom: 10px; }
.sec-head-row { display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 24px; margin-bottom: 48px; }
.rule { border: none; height: 1px; background: var(--border); }
.rule-gold { border: none; height: 2px; background: linear-gradient(90deg, var(--gold), transparent); width: 64px; }

.page-hero { background: var(--navy); padding: calc(var(--nav-h) + 56px) 0 64px; border-bottom: 3px solid var(--gold); }
.page-hero .kicker { color: var(--gold-light); }
.page-hero h1 { color: var(--white); }
.page-hero .lead { color: rgba(255,255,255,.7); }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: .78rem; color: rgba(255,255,255,.5); margin-bottom: 16px; }
.breadcrumb a { color: rgba(255,255,255,.6); transition: color .2s; }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb-sep { color: rgba(255,255,255,.3); }

.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q { width: 100%; text-align: left; display: flex; justify-content: space-between; align-items: center; padding: 20px 0; font-size: 1rem; font-weight: 600; color: var(--navy); cursor: pointer; gap: 16px; font-family: var(--font-display); }
.faq-icon { width: 24px; height: 24px; border: 1.5px solid var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: .85rem; font-family: var(--font-body); flex-shrink: 0; transition: background .2s, color .2s; }
.faq-item.open .faq-icon { background: var(--gold); color: var(--white); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a-inner { padding-bottom: 20px; font-size: .95rem; color: var(--muted); line-height: 1.8; }

.stars { color: #f59e0b; letter-spacing: 3px; font-size: .9rem; }
.review-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 28px 32px; }
.review-text { font-family: var(--font-display); font-style: italic; font-size: 1.05rem; color: var(--navy); line-height: 1.65; margin: 12px 0 16px; }
.review-author { font-size: .82rem; font-weight: 600; color: var(--text-mid); }
.review-watch { font-size: .8rem; color: var(--gold); }

.stat-block { padding: 32px 28px; }
.stat-num { font-family: var(--font-display); font-size: 2.8rem; font-weight: 700; color: var(--white); line-height: 1; }
.stat-unit { font-size: 1.5rem; color: var(--gold-light); }
.stat-label { font-size: .78rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.6); margin-top: 8px; }

.footer { background: var(--navy); color: rgba(255,255,255,.8); }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; padding: 72px 0 56px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-logo { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: var(--white); display: block; margin-bottom: 14px; }
.footer-tagline { font-size: .88rem; color: rgba(255,255,255,.55); max-width: 32ch; line-height: 1.7; }
.footer-h5 { font-size: .72rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 18px; font-family: var(--font-body); }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: .88rem; color: rgba(255,255,255,.6); transition: color .2s; }
.footer-links a:hover { color: var(--white); }
.footer-newsletter-input { display: flex; margin-top: 4px; border: 1px solid rgba(255,255,255,.15); border-radius: var(--r); overflow: hidden; }
.footer-newsletter-input input { background: rgba(255,255,255,.06); padding: 11px 14px; font-size: .85rem; color: var(--white); border: none; flex: 1; }
.footer-newsletter-input input::placeholder { color: rgba(255,255,255,.35); }
.footer-newsletter-input button { background: var(--gold); color: var(--white); padding: 11px 16px; font-size: .8rem; font-weight: 600; border: none; cursor: pointer; transition: background .2s; white-space: nowrap; }
.footer-newsletter-input button:hover { background: var(--gold-light); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; padding: 24px 0; }
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.4); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: .78rem; color: rgba(255,255,255,.4); transition: color .2s; }
.footer-legal a:hover { color: rgba(255,255,255,.8); }
.footer-trust-badges { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 20px; }
.footer-badge { font-size: .65rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 5px 10px; border: 1px solid rgba(255,255,255,.15); color: rgba(255,255,255,.5); border-radius: var(--r); }

.toast { position: fixed; bottom: 28px; right: 28px; background: var(--navy); color: var(--white); padding: 14px 22px; border-radius: var(--r-lg); font-size: .88rem; box-shadow: var(--shadow-lg); transform: translateY(16px); opacity: 0; transition: all .3s; z-index: 9000; max-width: 320px; border-left: 4px solid var(--gold); }
.toast.show { opacity: 1; transform: translateY(0); }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }
[data-delay="1"] { transition-delay: .1s; }
[data-delay="2"] { transition-delay: .2s; }
[data-delay="3"] { transition-delay: .3s; }
[data-delay="4"] { transition-delay: .4s; }
[data-delay="5"] { transition-delay: .5s; }
[data-delay="6"] { transition-delay: .6s; }

.marquee-wrap { overflow: hidden; background: var(--navy-mid); border-top: 1px solid rgba(255,255,255,.06); border-bottom: 1px solid rgba(255,255,255,.06); padding: 18px 0; }
.marquee-track { display: flex; width: max-content; animation: marquee 30s linear infinite; }
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-item { display: flex; align-items: center; gap: 24px; padding: 0 32px; font-size: .78rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.5); white-space: nowrap; border-right: 1px solid rgba(255,255,255,.08); }
.marquee-item .m-dot { color: var(--gold); font-size: .9rem; }

.guarantee-bar { background: var(--green-bg); border: 1px solid rgba(26,107,60,.2); border-radius: var(--r-lg); padding: 20px 28px; display: flex; align-items: center; gap: 16px; }
.guarantee-bar-icon { font-size: 1.5rem; flex-shrink: 0; }
.guarantee-bar h4 { color: var(--green); font-size: 1rem; margin-bottom: 4px; }
.guarantee-bar p { color: var(--text-mid); font-size: .88rem; margin: 0; }

.value-box { background: var(--navy); color: var(--white); border-radius: var(--r-lg); padding: 28px 32px; position: relative; overflow: hidden; }
.value-box::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gold); }
.value-box h4 { color: var(--gold-light); font-size: 1.1rem; margin-bottom: 8px; }
.value-box p { font-size: .88rem; color: rgba(255,255,255,.65); }

.upload-zone { border: 2px dashed var(--border-2); border-radius: var(--r-lg); padding: 28px 20px; text-align: center; cursor: pointer; transition: all .2s; background: var(--cream); }
.upload-zone:hover { border-color: var(--gold); background: var(--gold-pale); }
.upload-zone-icon { font-size: 2rem; margin-bottom: 8px; }
.upload-zone p { font-size: .85rem; color: var(--muted); margin: 0; }
.upload-zone small { font-size: .72rem; color: var(--gold); }

#sticky-cta { position: fixed; bottom: 0; left: 0; right: 0; z-index: 800; background: var(--navy); border-top: 2px solid var(--gold); padding: 14px 20px; display: flex; gap: 10px; transition: transform .3s ease; transform: translateY(120%); }
#sticky-cta .btn { flex: 1; padding: 14px 16px; font-size: .82rem; }

@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-cta-wrap .btn-outline-white { display: none; }
  .hamburger { display: flex; }
}
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .sec-head-row { flex-direction: column; align-items: flex-start; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; padding: 48px 0 40px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
  .btn-lg { padding: 15px 28px; }
  /* ── Horizon Header Override ── */
header-component,
.header-section,
.header__wrapper {
  background-color: #0c1a2e !important;
  color: white !important;
}
.header__heading-link,
.header__menu-item,
.header__icon,
header-component a,
header-component button,
header-component svg {
  color: white !important;
  fill: white !important;
}
.header-section {
  border-bottom: 1px solid rgba(255,255,255,0.1) !important;
}

/* ── Fix white frame and top gap ── */
html, body {
  background: #0c1a2e !important;
    margin: 0 !important;
      padding: 0 !important;
      }
      .shopify-section:first-child {
        margin-top: 0 !important;
          padding-top: 0 !important;
          }
          header-component {
            background: transparent !important;
            }
            .header-section {
              background: transparent !important;
              }
              #header-group {
                background: transparent !important;
                }
                .content-for-layout {
                  margin-top: 0 !important;
                    padding-top: 0 !important;
                    }
                    /* ── Global white background fix ── */
html { background: #0c1a2e !important; }
body { background: #0c1a2e !important; }
.shopify-section { background: #0c1a2e; }

/* ── Mobile menu fix ── */
.header__menu-drawer,
.menu-drawer,
.menu-drawer__inner-container,
.menu-drawer__navigation-container {
  background: #0c1a2e !important;
  color: white !important;
}
.menu-drawer a,
.menu-drawer__menu-item {
  color: rgba(255,255,255,0.85) !important;
}

/* ── Footer fix ── */
.footer__content-top,
.footer__content-bottom,
footer .shopify-section,
.footer-section {
  background: #0c1a2e !important;
  color: rgba(255,255,255,0.8) !important;
}
.footer p, .footer a, .footer h2, .footer h3 {
  color: rgba(255,255,255,0.8) !important;
}

/* ── Nav dropdown fix ── */
.header__submenu,
.mega-menu,
.header__menu-item--has-dropdown .header__submenu {
  background: #0c1a2e !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
}
.header__submenu a {
  color: rgba(255,255,255,0.8) !important;
}
.header__submenu a:hover {
  color: var(--gold) !important;
}

/* ── All page templates ── */
.main-page-content,
.page-width,
main#MainContent {
  background: #0c1a2e !important;
}
/* ── Footer newsletter fix ── */
.footer-section--newsletter,
.shopify-section-group-footer-group .shopify-section:has(.footer__newsletter),
footer .footer__newsletter {
  background-color: #0c1a2e !important;
}
footer .footer__newsletter h2,
footer .footer__newsletter p,
footer .footer__newsletter .footer__newsletter-label {
  color: white !important;
}
footer .footer__newsletter .field__input {
  background: rgba(255,255,255,0.1) !important;
  color: white !important;
  border-color: rgba(255,255,255,0.2) !important;
}
footer .footer__newsletter .field__input::placeholder {
  color: rgba(255,255,255,0.5) !important;
}
footer .footer__newsletter .field__button svg {
  fill: white !important;
}
/* Hide the Horizon default footer completely - we have our own */
.shopify-section-group-footer-group { 
  background: #0c1a2e !important; 
}
/* ── Fix email list footer background ── */
body.page-width-narrow,
body.page-width-l,
body.page-width-xl,
body.page-width-m {
  background-color: #0c1a2e !important;
}
footer, footer * {
  background-color: #0c1a2e !important;
  color: rgba(255,255,255,0.8) !important;
}
footer h2 { color: white !important; font-size: 1.4rem !important; }
footer p { color: rgba(255,255,255,0.7) !important; }
footer input { 
  background: rgba(255,255,255,0.1) !important; 
  color: white !important;
  border: 1px solid rgba(255,255,255,0.2) !important;
}
footer input::placeholder { color: rgba(255,255,255,0.4) !important; }
footer button, footer [type="submit"] { 
  background: #b8963e !important; 
  color: white !important; 
}

/* ── Email input rounded corners fix (mobile) ── */
.email-signup__input,
.email-signup__input-group,
footer input[type="email"],
footer .field__input,
.footer__newsletter input {
  border-radius: 999px !important;
    -webkit-appearance: none !important;
      appearance: none !important;
      }
      .email-signup__input-group {
        border-radius: 999px !important;
          overflow: hidden !important;
            border: 1px solid rgba(255,255,255,0.2) !important;
            }
            @media (max-width: 768px) {
              .email-signup__input,
                .email-signup__input-group,
                  footer input[type="email"],
                    footer .field__input {
                        border-radius: 999px !important;
                            -webkit-appearance: none !important;
                              }
                              }
                              /* ══ THREE FIXES ══ */

/* 1. White border top and left - force html/body to navy */
html, body {
  background: #0c1a2e !important;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
}
.shopify-section:first-of-type,
#shopify-section-header,
.header-section {
  margin-top: 0 !important;
}

/* 2. Desktop footer email - white text on white fix */
.email-signup,
.email-signup__content,
.email-signup__heading,
.email-signup p,
.email-signup h2,
.email-signup label,
[class*="email-signup"] {
  color: white !important;
}
.email-signup__heading {
  color: white !important;
  font-size: 1.5rem !important;
}
.shopify-section-group-footer-group,
.shopify-section-group-footer-group .shopify-section {
  background: #0c1a2e !important;
  color: white !important;
}
.shopify-section-group-footer-group * {
  color: rgba(255,255,255,0.85) !important;
}
.shopify-section-group-footer-group h2,
.shopify-section-group-footer-group h3 {
  color: white !important;
}

/* 3. Mobile email box - remove square around arrow button */
.email-signup__input-group button,
.email-signup__input-group [type="submit"],
.email-signup__submit,
footer button[type="submit"],
footer .field__button {
  border-radius: 999px !important;
  border: none !important;
  box-shadow: none !important;
  background: #b8963e !important;
  color: white !important;
  outline: none !important;
  -webkit-appearance: none !important;
  appearance: none !important;
}
.email-signup__input-group button svg,
footer button[type="submit"] svg,
footer .field__button svg {
  fill: white !important;
  stroke: none !important;
}
/* Remove any box/border wrapper around the button */
.email-signup__input-group {
  border-radius: 999px !important;
  overflow: hidden !important;
  border: 1px solid rgba(255,255,255,0.25) !important;
  background: rgba(255,255,255,0.08) !important;
}
/* Arrow button fix */
.email-signup__button.email-signup__button--integrated {
  all: unset !important;
  cursor: pointer !important;
  padding: 0 20px !important;
  display: flex !important;
  align-items: center !important;
  color: white !important;
}
.email-signup__button svg { width: 20px; height: 20px; fill: white !important; }