@import url("sticky-sidebar.css");
@import url("mobile-overflow.css");

:root {
  --navy: #0a1e46;
  --navy-2: #122c63;
  --navy-3: #183671;
  --red: #e11f2d;
  --red-dark: #c71a26;
  --gold: #d9a420;
  --gold-dark: #b98815;
  --text: #13233e;
  --text-soft: #5d6b7d;
  --line: #d8dee7;
  --blue-accent: #244fb0;
  --container: 1220px;
  --site-header-height: 136px;
  --hero-duration: 12s;
  --gold-divider-height: 3px;
  --gold-divider-gradient: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.55) 0%,
    rgba(217, 164, 32, 0.95) 50%,
    rgba(255, 255, 255, 0.55) 100%
  );
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  max-width: 100%;
}

body {
  margin: 0;
  padding-top: var(--site-header-height);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.55;
  overflow-x: clip;
  max-width: 100%;
}

body.header-over-hero {
  padding-top: 0;
}

/* Hero pages sit behind the fixed header — offset content below the nav row */
body.header-over-hero .hero-inner {
  padding-top: calc(var(--site-header-height) + clamp(40px, 5vw, 56px));
}

body.header-over-hero main > :first-child[class*="hero"]:not(.hero) {
  padding-top: calc(var(--site-header-height) + clamp(32px, 4vw, 48px));
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

svg {
  display: block;
}

.container {
  width: min(var(--container), calc(100% - 34px));
  margin: 0 auto;
}

/* HEADER */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
}

.site-header.is-over-hero:not(.is-scrolled) .site-nav > a,
.site-header.is-over-hero:not(.is-scrolled) .site-nav > .site-nav-item > .site-nav-link {
  color: rgba(255, 255, 255, 0.96);
  text-shadow: 0 1px 10px rgba(10, 30, 70, 0.5);
}

.site-header.is-over-hero:not(.is-scrolled) .site-nav > a:hover,
.site-header.is-over-hero:not(.is-scrolled) .site-nav > .site-nav-item > .site-nav-link:hover {
  color: var(--gold);
}

.site-header.is-over-hero:not(.is-scrolled) .site-nav > a[aria-current="page"],
.site-header.is-over-hero:not(.is-scrolled) .site-nav > .site-nav-item > .site-nav-link[aria-current="page"] {
  background: transparent !important;
  color: var(--gold) !important;
}

.site-header.is-over-hero:not(.is-scrolled) .site-nav-dropdown a {
  color: var(--navy);
  text-shadow: none;
}

.site-header.is-over-hero:not(.is-scrolled) .site-nav-dropdown a:hover {
  color: var(--gold-dark);
  background: rgba(217, 164, 32, 0.1);
}

.site-header.is-over-hero:not(.is-scrolled) .brand .brand-logo {
  filter: brightness(0) invert(1);
}

.site-header.is-over-hero:not(.is-scrolled) .menu-toggle {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
}

.site-header.is-over-hero:not(.is-scrolled) .menu-toggle span {
  background: #fff;
}

.site-header.is-over-hero:not(.is-scrolled) .theme-toggle,
.site-header.is-over-hero:not(.is-scrolled) .lang-toggle {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
  color: #fff;
  box-shadow: none;
}

.site-header.is-over-hero:not(.is-scrolled) .theme-toggle:hover,
.site-header.is-over-hero:not(.is-scrolled) .lang-toggle:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(217, 164, 32, 0.35);
}

.site-header.is-over-hero:not(.is-scrolled) .theme-toggle__icon,
.site-header.is-over-hero:not(.is-scrolled) .lang-toggle__icon {
  color: var(--gold);
}

.header-topbar {
  position: relative;
  background: var(--navy);
  color: #fff;
  border-bottom: 2px solid rgba(217, 164, 32, 0.95);
}

.header-topbar::before,
.header-topbar::after {
  content: none;
}

.header-topbar-row {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.countdown-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
  white-space: nowrap;
  font-size: 13px;
}

.countdown-label {
  font-weight: 800;
  color: rgba(255, 255, 255, 0.86);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.countdown-value {
  font-weight: 900;
  color: #fff;
  font-variant-numeric: tabular-nums;
}

.countdown-stars {
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.24em;
  flex-shrink: 0;
}

.header-social {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.header-social a {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  transition: background 0.16s ease, transform 0.16s ease;
}

.header-social a:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-2px);
}

.header-social svg {
  width: 16px;
  height: 16px;
  fill: #fff;
}

.header-main {
  width: 100%;
  background: transparent;
  border-bottom: 1px solid transparent;
  box-shadow: none;
  transition:
    background 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    backdrop-filter 0.22s ease;
}

