:root {
  --ink: #101828;
  --muted: #667085;
  --line: #d9dee8;
  --soft: #f3f5f8;
  --paper: #ffffff;
  --navy: #071b3a;
  --blue: #164a96;
  --red: #c51f2f;
  --gold: #f5b43b;
  --green: #0f7d5c;
  --shadow: 0 18px 45px rgba(16, 24, 40, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
  line-height: 1.45;
}

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

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

button,
input {
  font: inherit;
}

.top-promo {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  min-height: 38px;
  padding: 8px 16px;
  color: #fff;
  background: var(--red);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.top-promo a {
  padding-left: 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.45);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 6px 18px rgba(16, 24, 40, 0.06);
}

.header-main {
  display: grid;
  grid-template-columns: minmax(220px, 300px) minmax(260px, 1fr) auto;
  align-items: center;
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 18px 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: #fff;
  background: var(--navy);
  border-radius: 8px;
  font-weight: 900;
  letter-spacing: 0;
}

.brand strong {
  display: block;
  font-size: 20px;
  line-height: 1.05;
}

.brand small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.search-box {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 44px;
  padding: 0 14px;
  background: var(--soft);
  border: 1px solid #e1e6ef;
  border-radius: 4px;
}

.search-box svg {
  width: 18px;
  color: #475467;
}

.search-box input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.icon-button,
.cart-button,
.button,
.filter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  cursor: pointer;
  border-radius: 4px;
}

.icon-button {
  width: 42px;
  height: 42px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
}

.cart-button {
  min-width: 104px;
  height: 42px;
  padding: 0 12px;
  color: #fff;
  background: var(--navy);
  font-weight: 800;
}

.cart-button strong {
  display: grid;
  place-items: center;
  min-width: 22px;
  height: 22px;
  color: var(--navy);
  background: #fff;
  border-radius: 999px;
  font-size: 12px;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 4px;
  padding: 0 24px;
  background: var(--navy);
}

.main-nav a {
  padding: 13px 24px;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.main-nav a:hover {
  background: rgba(255, 255, 255, 0.12);
}

.hero {
  position: relative;
  min-height: 560px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 14, 31, 0.86), rgba(5, 14, 31, 0.52), rgba(5, 14, 31, 0.12));
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 690px;
  padding: 72px 28px;
  margin-left: max(28px, calc((100vw - 1280px) / 2 + 28px));
  color: #fff;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--gold);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(42px, 6vw, 74px);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 19px;
  line-height: 1.2;
}

.hero-copy p:not(.eyebrow) {
  max-width: 580px;
  color: #d7deea;
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  min-height: 46px;
  padding: 0 18px;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 13px;
}

.button.primary {
  color: #fff;
  background: var(--red);
}

.button.secondary {
  color: var(--navy);
  background: #fff;
  border: 1px solid var(--line);
}

.button.dark {
  color: #fff;
  background: var(--navy);
}

.utility-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1280px;
  margin: -36px auto 0;
  position: relative;
  z-index: 2;
  padding: 0 28px;
}

.utility-band div {
  min-height: 96px;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-right: 0;
  box-shadow: 0 16px 30px rgba(16, 24, 40, 0.08);
}

.utility-band div:last-child {
  border-right: 1px solid var(--line);
}

.utility-band svg {
  width: 22px;
  color: var(--blue);
}

.utility-band strong,
.utility-band span {
  display: block;
}

.utility-band strong {
  margin-top: 8px;
  font-size: 15px;
}

.utility-band span {
  color: var(--muted);
  font-size: 13px;
}