.header-main-inner {
  position: relative;
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-header:not(.is-over-hero) .header-main,
.site-header.is-scrolled .header-main {
  background: rgba(255, 255, 255, 0.98);
  border-bottom-color: rgba(19, 35, 62, 0.08);
  box-shadow: 0 4px 14px rgba(16, 24, 40, 0.04);
}

.site-header.is-scrolled .header-main {
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.site-header.is-over-hero:not(.is-scrolled) .header-main {
  background: transparent;
  border-bottom-color: transparent;
  box-shadow: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.brand img,
.brand .brand-logo,
.footer-expanded-brand .brand-logo,
.footer-brand .brand-logo {
  display: block;
  height: 54px;
  width: auto;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav-item--dropdown {
  position: relative;
}

.site-nav-item--dropdown > .site-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.site-nav-item--dropdown > .site-nav-link::after {
  content: "";
  width: 5px;
  height: 5px;
  margin-top: -2px;
  border: 0;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  opacity: 0.42;
  transform: rotate(45deg);
}

.site-nav-dropdown {
  position: absolute;
  top: 100%;
  left: auto;
  right: 0;
  z-index: 20;
  min-width: 176px;
  padding: 8px 6px 6px;
  border: 1px solid rgba(10, 30, 70, 0.12);
  border-top: 2px solid var(--gold);
  border-radius: 12px;
  background: linear-gradient(180deg, #f8fafd 0%, #f1f5fa 100%);
  box-shadow:
    0 4px 8px rgba(10, 30, 70, 0.06),
    0 16px 36px rgba(10, 30, 70, 0.12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(4px);
  transition:
    opacity 0.16s ease,
    transform 0.16s ease,
    visibility 0s linear 0.18s;
}

.site-nav-item--dropdown::before {
  content: "";
  position: absolute;
  top: 100%;
  left: -12px;
  right: -12px;
  height: 14px;
}

.site-nav-item--dropdown:hover .site-nav-dropdown,
.site-nav-item--dropdown:focus-within .site-nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition-delay: 0s;
}

.site-nav-dropdown a {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--navy);
  white-space: nowrap;
  transition:
    color 0.14s ease,
    background 0.14s ease;
}

.site-nav-dropdown a:hover {
  background: rgba(217, 164, 32, 0.1);
  color: var(--gold-dark);
}

.site-nav-dropdown a[aria-current="page"] {
  color: var(--gold) !important;
  font-weight: 800;
  background: rgba(217, 164, 32, 0.1);
}

.site-nav a {
  font-size: 16px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.01em;
}

.site-nav a[aria-current="page"],
.site-nav .site-nav-link[aria-current="page"] {
  background: transparent !important;
  padding: 0 !important;
  border-radius: 0 !important;
  color: var(--gold) !important;
  text-shadow: none;
}

.site-header.is-scrolled .site-nav a[aria-current="page"],
.site-header.is-scrolled .site-nav .site-nav-link[aria-current="page"],
.site-header:not(.is-over-hero) .site-nav a[aria-current="page"],
.site-header:not(.is-over-hero) .site-nav .site-nav-link[aria-current="page"] {
  color: var(--gold) !important;
  text-shadow: none;
}

.site-nav > a:hover,
.site-nav > .site-nav-item > .site-nav-link:hover {
  color: var(--red);
}

.site-nav a[aria-current="page"]:hover,
.site-nav .site-nav-link[aria-current="page"]:hover {
  color: var(--gold) !important;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 14px;
  border: 2px solid transparent;
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--navy) !important;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(217, 164, 32, 0.22);
  transition:
    transform 0.16s ease,
    box-shadow 0.16s ease,
    background 0.16s ease;
}

.header-cta:hover {
  transform: translateY(-2px);
  color: var(--navy) !important;
  box-shadow: 0 16px 28px rgba(217, 164, 32, 0.28);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(19, 35, 62, 0.14);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  margin: 4px auto;
  border-radius: 999px;
}

/* FOOTER */
.site-footer {
  background: #06152f;
  color: #fff;
  padding: 28px 0;
}

.footer-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 24px;
  align-items: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand .brand-logo {
  display: block;
  height: 54px;
  width: auto;
  object-fit: contain;
}

.footer-brand p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  font-weight: 700;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  font-weight: 800;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.16s ease, transform 0.16s ease;
}

.footer-social a:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-2px);
}

.footer-social svg {
  width: 17px;
  height: 17px;
  fill: #fff;
}

/* Expanded footer */
.site-footer--expanded {
  padding: 56px 0 0;
}

.footer-expanded-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr) 1.2fr;
  gap: 32px;
  padding-bottom: 40px;
  width: 100%;
  max-width: 100%;
}

.footer-expanded-grid > .footer-expanded-brand,
.footer-expanded-grid > .footer-col,
.footer-expanded-grid > .footer-newsletter {
  min-width: 0;
  max-width: 100%;
}

.footer-expanded-brand .brand-logo {
  margin-bottom: 16px;
}

.footer-expanded-brand p {
  margin: 0 0 20px;
  max-width: 28ch;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 500;
}

.footer-col h3 {
  margin: 0 0 16px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col li + li {
  margin-top: 10px;
}

.footer-col a {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.78);
}

.footer-col a:hover {
  color: #fff;
}

.footer-newsletter p {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 500;
}

.footer-newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-newsletter-form input {
  flex: 1 1 160px;
  min-width: 0;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font: inherit;
  font-size: 14px;
}

.footer-newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.footer-newsletter-form button {
  flex: 0 0 auto;
  min-height: 46px;
  padding: 0 18px;
  border: none;
  border-radius: 10px;
  background: var(--red);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
  transition: background 0.16s ease, transform 0.16s ease;
}

.footer-newsletter-form button:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}

.footer-newsletter-cf7 .wpcf7 {
  margin: 0;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.footer-newsletter-cf7 .wpcf7-form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.footer-newsletter-cf7 .wpcf7-form > p {
  margin: 0;
  min-width: 0;
}

.footer-newsletter-cf7 .wpcf7-form > p:first-child {
  flex: 1 1 160px;
  min-width: 0;
}

.footer-newsletter-cf7 .wpcf7-form-control-wrap {
  flex: 1 1 auto;
  min-width: 0;
  width: 100%;
  display: block;
}

.footer-newsletter-cf7 .wpcf7-form > p:has([type="submit"]) {
  flex: 0 0 auto;
}

.footer-newsletter-cf7 input[type="email"] {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font: inherit;
  font-size: 14px;
}

.footer-newsletter-cf7 input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.footer-newsletter-cf7 input[type="submit"] {
  min-height: 46px;
  padding: 0 18px;
  border: none;
  border-radius: 10px;
  background: var(--red);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
  transition: background 0.16s ease, transform 0.16s ease;
}

.footer-newsletter-cf7 input[type="submit"]:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}

.footer-newsletter-cf7 .wpcf7-not-valid-tip {
  margin-top: 6px;
  font-size: 12px;
  color: #ffb4b4;
}

.footer-newsletter-cf7 .wpcf7-response-output {
  margin: 10px 0 0;
  padding: 0;
  border: none;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}

.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
}

.footer-bottom-bar strong {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

@media (max-width: 1100px) {
  .footer-expanded-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 700px) {
  .footer-expanded-grid {
    grid-template-columns: 1fr;
  }

  .footer-col,
  .footer-newsletter,
  .footer-newsletter-form,
  .footer-newsletter-cf7 .wpcf7 {
    min-width: 0;
    max-width: 100%;
  }

  .footer-newsletter-cf7 .wpcf7-form {
    flex-direction: column;
    align-items: stretch;
  }

  .footer-newsletter-cf7 .wpcf7-form > p:first-child,
  .footer-newsletter-cf7 .wpcf7-form > p:has([type="submit"]) {
    flex: 0 0 auto;
    width: 100%;
  }

  .footer-newsletter-cf7 input[type="submit"] {
    width: 100%;
  }

  .footer-bottom-bar {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 14px 26px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: -0.01em;
  transition: transform 0.16s ease, background 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease;
  border: 2px solid transparent;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(180deg, var(--red) 0%, var(--red-dark) 100%);
  color: #fff;
  box-shadow: 0 10px 22px rgba(225, 31, 45, 0.18);
}

.btn-primary:hover {
  box-shadow: 0 16px 28px rgba(225, 31, 45, 0.24);
}

.btn-outline-light {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.08);
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 18px;
  border-radius: 999px;
  background: #fff;
  color: var(--navy);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 18px;
  border: 1px solid rgba(19, 35, 62, 0.1);
  box-shadow: 0 8px 18px rgba(13, 27, 56, 0.06);
}

.section-kicker-dark {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: none;
  box-shadow: none;
}

.hero .section-kicker.section-kicker-dark {
  display: block;
  width: fit-content;
  min-height: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  color: var(--gold);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* HERO */
.hero-stars {
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.5em;
  user-select: none;
  pointer-events: none;
}

.hero-copy-stars {
  margin: 0 0 10px;
}

.dark-stars {
  position: absolute;
  z-index: 1;
  color: var(--navy);
  font-size: 13px;
  letter-spacing: 0.5em;
  user-select: none;
  opacity: 0.35;
  pointer-events: none;
}

.dark-stars-left {
  top: 64px;
  left: 8%;
}

.dark-stars-right {
  top: 96px;
  right: 8%;
}

.section.section-white.products-section > .dark-stars {
  position: absolute;
  width: max-content;
  max-width: min(240px, calc(100% - 32px));
}

.hero {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  background: var(--navy);
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.4s ease;
  background-size: cover;
  background-position: center 38%;
  background-repeat: no-repeat;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(10, 30, 70, 0.86) 0%, rgba(10, 30, 70, 0.72) 44%, rgba(10, 30, 70, 0.35) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.10), rgba(0, 0, 0, 0.35));
}

.hero-inner {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  min-height: 680px;
  padding: 124px 0 clamp(84px, 10vh, 100px);
}

.hero-marquee {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  overflow: hidden;
  width: 100%;
  padding: clamp(14px, 2vh, 20px) 0;
  min-height: clamp(52px, 7vh, 64px);
  display: flex;
  align-items: center;
  background: transparent;
}

.hero-marquee-track {
  display: flex;
  width: max-content;
  animation: hero-marquee 32s linear infinite;
}

.hero-marquee-group {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 36px);
  padding-right: clamp(24px, 3vw, 36px);
  font-size: clamp(16px, 1.55vw, 21px);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 2px 12px rgba(10, 30, 70, 0.55);
}

.hero-marquee-dot {
  color: var(--gold);
  font-size: clamp(12px, 1.1vw, 15px);
}

@keyframes hero-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-marquee-track {
    animation: none;
  }
}

.hero-copy {
  width: 100%;
  max-width: 760px;
  color: #fff;
}

.hero-copy-rotator {
  position: relative;
}

.hero-copy-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.85s ease, transform 0.85s ease;
  pointer-events: none;
}

.hero-copy-slide.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.hero h1 {
  margin: 0 0 18px;
  font-size: clamp(42px, 5vw, 57px);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.hero-heading-flash {
  animation: heroHeadingFlash 1.2s ease-in-out infinite alternate;
}

.hero-h1-line {
  display: block;
}

.hero-h1-deal-line {
  display: block;
  margin-top: 12px;
  font-size: clamp(46px, 9vw, 94px);
  letter-spacing: -0.045em;
  line-height: 0.92;
}

@keyframes heroHeadingFlash {
  0% {
    color: var(--gold);
    text-shadow: 0 0 0 rgba(217, 164, 32, 0);
  }

  100% {
    color: var(--red);
    text-shadow: 0 0 16px rgba(225, 31, 45, 0.12);
  }
}

.hero-text {
  max-width: 690px;
  margin: 0;
  font-size: 18px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.88);
}

.hero-buttons {
  margin: 34px 0;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 10px 40px;
  max-width: none;
}

.hero-stat {
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  flex: 0 0 auto;
}

.hero-stat strong {
  display: block;
  margin-bottom: 4px;
  font-size: clamp(32px, 3.6vw, 44px);
  line-height: 1;
  letter-spacing: -0.03em;
  font-weight: 900;
  color: #fff;
}

.hero-stat span {
  display: block;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hero-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.hero-arrow,
.hero-pause {
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.16s ease, transform 0.16s ease;
}

.hero-arrow:hover,
.hero-pause:hover {
  background: transparent;
  opacity: 0.82;
  transform: translateY(-1px);
}

.hero-arrow:focus-visible,
.hero-pause:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.85);
  outline-offset: 3px;
}

.hero-arrow svg,
.hero-pause svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-dots {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 4px;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: none;
  padding: 0;
  background: rgba(255, 255, 255, 0.28);
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
}