.section,
.split-section,
.compliance,
.site-footer {
  max-width: 1280px;
  margin: 0 auto;
  padding: 74px 28px 0;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.section-heading.compact {
  align-items: center;
}

.text-link {
  color: var(--blue);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
  white-space: nowrap;
}

.country-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.country-card {
  padding: 16px;
  min-height: 126px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.flag-swatch {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 68px;
  height: 42px;
  overflow: hidden;
  border: 1px solid #cbd5e1;
  border-radius: 3px;
}

.country-card strong {
  display: block;
  margin-top: 14px;
}

.country-card span {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.merch-strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  max-width: 1280px;
  margin: 74px auto 0;
  padding: 30px 28px;
  color: #fff;
  background: var(--navy);
}

.merch-strip h2 {
  max-width: 860px;
  font-size: clamp(24px, 3vw, 36px);
}

.merch-strip span {
  display: block;
  margin-top: 8px;
  color: #cbd5e1;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter {
  height: 38px;
  padding: 0 14px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  font-weight: 800;
}

.filter.active {
  color: #fff;
  background: var(--blue);
  border-color: var(--blue);
}

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

.product-card {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.product-media {
  position: relative;
  aspect-ratio: 1 / 0.82;
  background: var(--soft);
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tag {
  position: absolute;
  left: 12px;
  top: 12px;
  padding: 5px 9px;
  color: #fff;
  background: var(--red);
  border-radius: 3px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.corner-badge {
  position: absolute;
  right: 12px;
  top: 12px;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  color: #fff;
  background: var(--red);
  border-radius: 3px;
  box-shadow: 0 10px 20px rgba(16, 24, 40, 0.16);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.corner-badge.hot {
  background: var(--red);
}

.corner-badge.sale {
  color: var(--navy);
  background: var(--gold);
}

.corner-badge.new {
  background: var(--green);
}

.corner-badge.bundle,
.corner-badge.b2b {
  background: var(--blue);
}

.product-body {
  padding: 16px;
}

.product-category {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.product-title {
  min-height: 46px;
  margin: 6px 0 10px;
  font-size: 18px;
}

.product-meta {
  color: var(--muted);
  font-size: 13px;
  min-height: 38px;
}

.product-proof {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  min-height: 24px;
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
}

.product-proof .stars {
  font-size: 13px;
}

.product-proof strong {
  color: var(--ink);
}

.sales-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 8px;
  color: #475467;
  font-size: 12px;
  font-weight: 800;
}

.sales-row span:last-child {
  color: var(--green);
}

.product-attributes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.product-attributes span {
  padding: 6px 8px;
  color: #344054;
  background: var(--soft);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 800;
}

.price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-top: 14px;
}

.price {
  font-size: 22px;
  font-weight: 900;
}

.compare-price {
  margin-left: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-decoration: line-through;
}

.cost-note {
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
}

.product-card .button {
  width: 100%;
  margin-top: 14px;
}

.product-card .product-detail-link {
  margin-top: 8px;
}

.page-hero {
  padding: 46px 28px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(7, 27, 58, 0.96), rgba(7, 27, 58, 0.78)),
    url("assets/images/hero-stadium.jpg") center / cover;
}

.party-hero {
  background:
    linear-gradient(90deg, rgba(7, 27, 58, 0.94), rgba(7, 27, 58, 0.68)),
    url("assets/images/party-kit.jpg") center / cover;
}

.bulk-hero {
  background:
    linear-gradient(90deg, rgba(7, 27, 58, 0.94), rgba(7, 27, 58, 0.7)),
    url("assets/images/bar-decor.jpg") center / cover;
}

.page-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.page-hero h1 {
  max-width: 820px;
  margin-bottom: 10px;
  font-size: clamp(34px, 4.2vw, 58px);
}

.page-hero p:not(.eyebrow) {
  max-width: 690px;
  margin-bottom: 0;
  color: #d7deea;
  font-size: 17px;
}

.crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 16px 28px;
  color: var(--muted);
  font-size: 13px;
}

.crumbs a {
  color: var(--blue);
  font-weight: 800;
}

.collection-layout {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 28px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 44px 28px 0;
}

.facet-panel {
  align-self: start;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.facet-panel h2 {
  padding: 18px;
  margin: 0;
  font-size: 18px;
  border-bottom: 1px solid var(--line);
}

.facet-group {
  padding: 18px;
  border-bottom: 1px solid var(--line);
}

.facet-group:last-child {
  border-bottom: 0;
}

.facet-group strong {
  display: block;
  margin-bottom: 12px;
}

.facet-option {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0;
  color: #344054;
  font-size: 14px;
}

.collection-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.collection-toolbar p {
  margin: 0;
  color: var(--muted);
}

.collection-layout .product-grid {
  margin-top: 18px;
}

.select-control {
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  color: var(--ink);
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(360px, 520px);
  gap: 42px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 44px 28px 0;
}

.gallery {
  display: grid;
  gap: 14px;
}

.gallery-main {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--soft);
}

.gallery-main img {
  width: 100%;
  aspect-ratio: 1 / 0.82;
  object-fit: cover;
}

.thumb-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.thumb-row img {
  aspect-ratio: 1 / 0.78;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--soft);
}

.detail-panel {
  position: sticky;
  top: 152px;
  align-self: start;
}

.detail-panel h1 {
  margin-bottom: 12px;
  font-size: clamp(34px, 4vw, 54px);
}

.rating-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
}

.stars {
  color: #f59e0b;
  letter-spacing: 0;
}

.detail-price {
  margin: 18px 0;
  font-size: 34px;
  font-weight: 900;
}

.detail-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: -6px 0 18px;
}