.hero-dot.is-active {
  width: 28px;
  background: linear-gradient(90deg, var(--gold) 0%, #f0d078 100%);
}

.hero-pause .icon-play {
  display: none;
}

.hero.is-paused .hero-pause .icon-pause {
  display: none;
}

.hero.is-paused .hero-pause .icon-play {
  display: block;
}

.hero-progress {
  margin-top: 14px;
  height: 3px;
  max-width: 280px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  overflow: hidden;
}

.hero-progress-bar {
  display: block;
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold) 0%, #f5dc8a 100%);
  transform-origin: left center;
}

.hero.is-paused .hero-progress-bar {
  animation-play-state: paused;
}

.hero-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  line-height: 0;
  z-index: 2;
}

.hero-wave svg {
  width: 100%;
  height: 96px;
}

.hero-wave path {
  fill: var(--red);
  stroke: rgba(217, 164, 32, 0.85);
  stroke-width: 4px;
  vector-effect: non-scaling-stroke;
  paint-order: stroke fill;
}

.hero-wave--straight {
  height: 4px;
  background: linear-gradient(
    90deg,
    rgba(217, 164, 32, 0.75) 0%,
    var(--gold) 50%,
    rgba(217, 164, 32, 0.75) 100%
  );
  line-height: 0;
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide,
  .hero-copy-slide,
  .hero-progress-bar {
    transition: none !important;
    animation: none !important;
  }
}

/* STATES BAND */
.states-band {
  position: relative;
  z-index: 3;
  padding: 22px 0 28px;
  background: linear-gradient(180deg, var(--red) 0%, #c91b27 100%);
}

.states-band::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 5px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.75) 0%,
    rgba(217, 164, 32, 0.95) 50%,
    rgba(255, 255, 255, 0.75) 100%
  );
}

.states-band .container {
  width: min(1440px, calc(100% - 20px));
}

.states-band-head {
  margin: 0 0 14px;
  text-align: center;
}

.states-band-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 8px;
}

.states-band-sub {
  margin: 0 auto;
  max-width: 420px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: 0.02em;
}

.states-band-heading {
  margin: 0;
  color: #fff;
  font-size: 18px;
  font-weight: 1000;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.2;
}

.states-band-stars {
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1;
  white-space: nowrap;
  text-shadow: 0 10px 18px rgba(0, 0, 0, 0.28);
}

.states-grid {
  display: grid;
  grid-template-columns: repeat(10, minmax(0, 1fr));
  gap: 10px;
  width: 100%;
  padding: 8px 0 12px;
}

/* State tiles — frosted cards on red band */
.state-tile {
  width: 100%;
  min-height: 148px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 14px 18px;
  text-align: center;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 5px solid rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.14);
  text-decoration: none;
  overflow: hidden;
  position: relative;
  transition: transform 0.16s ease, background 0.16s ease, box-shadow 0.16s ease;
}

.state-tile::before {
  content: "";
  position: absolute;
  inset: -50% auto auto -30%;
  width: 120%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(255, 255, 255, 0.22) 50%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.18s ease, transform 0.38s ease;
}

.state-tile:hover,
.state-tile:focus-visible {
  transform: translateY(-5px) scale(1.035);
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 18px 26px rgba(0, 0, 0, 0.18);
}

.state-tile:hover::before,
.state-tile:focus-visible::before {
  opacity: 1;
  transform: translateX(18%) rotate(8deg);
}

.state-tile:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.state-tile-flag {
  display: block;
  width: 72px;
  height: 46px;
  object-fit: contain;
  filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.18));
  transition: transform 0.16s ease, filter 0.16s ease;
}

.state-tile:hover .state-tile-flag,
.state-tile:focus-visible .state-tile-flag {
  transform: translateY(-2px) scale(1.08);
  filter: drop-shadow(0 10px 14px rgba(0, 0, 0, 0.24));
}

.state-tile-name {
  display: block;
  width: 100%;
  color: #fff;
  font-size: clamp(15px, 1.4vw, 20px);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-align: center;
  text-wrap: balance;
}

@media (min-width: 1201px) {
  .state-tile {
    min-height: 156px;
    padding: 18px 16px 20px;
  }

  .state-tile-flag {
    width: 92px;
    height: 58px;
  }

  .state-tile-name {
    font-size: 20px;
  }
}

@media (max-width: 1100px) {
  .states-band .container {
    width: min(var(--container), calc(100% - 28px));
  }

  .states-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .state-tile {
    transition-duration: 0.01ms !important;
  }

  .state-tile:hover,
  .state-tile:focus-visible {
    transform: none;
  }
}

/* USA 250 + fundraising + products — one continuous band */
.summer-shop-band {
  position: relative;
  overflow-x: hidden;
  isolation: isolate;
  background-color: #d8d4cd;
  background-image: url("../images/fireworks-pattern.jpg");
  background-repeat: repeat;
  background-position: 0 0;
  background-size: min(420px, 92vw);
  background-attachment: fixed;
}

.summer-shop-band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.14) 0%,
    rgba(216, 212, 205, 0.22) 100%
  );
}

.summer-shop-band > section,
.summer-shop-band .shop-app-band > section {
  position: relative;
  z-index: 1;
  background: transparent;
  background-image: none;
}

.summer-shop-band .shop-app-band {
  position: relative;
  z-index: 1;
}

.usa250-section {
  overflow-x: hidden;
  padding: 88px 0 0;
}

.usa250-section--exclusive {
  padding-top: 72px;
}

.usa250-shell {
  width: min(1160px, calc(100% - 34px));
  margin: 0 auto;
  padding-bottom: 88px;
}

.section-lead {
  margin: 0 0 16px;
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-soft);
}

.center-copy {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.usa250-exclusive {
  margin-top: 0;
}

.usa250-exclusive-head {
  text-align: center;
  max-width: 980px;
  margin: 0 auto 34px;
}

.usa250-exclusive-stars {
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 18px;
  line-height: 1;
}

.usa250-exclusive-head h2 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: clamp(34px, 3.6vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.usa250-flag-underline {
  position: relative;
  width: min(460px, 100%);
  height: 16px;
  margin: 18px auto 18px;
  border-radius: 999px;
  overflow: hidden;
  background: linear-gradient(
    90deg,
    #244fb0 0%,
    #244fb0 18%,
    #d91f2d 18%,
    #d91f2d 31%,
    #ffffff 31%,
    #ffffff 44%,
    #d91f2d 44%,
    #d91f2d 57%,
    #ffffff 57%,
    #ffffff 70%,
    #d91f2d 70%,
    #d91f2d 83%,
    #ffffff 83%,
    #ffffff 100%
  );
  box-shadow: 0 10px 18px rgba(13, 27, 56, 0.08);
  border: 1px solid rgba(19, 35, 62, 0.08);
}

.usa250-flag-underline span {
  position: absolute;
  left: 9%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.22em;
  white-space: nowrap;
}

.usa250-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.usa250-product-card {
  background: #fff;
  border: 1px solid var(--line);
  border-bottom: 5px solid var(--red);
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(13, 27, 56, 0.08);
  transition: transform 0.16s ease, box-shadow 0.16s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.usa250-product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 36px rgba(13, 27, 56, 0.12);
}

.usa250-product-image {
  min-height: 248px;
  background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 16px;
}

.usa250-product-image img {
  width: 100%;
  max-width: 220px;
  height: auto;
  max-height: 220px;
  object-fit: contain;
}

.usa250-product-body {
  padding: 22px 20px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  min-height: 132px;
}

.usa250-product-body h3 {
  color: var(--navy);
  text-wrap: balance;
}

.usa250-product-body p {
  margin: 0 0 4px;
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.55;
}

.product-card-view {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  margin-top: auto;
  padding-top: 12px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  transition: color 0.15s ease;
}

.product-card-view:hover {
  color: var(--gold-dark);
  text-decoration: underline;
}

.product-card-view:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  border-radius: 4px;
}

@keyframes product-card-image-glow {
  0%,
  100% {
    opacity: 0.45;
  }

  50% {
    opacity: 0.85;
  }
}

/* Catalog product cards — homepage featured grid + products browser */
.products-browser .product-grid,
.product-grid--catalog {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.products-browser .product-grid .product-card,
.product-grid--catalog .product-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid rgba(10, 30, 70, 0.12);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 2px 12px rgba(10, 30, 70, 0.04);
  transition:
    border-color 0.28s ease,
    box-shadow 0.28s ease;
}

.products-browser .product-grid .product-card:hover,
.product-grid--catalog .product-card:hover {
  transform: none;
  border-color: rgba(225, 31, 45, 0.28);
  box-shadow:
    0 10px 28px rgba(10, 30, 70, 0.08),
    0 0 24px rgba(225, 31, 45, 0.07);
}

.products-browser .product-grid .product-image-wrap,
.product-grid--catalog .product-image-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  min-height: 0;
  aspect-ratio: 5 / 4;
  padding: clamp(20px, 3vw, 28px);
  border-bottom: 1px solid rgba(10, 30, 70, 0.06);
  background:
    radial-gradient(120% 80% at 50% 100%, rgba(10, 30, 70, 0.04) 0%, transparent 55%),
    linear-gradient(180deg, #f6f8fb 0%, #eef2f7 100%);
  transition: background 0.35s ease;
}

.products-browser .product-grid .product-image-wrap::after,
.product-grid--catalog .product-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 50% 100%, rgba(225, 31, 45, 0.07) 0%, transparent 58%),
    radial-gradient(ellipse 70% 55% at 18% 12%, rgba(10, 30, 70, 0.05) 0%, transparent 52%),
    radial-gradient(ellipse 70% 55% at 82% 12%, rgba(217, 164, 32, 0.06) 0%, transparent 52%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.products-browser .product-grid .product-card:hover .product-image-wrap,
.product-grid--catalog .product-card:hover .product-image-wrap {
  background:
    radial-gradient(120% 80% at 50% 100%, rgba(225, 31, 45, 0.05) 0%, transparent 55%),
    linear-gradient(180deg, #f8f9fc 0%, #eef2f7 100%);
}

.products-browser .product-grid .product-card:hover .product-image-wrap::after,
.product-grid--catalog .product-card:hover .product-image-wrap::after {
  opacity: 1;
  animation: product-card-image-glow 5.5s ease-in-out infinite;
}

.products-browser .product-grid .product-image-wrap img,
.product-grid--catalog .product-image-wrap img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  object-fit: contain;
  transition: transform 0.35s ease;
}

.products-browser .product-grid .product-card:hover .product-image-wrap img,
.product-grid--catalog .product-card:hover .product-image-wrap img {
  transform: scale(1.03);
}

@media (min-width: 701px) {
  .product-grid--catalog .product-image-wrap--zoom {
    overflow: hidden;
  }

  .product-grid--catalog .product-image-wrap--zoom img {
    transform: scale(1.32);
  }

  .product-grid--catalog .product-card:hover .product-image-wrap--zoom img {
    transform: scale(1.36);
  }
}

.products-browser .product-grid .product-card-body,
.product-grid--catalog .product-card-body {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 20px 22px 22px;
  min-height: 0;
  gap: 0;
}

.products-browser .product-grid .product-card-body h3,
.product-grid--catalog .product-card-body h3 {
  margin: 0 0 10px;
  font-size: clamp(16px, 1.35vw, 18px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.25;
  color: var(--navy);
  text-wrap: balance;
}

.products-browser .product-grid .product-card-subnote,
.product-grid--catalog .product-card-subnote {
  margin: 0 0 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--red);
}

.products-browser .product-grid .product-card-subnote span,
.product-grid--catalog .product-card-subnote span,
.products-browser .product-grid .swirl-underline,
.product-grid--catalog .swirl-underline {
  display: inline;
  padding-bottom: 0;
  color: var(--red);
  text-decoration: underline;
  text-decoration-color: rgba(225, 31, 45, 0.42);
  text-underline-offset: 0.22em;
  text-decoration-thickness: 1px;
}

.products-browser .product-grid .swirl-underline::after,
.product-grid--catalog .swirl-underline::after {
  display: none;
}

.products-browser .product-grid .product-card p,
.product-grid--catalog .product-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.62;
  font-weight: 400;
  color: var(--text-soft);
}