.detail-proof span {
  padding: 8px 10px;
  color: #344054;
  background: var(--soft);
  border-radius: 4px;
  font-size: 13px;
  font-weight: 900;
}

.detail-proof span:last-child {
  color: var(--green);
}

.option-block {
  margin: 18px 0;
}

.option-block strong {
  display: block;
  margin-bottom: 10px;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  font-weight: 800;
}

.chip.active {
  color: #fff;
  background: var(--navy);
  border-color: var(--navy);
}

.qty-row {
  display: flex;
  gap: 12px;
}

.qty-row input {
  width: 82px;
  min-height: 46px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
}

.qty-row .button {
  flex: 1;
}

.info-stack {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.info-line {
  display: flex;
  gap: 10px;
  padding: 12px;
  background: var(--soft);
  border-radius: 4px;
  color: #344054;
}

.info-line svg {
  flex: 0 0 auto;
  width: 20px;
  color: var(--blue);
}

.detail-tabs {
  max-width: 1280px;
  margin: 54px auto 0;
  padding: 0 28px;
}

.tab-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.tab-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.tab-card ul {
  padding-left: 18px;
  margin-bottom: 0;
  color: var(--muted);
}

.home-reviews {
  padding-top: 74px;
}

.reviews-section {
  padding-top: 60px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.review-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.review-card.featured {
  background: #f8fafc;
  border-color: #cfd8e6;
}

.review-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.avatar {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #fff;
  background: var(--navy);
  border-radius: 999px;
  font-weight: 900;
}

.review-head strong,
.review-head small {
  display: block;
}

.review-head small {
  color: var(--muted);
  font-size: 12px;
}

.review-stars {
  margin-bottom: 10px;
  color: #f59e0b;
  font-weight: 900;
}

.review-card h3 {
  min-height: 0;
}

.review-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.cart-page {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 28px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 44px 28px 0;
}

.cart-table,
.summary-card,
.quote-card {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.cart-table h2,
.summary-card h2,
.quote-card h2 {
  padding: 18px;
  margin: 0;
  font-size: 20px;
  border-bottom: 1px solid var(--line);
}

.cart-page-lines {
  padding: 0 18px;
}

.page-empty {
  display: grid;
  place-items: center;
  gap: 14px;
  min-height: 260px;
  padding: 34px 18px;
  color: var(--muted);
  text-align: center;
}

.page-empty svg {
  width: 42px;
}

.summary-card {
  align-self: start;
  padding-bottom: 18px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 18px;
  color: var(--muted);
}

.summary-row.total {
  color: var(--ink);
  font-size: 20px;
  font-weight: 900;
  border-top: 1px solid var(--line);
}

.summary-card .button {
  width: calc(100% - 36px);
  margin: 10px 18px 0;
}

.quote-layout {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(360px, 520px);
  gap: 34px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 44px 28px 0;
}

.quote-card {
  padding-bottom: 18px;
}

.quote-layout > div > .product-meta {
  max-width: 680px;
  min-height: 0;
  margin-bottom: 24px;
  font-size: 16px;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 24px 0;
}

.value-grid article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.value-grid svg {
  width: 24px;
  color: var(--blue);
}

.value-grid strong,
.value-grid span {
  display: block;
}

.value-grid strong {
  margin-top: 10px;
}

.value-grid span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

.quote-preview {
  max-width: 620px;
  box-shadow: none;
}

.quote-form {
  display: grid;
  gap: 14px;
  padding: 18px;
}

.field {
  display: grid;
  gap: 6px;
}

.field label {
  font-weight: 800;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
}

.field textarea {
  min-height: 108px;
  resize: vertical;
}

.content-page {
  max-width: 980px;
  margin: 0 auto;
  padding: 44px 28px 0;
}

.content-page section {
  margin-bottom: 34px;
}

.content-page p,
.content-page li {
  color: #475467;
}

.policy-list {
  display: grid;
  gap: 14px;
  padding: 0;
  list-style: none;
}

.policy-list li {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.policy-hero {
  background:
    linear-gradient(90deg, rgba(7, 27, 58, 0.96), rgba(7, 27, 58, 0.72)),
    url("assets/images/clear-bag.jpg") center / cover;
}

.support-hero {
  background:
    linear-gradient(90deg, rgba(7, 27, 58, 0.96), rgba(7, 27, 58, 0.7)),
    url("assets/images/party-kit.jpg") center / cover;
}

.policy-layout,
.support-layout {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 32px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 44px 28px 0;
}

.policy-index {
  position: sticky;
  top: 150px;
  align-self: start;
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.policy-index strong {
  margin-bottom: 6px;
}

.policy-index a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.policy-index a:hover {
  color: var(--blue);
}

.policy-document {
  max-width: none;
  padding: 0;
}

.notice-card,
.contact-panel {
  padding: 18px;
  border: 1px solid #cfd8e6;
  border-radius: 6px;
  background: #f8fafc;
}

.notice-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.notice-card p {
  margin: 0;
}

.contact-panel {
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact-panel svg {
  width: 28px;
  color: var(--blue);
}

.contact-panel strong,
.contact-panel span {
  display: block;
}

.contact-panel span {
  color: var(--muted);
}

.support-search {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(420px, 620px);
  gap: 28px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 36px 28px;
  border-bottom: 1px solid var(--line);
}

.support-search h2 {
  margin-bottom: 0;
}

.lookup-form {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 10px;
  align-items: end;
}

.lookup-form label {
  display: grid;
  gap: 6px;
}

.lookup-form span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.lookup-form input {
  width: 100%;
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
}

.support-actions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 34px 28px 0;
}

.support-action-card,
.dashboard-card {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.support-action-card {
  display: grid;
  gap: 8px;
  min-height: 176px;
  padding: 20px;
}

.support-action-card svg {
  width: 28px;
  color: var(--blue);
}

.support-action-card span,
.support-main p,
.contact-card p {
  color: var(--muted);
}

.support-main {
  display: grid;
  gap: 36px;
}

.support-main > section,
.contact-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.contact-card {
  align-self: start;
  position: sticky;
  top: 150px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 22px 0;
}

.timeline div {
  padding: 16px;
  background: var(--soft);
  border-radius: 6px;
}

.timeline span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  margin-bottom: 12px;
  color: #fff;
  background: var(--navy);
  border-radius: 999px;
  font-weight: 900;
}

.timeline strong {
  display: block;
}

.timeline p {
  margin-bottom: 0;
  font-size: 13px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.faq-grid article {
  padding: 16px;
  background: var(--soft);
  border-radius: 6px;
}

.faq-grid p {
  margin-bottom: 0;
}

.account-shell {
  display: grid;
  grid-template-columns: 270px 1fr;
  gap: 28px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 44px 28px 0;
}

.account-shell.locked,
.checkout-layout.locked {
  display: none;
}

.account-gate,
.checkout-gate {
  display: grid;
  place-items: center;
  min-height: 560px;
  padding: 54px 28px 0;
  background:
    linear-gradient(90deg, rgba(7, 27, 58, 0.92), rgba(7, 27, 58, 0.62)),
    url("assets/images/hero-stadium.jpg") center / cover;
}

.gate-card {
  width: min(100%, 620px);
  padding: 34px;
  color: #fff;
  background: rgba(7, 27, 58, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.gate-card h1 {
  margin-bottom: 12px;
  font-size: clamp(34px, 4.6vw, 56px);
}

.gate-card p:not(.eyebrow) {
  color: #d7deea;
  font-size: 16px;
}

.gate-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.account-sidebar {
  align-self: start;
  position: sticky;
  top: 150px;
  display: grid;
  gap: 14px;
}

.account-profile,
.account-nav,
.account-welcome,
.dashboard-card {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.account-profile {
  display: grid;
  justify-items: start;
  gap: 6px;
  padding: 20px;
}

.account-profile small {
  color: var(--muted);
}

.account-nav {
  display: grid;
  overflow: hidden;
}

.account-nav button {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 16px;
  color: #344054;
  background: #fff;
  border: 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  font-weight: 900;
  text-align: left;
}

.account-nav button:last-child {
  border-bottom: 0;
}

.account-nav button.active {
  color: #fff;
  background: var(--navy);
}

.account-nav svg {
  width: 18px;
}

.account-main {
  min-width: 0;
}

.account-welcome {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 24px;
}

.account-welcome h1 {
  margin-bottom: 8px;
  font-size: clamp(30px, 4vw, 48px);
}

.account-welcome p:not(.eyebrow) {
  margin-bottom: 0;
  color: var(--muted);
}

.account-actions {
  display: flex;
  gap: 10px;
  flex: 0 0 auto;
}

.account-panel {
  display: none;
  margin-top: 18px;
}

.account-panel.active {
  display: block;
}

.account-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 18px;
}

.account-metrics article,
.coupon-grid article,
.address-grid article,
.return-flow article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.account-metrics span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.account-metrics strong {
  display: block;
  margin-top: 6px;
  font-size: 30px;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
}

.dashboard-card {
  padding: 22px;
}

.dashboard-card.full {
  width: 100%;
}

.card-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.card-title svg {
  width: 24px;
  color: var(--blue);
}

.card-title h2 {
  margin: 0;
  font-size: 22px;
}

.action-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.action-list li {
  padding: 14px;
  background: var(--soft);
  border-radius: 6px;
}

.action-list strong,
.action-list span {
  display: block;
}

.action-list span,
.mini-line span,
.order-row span,
.order-row small,
.address-grid p,
.coupon-grid small,
.return-flow span,
.privacy-controls {
  color: var(--muted);
}

.mini-line {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.mini-line img {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 4px;
}

.mini-line + .button,
.empty-dashboard .button {
  margin-top: 16px;
}

.empty-dashboard {
  display: grid;
  justify-items: start;
  gap: 10px;
  color: var(--muted);
}

.empty-dashboard svg {
  width: 34px;
}

.order-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.65fr auto;
  gap: 18px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.order-row:last-child {
  border-bottom: 0;
}

.order-row span,
.order-row small,
.order-row strong {
  display: block;
}

.return-flow,
.address-grid,
.coupon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 18px;
}

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

.return-flow article {
  background: var(--soft);
}

.return-flow strong,
.return-flow span,
.coupon-grid span,
.coupon-grid strong,
.coupon-grid small,
.address-grid span,
.address-grid strong {
  display: block;
}

.coupon-grid span {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.coupon-grid strong {
  margin: 8px 0 4px;
}

.address-grid .button {
  margin-top: 12px;
}

.privacy-controls {
  display: grid;
  gap: 12px;
  margin-bottom: 18px;
}

.privacy-controls label {
  display: flex;
  align-items: center;
  gap: 10px;
}

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 28px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 44px 28px 0;
}

.checkout-form {
  display: grid;
  gap: 18px;
}

.checkout-block,
.checkout-summary {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.checkout-block {
  padding: 22px;
}

.checkout-block-head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}

.checkout-block-head > span {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  color: #fff;
  background: var(--navy);
  border-radius: 999px;
  font-weight: 900;
}

.checkout-block h2,
.checkout-summary h2 {
  margin: 0;
  font-size: 22px;
}

.checkout-block p {
  margin: 4px 0 0;
  color: var(--muted);
}

.checkout-fields {
  display: grid;
  gap: 12px;
}

.checkout-fields.two {
  grid-template-columns: repeat(2, 1fr);
}

.checkout-fields.three {
  grid-template-columns: 1fr 0.7fr 0.7fr;
}

.shipping-options,
.payment-methods {
  display: grid;
  gap: 10px;
}

.shipping-options label,
.payment-methods label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.shipping-options strong,
.shipping-options small {
  display: block;
}

.shipping-options small {
  color: var(--muted);
}

.payment-methods {
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 14px;
}

.stripe-panel {
  display: flex;
  gap: 14px;
  padding: 18px;
  color: #fff;
  background: var(--navy);
  border-radius: 6px;
}

.stripe-panel svg {
  flex: 0 0 auto;
  width: 28px;
  color: var(--gold);
}

.stripe-panel strong,
.stripe-panel span {
  display: block;
}

.stripe-panel span {
  margin-top: 4px;
  color: #d7deea;
}

.place-order {
  min-height: 54px;
  width: 100%;
}

.place-order:disabled {
  opacity: 0.48;
  cursor: not-allowed;
}

.checkout-result {
  display: grid;
  gap: 4px;
  color: var(--green);
  font-weight: 900;
}

.checkout-result span {
  color: var(--muted);
  font-weight: 400;
}

.checkout-summary {
  align-self: start;
  position: sticky;
  top: 150px;
  padding: 20px;
}

.checkout-items {
  margin: 16px 0;
}

.coupon-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  margin: 16px 0;
  padding: 14px;
  background: var(--soft);
  border-radius: 6px;
}

.coupon-box label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.coupon-box input {
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
}

.secure-note {
  display: flex;
  gap: 10px;
  margin-top: 18px;
  padding: 14px;
  color: #344054;
  background: #f8fafc;
  border: 1px solid #cfd8e6;
  border-radius: 6px;
  font-size: 13px;
}

.secure-note svg {
  flex: 0 0 auto;
  width: 20px;
  color: var(--green);
}

.split-section {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 470px);
  gap: 42px;
  align-items: center;
}

.split-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.check-list svg {
  flex: 0 0 auto;
  width: 20px;
  color: var(--green);
}

.bundle-panel {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.bundle-header {
  display: flex;
  justify-content: space-between;
  padding: 18px;
  color: #fff;
  background: var(--navy);
}

.bundle-header span {
  color: #d7deea;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
}

.bundle-panel img {
  width: 100%;
  aspect-ratio: 1.15 / 1;
  object-fit: cover;
}

.bundle-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  padding: 16px;
}

.bundle-items span {
  padding: 10px 12px;
  background: var(--soft);
  border-radius: 4px;
  font-size: 13px;
  font-weight: 800;
}

.bulk-section {
  padding-bottom: 0;
}

.bulk-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.bulk-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.bulk-grid svg {
  width: 28px;
  color: var(--blue);
}

.bulk-grid p {
  color: var(--muted);
}

.launch-board {
  padding-top: 74px;
}

.launch-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 18px;
}

.launch-card {
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.launch-card.priority {
  grid-row: span 2;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(7, 27, 58, 0.96), rgba(22, 74, 150, 0.84)),
    url("assets/images/flag-cape.jpg") center / cover;
}

.launch-card span {
  display: block;
  margin-bottom: 12px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.launch-card.priority span,
.launch-card.priority p {
  color: #d7deea;
}

.launch-card h3 {
  font-size: 24px;
}

.launch-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.mini-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.mini-tags strong {
  padding: 8px 10px;
  color: var(--navy);
  background: #fff;
  border-radius: 4px;
  font-size: 12px;
}

.email-band {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 520px);
  gap: 28px;
  align-items: center;
  max-width: 1280px;
  margin: 74px auto 0;
  padding: 34px 28px;
  color: #fff;
  background: var(--navy);
}

.email-band h2 {
  max-width: 680px;
}

.email-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.email-form label {
  display: grid;
  gap: 6px;
}

.email-form span {
  color: #d7deea;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.email-form input {
  width: 100%;
  min-height: 46px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 4px;
  background: #fff;
}

.compliance {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  margin-top: 74px;
  padding-top: 34px;
  padding-bottom: 34px;
  background: #f7f9fc;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.compliance div {
  max-width: 820px;
}

.compliance p:not(.eyebrow) {
  margin-bottom: 0;
  color: var(--muted);
}

.cart-drawer {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 40;
  display: grid;
  grid-template-rows: auto 1fr auto;
  width: min(420px, 92vw);
  background: #fff;
  box-shadow: -18px 0 50px rgba(16, 24, 40, 0.24);
  transform: translateX(105%);
  transition: transform 180ms ease;
}

.cart-drawer.open {
  transform: translateX(0);
}

.cart-head,
.cart-foot {
  padding: 18px;
  border-bottom: 1px solid var(--line);
}

.cart-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-foot {
  border-top: 1px solid var(--line);
  border-bottom: 0;
}

.cart-foot > div {
  display: flex;
  justify-content: space-between;
  margin-bottom: 14px;
}

.cart-empty {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  color: var(--muted);
  padding: 32px;
  text-align: center;
}

.cart-empty svg {
  width: 42px;
}

.cart-lines {
  overflow: auto;
  padding: 10px 18px;
}

.cart-line {
  display: grid;
  grid-template-columns: 58px 1fr auto;
  gap: 12px;
  align-items: start;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.cart-line img {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid var(--line);
}

.cart-line strong,
.cart-line span {
  display: block;
}

.cart-line span {
  color: var(--muted);
  font-size: 13px;
}

.cart-line-main {
  min-width: 0;
}

.qty-control {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  padding: 4px;
  background: var(--soft);
  border-radius: 4px;
}

.qty-button {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  color: var(--navy);
  cursor: pointer;
  font-weight: 900;
}

.cart-qty {
  min-width: 52px;
  text-align: center;
  color: var(--ink);
  font-weight: 900;
}

.remove-line {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  padding: 0;
  color: #b42318;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
}

.remove-line svg {
  width: 14px;
}

.auth-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(7, 27, 58, 0.48);
}

.auth-modal.open {
  display: grid;
}

.auth-card {
  position: relative;
  width: min(100%, 460px);
  padding: 28px;
  background: #fff;
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.auth-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  cursor: pointer;
}

.auth-close svg {
  width: 16px;
}

.auth-card h2 {
  padding-right: 34px;
}

.auth-copy,
.auth-note {
  color: var(--muted);
}

.auth-tabs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
  margin: 20px 0 16px;
  padding: 4px;
  background: var(--soft);
  border-radius: 4px;
}

.auth-tab {
  min-height: 38px;
  border: 0;
  border-radius: 4px;
  background: transparent;
  cursor: pointer;
  font-weight: 900;
}

.auth-tab.active {
  color: #fff;
  background: var(--navy);
}

.auth-form {
  display: none;
  gap: 12px;
}

.auth-form.active {
  display: grid;
}

.auth-form label {
  display: grid;
  gap: 6px;
  font-weight: 900;
}

.auth-form input {
  width: 100%;
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
}

.auth-form .button,
.guest-button {
  width: 100%;
}

.guest-button {
  margin-top: 10px;
}

.auth-note {
  margin: 12px 0 0;
  font-size: 12px;
}

.overlay {
  position: fixed;
  inset: 0;
  z-index: 35;
  display: none;
  background: rgba(7, 27, 58, 0.42);
}

.overlay.open {
  display: block;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  padding-top: 44px;
  padding-bottom: 44px;
  color: #cbd5e1;
  background: var(--navy);
  max-width: none;
  margin-top: 74px;
}

.site-footer > div {
  width: min(100%, 620px);
}

.site-footer strong {
  color: #fff;
  font-size: 20px;
}

.site-footer p {
  margin-bottom: 0;
}

.site-footer a,
.site-footer span {
  display: block;
}

.site-footer span {
  margin-bottom: 8px;
  color: #fff;
  font-weight: 900;
}

.site-footer a {
  margin-top: 5px;
}

@media (max-width: 1040px) {
  .header-main {
    grid-template-columns: 1fr auto;
  }

  .search-box {
    grid-column: 1 / -1;
    order: 3;
  }

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

  .country-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .split-section {
    grid-template-columns: 1fr;
  }

  .launch-grid,
  .email-band,
  .support-search,
  .policy-layout,
  .support-layout,
  .account-shell,
  .checkout-layout,
  .dashboard-grid {
    grid-template-columns: 1fr;
  }

  .support-actions,
  .account-metrics,
  .timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .policy-index,
  .contact-card,
  .checkout-summary,
  .account-sidebar {
    position: static;
  }

  .launch-card.priority {
    grid-row: auto;
  }
}

@media (max-width: 720px) {
  .top-promo {
    flex-direction: column;
    gap: 2px;
    text-align: center;
  }

  .top-promo a {
    padding-left: 0;
    border-left: 0;
  }

  .header-main {
    padding: 14px 16px;
    gap: 12px;
  }

  .brand small,
  .header-actions .icon-button {
    display: none;
  }

  .main-nav {
    justify-content: flex-start;
    overflow-x: auto;
    padding: 0 8px;
  }

  .main-nav a {
    white-space: nowrap;
    padding: 12px 14px;
  }

  .hero {
    min-height: 520px;
  }

  .hero::after {
    background: rgba(5, 14, 31, 0.74);
  }

  .hero-copy {
    margin-left: 0;
    padding: 48px 18px;
  }

  .utility-band,
  .country-grid,
  .product-grid,
  .bulk-grid,
  .reviews-grid,
  .value-grid,
  .support-actions,
  .lookup-form,
  .timeline,
  .faq-grid,
  .account-metrics,
  .return-flow,
  .address-grid,
  .coupon-grid,
  .checkout-fields.two,
  .checkout-fields.three,
  .payment-methods,
  .coupon-box,
  .collection-layout,
  .product-detail,
  .tab-grid,
  .cart-page,
  .quote-layout {
    grid-template-columns: 1fr;
  }

  .utility-band {
    margin-top: 0;
    padding: 0;
  }

  .utility-band div {
    border-right: 1px solid var(--line);
    box-shadow: none;
  }

  .section,
  .split-section,
  .compliance {
    padding-left: 18px;
    padding-right: 18px;
  }

  .section-heading,
  .compliance,
  .merch-strip,
  .email-form,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .email-form {
    display: flex;
    width: 100%;
  }

  .email-form label,
  .email-form .button {
    width: 100%;
  }

  .page-hero {
    padding: 36px 18px;
  }

  .crumbs,
  .collection-layout,
  .product-detail,
  .detail-tabs,
  .cart-page,
  .quote-layout,
  .content-page,
  .support-search,
  .support-actions,
  .support-layout,
  .policy-layout,
  .account-shell,
  .checkout-layout,
  .account-gate,
  .checkout-gate {
    padding-left: 18px;
    padding-right: 18px;
  }

  .facet-panel,
  .detail-panel {
    position: static;
  }

  .collection-toolbar,
  .qty-row {
    flex-direction: column;
    align-items: stretch;
  }

  .cart-button {
    min-width: 118px;
  }

  .cart-line {
    grid-template-columns: 54px 1fr;
  }

  .cart-line > strong:last-child {
    grid-column: 2;
  }

  .qty-control {
    width: 100%;
    justify-content: space-between;
  }

  .auth-card {
    padding: 22px;
  }

  .account-welcome,
  .account-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .account-nav {
    grid-auto-flow: column;
    grid-auto-columns: max-content;
    overflow-x: auto;
  }

  .account-nav button {
    border-bottom: 0;
    border-right: 1px solid var(--line);
  }

  .order-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .support-action-card {
    min-height: 0;
  }

  .gate-card {
    padding: 24px;
  }

  .merch-strip {
    margin-top: 56px;
  }
}