.products-browser .product-grid .product-card-view,
.product-grid--catalog .product-card-view {
  align-self: stretch;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(10, 30, 70, 0.07);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  color: var(--gold);
  text-decoration: none;
}

.products-browser .product-grid .product-card-view::after,
.product-grid--catalog .product-card-view::after {
  content: "→";
  margin-left: 6px;
  font-weight: 400;
  transition: transform 0.2s ease;
}

.products-browser .product-grid .product-card-view:hover,
.product-grid--catalog .product-card-view:hover {
  color: var(--gold-dark);
  text-decoration: none;
}

.products-browser .product-grid .product-card-view:hover::after,
.product-grid--catalog .product-card-view:hover::after {
  transform: translateX(4px);
}

.products-browser .product-grid .product-card-view:focus-visible,
.product-grid--catalog .product-card-view:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  .products-browser .product-grid .product-card:hover .product-image-wrap::after,
  .product-grid--catalog .product-card:hover .product-image-wrap::after,
  .products-page-exclusive .usa250-product-grid .usa250-product-card:hover .usa250-product-image::after,
  .usa250-section--exclusive .usa250-product-grid .usa250-product-card:hover .usa250-product-image::after,
  .usa250-section--new2026 .usa250-product-grid .usa250-product-card:hover .usa250-product-image::after {
    animation: none;
    opacity: 0.65;
  }
}

/* USA 250 exclusive grids — match catalog cards (products page + home #usa250, #new-2026) */
.products-page-exclusive .usa250-product-grid,
.usa250-section--exclusive .usa250-product-grid,
.usa250-section--new2026 .usa250-product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.products-page-exclusive .usa250-product-grid .usa250-product-card,
.usa250-section--exclusive .usa250-product-grid .usa250-product-card,
.usa250-section--new2026 .usa250-product-grid .usa250-product-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(10, 30, 70, 0.12);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 2px 12px rgba(10, 30, 70, 0.04);
  transition:
    border-color 0.28s ease,
    box-shadow 0.28s ease;
}

.products-page-exclusive .usa250-product-grid .usa250-product-card:hover,
.usa250-section--exclusive .usa250-product-grid .usa250-product-card:hover,
.usa250-section--new2026 .usa250-product-grid .usa250-product-card:hover {
  transform: none;
  border-color: rgba(225, 31, 45, 0.28);
  box-shadow:
    0 10px 28px rgba(10, 30, 70, 0.08),
    0 0 24px rgba(225, 31, 45, 0.07);
}

.products-page-exclusive .usa250-product-grid .usa250-product-image,
.usa250-section--exclusive .usa250-product-grid .usa250-product-image,
.usa250-section--new2026 .usa250-product-grid .usa250-product-image {
  position: relative;
  z-index: 1;
  min-height: 0;
  aspect-ratio: 5 / 4;
  padding: clamp(20px, 3vw, 28px);
  border-bottom: 1px solid rgba(10, 30, 70, 0.06);
  background:
    radial-gradient(120% 80% at 50% 100%, rgba(10, 30, 70, 0.04) 0%, transparent 55%),
    linear-gradient(180deg, #f6f8fb 0%, #eef2f7 100%);
  transition: background 0.35s ease;
}

.products-page-exclusive .usa250-product-grid .usa250-product-image::after,
.usa250-section--exclusive .usa250-product-grid .usa250-product-image::after,
.usa250-section--new2026 .usa250-product-grid .usa250-product-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 50% 100%, rgba(225, 31, 45, 0.07) 0%, transparent 58%),
    radial-gradient(ellipse 70% 55% at 18% 12%, rgba(10, 30, 70, 0.05) 0%, transparent 52%),
    radial-gradient(ellipse 70% 55% at 82% 12%, rgba(217, 164, 32, 0.06) 0%, transparent 52%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.products-page-exclusive .usa250-product-grid .usa250-product-card:hover .usa250-product-image,
.usa250-section--exclusive .usa250-product-grid .usa250-product-card:hover .usa250-product-image,
.usa250-section--new2026 .usa250-product-grid .usa250-product-card:hover .usa250-product-image {
  background:
    radial-gradient(120% 80% at 50% 100%, rgba(225, 31, 45, 0.05) 0%, transparent 55%),
    linear-gradient(180deg, #f8f9fc 0%, #eef2f7 100%);
}

.products-page-exclusive .usa250-product-grid .usa250-product-card:hover .usa250-product-image::after,
.usa250-section--exclusive .usa250-product-grid .usa250-product-card:hover .usa250-product-image::after,
.usa250-section--new2026 .usa250-product-grid .usa250-product-card:hover .usa250-product-image::after {
  opacity: 1;
  animation: product-card-image-glow 5.5s ease-in-out infinite;
}

.products-page-exclusive .usa250-product-grid .usa250-product-image img,
.usa250-section--exclusive .usa250-product-grid .usa250-product-image img,
.usa250-section--new2026 .usa250-product-grid .usa250-product-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  object-fit: contain;
  transition: transform 0.35s ease;
}

.products-page-exclusive .usa250-product-grid .usa250-product-card:hover .usa250-product-image img,
.usa250-section--exclusive .usa250-product-grid .usa250-product-card:hover .usa250-product-image img,
.usa250-section--new2026 .usa250-product-grid .usa250-product-card:hover .usa250-product-image img {
  transform: scale(1.03);
}

.products-page-exclusive .usa250-product-grid .usa250-product-body,
.usa250-section--exclusive .usa250-product-grid .usa250-product-body,
.usa250-section--new2026 .usa250-product-grid .usa250-product-body {
  position: relative;
  z-index: 1;
  padding: 20px 22px 22px;
  min-height: 0;
  gap: 0;
}

.products-page-exclusive .usa250-product-grid .usa250-product-body h3,
.usa250-section--exclusive .usa250-product-grid .usa250-product-body h3,
.usa250-section--new2026 .usa250-product-grid .usa250-product-body h3 {
  margin: 0 0 10px;
  font-size: clamp(16px, 1.35vw, 18px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.25;
  color: var(--navy);
  text-wrap: balance;
}

.products-page-exclusive .usa250-product-grid .usa250-product-body p,
.usa250-section--exclusive .usa250-product-grid .usa250-product-body p,
.usa250-section--new2026 .usa250-product-grid .usa250-product-body p {
  margin: 0;
  font-size: 14px;
  line-height: 1.62;
  font-weight: 400;
  color: var(--text-soft);
}

.products-page-exclusive .usa250-product-grid .usa250-product-body .product-card-subnote,
.usa250-section--exclusive .usa250-product-grid .usa250-product-body .product-card-subnote,
.usa250-section--new2026 .usa250-product-grid .usa250-product-body .product-card-subnote {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--red);
}

.products-page-exclusive .usa250-product-grid .usa250-product-body .product-card-subnote span,
.usa250-section--exclusive .usa250-product-grid .usa250-product-body .product-card-subnote span,
.usa250-section--new2026 .usa250-product-grid .usa250-product-body .product-card-subnote span {
  color: var(--red);
  text-decoration: underline;
  text-decoration-color: rgba(225, 31, 45, 0.42);
  text-underline-offset: 0.22em;
  text-decoration-thickness: 1px;
}

.products-page-exclusive .usa250-product-grid .product-card-view,
.usa250-section--exclusive .usa250-product-grid .product-card-view,
.usa250-section--new2026 .usa250-product-grid .product-card-view {
  align-self: stretch;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(10, 30, 70, 0.07);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  color: var(--gold);
  text-decoration: none;
}

.products-page-exclusive .usa250-product-grid .product-card-view::after,
.usa250-section--exclusive .usa250-product-grid .product-card-view::after,
.usa250-section--new2026 .usa250-product-grid .product-card-view::after {
  content: "→";
  margin-left: 6px;
  font-weight: 400;
  transition: transform 0.2s ease;
}

.products-page-exclusive .usa250-product-grid .product-card-view:hover,
.usa250-section--exclusive .usa250-product-grid .product-card-view:hover,
.usa250-section--new2026 .usa250-product-grid .product-card-view:hover {
  color: var(--gold-dark);
  text-decoration: none;
}

.products-page-exclusive .usa250-product-grid .product-card-view:hover::after,
.usa250-section--exclusive .usa250-product-grid .product-card-view:hover::after,
.usa250-section--new2026 .usa250-product-grid .product-card-view:hover::after {
  transform: translateX(4px);
}

.products-page-exclusive .usa250-product-grid .product-card-view:focus-visible,
.usa250-section--exclusive .usa250-product-grid .product-card-view:focus-visible,
.usa250-section--new2026 .usa250-product-grid .product-card-view:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (max-width: 1280px) {
  .products-browser .product-grid,
  .product-grid--catalog,
  .products-page-exclusive .usa250-product-grid,
  .usa250-section--exclusive .usa250-product-grid,
  .usa250-section--new2026 .usa250-product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1100px) {
  .products-browser .product-grid,
  .product-grid--catalog,
  .products-page-browser .product-grid,
  .products-page-exclusive .usa250-product-grid,
  .usa250-section--exclusive .usa250-product-grid,
  .usa250-section--new2026 .usa250-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .products-browser .product-grid,
  .product-grid--catalog,
  .products-page-browser .product-grid,
  .products-page-exclusive .usa250-product-grid,
  .usa250-section--exclusive .usa250-product-grid,
  .usa250-section--new2026 .usa250-product-grid {
    grid-template-columns: 1fr;
  }
}

.usa250-gold-divider {
  width: 100%;
  height: var(--gold-divider-height);
  background: var(--gold-divider-gradient);
}

.summer-shop-band > .usa250-gold-divider {
  position: relative;
  z-index: 8;
  display: block;
}

.usa250-gold-divider + .site-footer {
  margin-top: 0;
}

@media (min-width: 900px) {
  .summer-shop-band {
    background-size: 560px;
  }
}

@media (max-width: 520px) {
  .summer-shop-band {
    background-size: 380px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .summer-shop-band {
    background-attachment: scroll;
  }
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .footer-row {
    grid-template-columns: 1fr;
  }

  .usa250-product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .hero {
    min-height: 640px;
  }

  .hero-inner {
    min-height: 640px;
    padding: 112px 0 clamp(76px, 9vh, 92px);
    align-items: flex-start;
  }

  .hero-marquee {
    min-height: 52px;
    padding: 14px 0;
  }

  .hero-copy-rotator {
    display: block;
    height: auto !important;
  }

  .hero-copy-slide {
    position: relative;
    inset: auto;
    opacity: 1 !important;
    transform: none !important;
    pointer-events: auto;
  }

  .hero-copy-slide:not(.is-active) {
    display: none;
  }

  .hero-stats {
    gap: 12px 28px;
  }

  .menu-toggle {
    display: inline-block;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 136px;
    left: 16px;
    right: 16px;
    background: #fff;
    border: 1px solid rgba(19, 35, 62, 0.1);
    border-radius: 18px;
    padding: 14px;
    box-shadow: 0 18px 38px rgba(13, 28, 56, 0.12);
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .site-nav.is-open {
    display: flex;
  }

  /* Open mobile panel is always light — override hero transparent-header link colors */
  .site-nav.is-open > a,
  .site-nav.is-open > .site-nav-item > .site-nav-link {
    color: var(--navy);
    text-shadow: none;
  }

  .site-header.is-over-hero:not(.is-scrolled) .site-nav.is-open > a,
  .site-header.is-over-hero:not(.is-scrolled) .site-nav.is-open > .site-nav-item > .site-nav-link {
    color: var(--navy);
    text-shadow: none;
  }

  .site-nav.is-open > a[aria-current="page"],
  .site-nav.is-open > .site-nav-item > .site-nav-link[aria-current="page"] {
    color: var(--gold) !important;
  }

  .site-header.is-over-hero:not(.is-scrolled) .site-nav.is-open > a[aria-current="page"],
  .site-header.is-over-hero:not(.is-scrolled) .site-nav.is-open > .site-nav-item > .site-nav-link[aria-current="page"] {
    color: var(--gold) !important;
  }

  .site-nav.is-open > a:hover,
  .site-nav.is-open > .site-nav-item > .site-nav-link:hover {
    color: var(--red);
  }

  .site-header.is-over-hero:not(.is-scrolled) .site-nav.is-open > a:hover,
  .site-header.is-over-hero:not(.is-scrolled) .site-nav.is-open > .site-nav-item > .site-nav-link:hover {
    color: var(--red);
  }

  .site-nav a {
    padding: 12px 14px;
    border-radius: 12px;
  }

  .site-nav-item--dropdown > .site-nav-link::after {
    display: none;
  }

  .site-nav-item--dropdown::before {
    display: none;
  }

  .site-nav-dropdown {
    position: static;
    min-width: 0;
    margin-top: 2px;
    padding: 0 0 4px 12px;
    border: none;
    border-left: 1px solid rgba(10, 30, 70, 0.08);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }

  .site-nav-dropdown a {
    padding: 8px 12px;
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
  }

  .site-nav-dropdown a:hover {
    background: transparent;
    color: var(--gold-dark);
  }

  .site-nav a:hover {
    background: #f6f6f4;
  }

  .header-cta {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 700px) {
  .hero,
  .hero-inner {
    min-height: auto;
  }

  .hero-inner {
    padding: 64px 0 clamp(68px, 8vh, 84px);
    align-items: flex-start;
  }

  .hero-marquee-group {
    gap: 20px;
    padding-right: 20px;
    font-size: 14px;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-copy-rotator {
    display: block;
    height: auto !important;
  }

  .hero-copy-slide {
    position: relative;
    inset: auto;
    opacity: 1 !important;
    transform: none !important;
    pointer-events: auto;
  }

  .hero-copy-slide:not(.is-active) {
    display: none;
  }

  .hero h1 {
    font-size: clamp(34px, 11vw, 52px);
    line-height: 1.02;
    margin: 0 0 14px;
    max-width: 100%;
  }

  .hero-h1-deal-line {
    margin-top: 10px;
    font-size: clamp(34px, 14vw, 62px);
    line-height: 0.9;
  }

  .hero-text {
    max-width: 100%;
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 18px;
  }

  .hero-buttons {
    margin: 22px 0 18px;
  }

  .hero-buttons .btn {
    width: 100%;
    min-height: 54px;
  }

  .hero-stats {
    gap: 16px 32px;
  }

  .hero-stat strong {
    font-size: 32px;
  }

  .hero-stat span {
    font-size: 13px;
  }

  .hero-stars {
    display: none;
  }

  .hero-controls {
    width: 100%;
    justify-content: space-between;
  }

  .hero-progress {
    display: none;
  }

  .hero-wave svg {
    height: 68px;
  }

  .states-band {
    padding: 22px 0 24px;
  }

  .states-band-heading {
    font-size: 16px;
    letter-spacing: 0.12em;
  }

  .states-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .state-tile {
    min-height: 124px;
    padding: 12px 10px 14px;
  }

  .state-tile-flag {
    width: 64px;
    height: 40px;
  }

  .state-tile-name {
    font-size: 22px;
  }

  .usa250-section--exclusive {
    padding-top: 56px;
  }

  .usa250-shell {
    padding-bottom: 64px;
  }

  .usa250-product-grid {
    grid-template-columns: 1fr;
  }

  .usa250-product-image {
    min-height: 200px;
  }

  .usa250-product-image img {
    max-height: 180px;
  }

  .usa250-product-body {
    padding: 18px 18px 20px;
    min-height: 120px;
  }

  .header-topbar-row {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 10px 0;
  }

  .countdown-wrap {
    width: 100%;
    justify-content: center;
    font-size: 10px;
    gap: 4px;
  }

  .countdown-stars {
    font-size: 8px;
    letter-spacing: 0.1em;
  }

  .countdown-label {
    letter-spacing: 0.02em;
  }

  .header-social {
    align-self: flex-end;
  }

  .brand img,
  .brand .brand-logo {
    height: 46px;
    width: auto;
  }

  .footer-brand {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-social {
    justify-content: flex-start;
  }
}

@media (max-width: 900px) {
  .header-topbar-row {
    gap: 10px;
  }

  .countdown-wrap {
    flex: 1 1 auto;
    min-width: 0;
    gap: 5px;
    font-size: 11px;
  }

  .countdown-stars {
    font-size: 9px;
    letter-spacing: 0.12em;
  }

  .countdown-label {
    letter-spacing: 0.03em;
  }
}

@media (min-width: 701px) and (max-width: 900px) {
  .countdown-wrap {
    font-size: 11px;
  }
}
