:root {
  --red: #d81724;
  --red-dark: #9f101b;
  --black: #08090b;
  --ink: #111318;
  --charcoal: #181b21;
  --graphite: #252a32;
  --steel: #aeb6c2;
  --silver: #e7ebf0;
  --white: #ffffff;
  --muted: #6f7783;
  --line: rgba(255, 255, 255, .14);
  --shadow: 0 20px 60px rgba(0, 0, 0, .26);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: #f5f6f8;
  line-height: 1.55;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.announcement {
  background: var(--red);
  color: var(--white);
  text-align: center;
  padding: 9px 18px;
  font-weight: 800;
  font-size: 14px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(8, 9, 11, .94);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  backdrop-filter: blur(14px);
}

.header-inner,
.wrap {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.header-inner {
  min-height: 78px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
}

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

.brand img {
  width: 230px;
  height: auto;
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 6px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, .32);
}

.mobile-brand img {
  width: 250px;
  background: var(--white);
  border-radius: 6px;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 18px;
  font-size: 14px;
  font-weight: 800;
  color: rgba(255, 255, 255, .86);
}

.nav a {
  padding: 12px 0;
}

.nav a:hover,
.nav a.active {
  color: var(--white);
}

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

.icon-btn,
.menu-toggle {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, .18);
  color: var(--white);
  background: rgba(255, 255, 255, .06);
  display: inline-grid;
  place-items: center;
  border-radius: var(--radius);
  cursor: pointer;
}

.menu-toggle {
  display: none;
}

.call-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius);
  font-weight: 900;
  font-size: 13px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 18px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 900;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

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

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(216, 23, 36, .28);
}

.btn-primary:hover {
  background: #f12734;
}

.btn-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, .35);
  background: rgba(255, 255, 255, .08);
}

.btn-dark {
  color: var(--white);
  background: var(--ink);
}

.btn-light {
  color: var(--ink);
  background: var(--white);
  border-color: #dce1e8;
}

.hero {
  min-height: 720px;
  color: var(--white);
  position: relative;
  overflow: hidden;
  display: grid;
  align-items: end;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .88), rgba(0, 0, 0, .58) 42%, rgba(0, 0, 0, .24)),
    url("home-window-tint.jpg") center / cover;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0 62%, rgba(0, 145, 255, .16) 62.4%, transparent 63%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, .045) 0 1px, transparent 1px 82px),
    repeating-linear-gradient(0deg, rgba(0, 145, 255, .045) 0 1px, transparent 1px 70px);
  opacity: .62;
  pointer-events: none;
  z-index: 0;
}

.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 110px;
  background: linear-gradient(0deg, #f5f6f8, transparent);
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 86px 0 118px;
  max-width: 790px;
}

.hero-logo {
  width: min(520px, 100%);
  margin-bottom: 24px;
  background: var(--white);
  border-radius: 8px;
  padding: 8px;
  filter: drop-shadow(0 14px 22px rgba(0, 0, 0, .5));
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--red);
  font-weight: 950;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 10px;
}

.eyebrow::before {
  content: "";
  width: 32px;
  height: 3px;
  background: var(--red);
}

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

h1 {
  font-size: 64px;
  line-height: 1.02;
  margin-bottom: 18px;
  font-weight: 950;
}

.hero .lead {
  font-size: 22px;
  max-width: 730px;
  color: rgba(255, 255, 255, .92);
  font-weight: 750;
}

.hero p:not(.lead) {
  max-width: 760px;
  color: rgba(255, 255, 255, .78);
  font-size: 17px;
}

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

.hero-store-panel {
  width: min(920px, 100%);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.hero-store-panel article {
  min-height: 116px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: var(--radius);
  background: rgba(8, 9, 11, .62);
  backdrop-filter: blur(12px);
}

.hero-store-panel strong {
  display: block;
  margin-bottom: 7px;
  color: var(--white);
  font-size: 15px;
  font-weight: 950;
}

.hero-store-panel span,
.hero-store-panel a {
  color: rgba(255, 255, 255, .78);
  font-size: 13px;
}

.hero-store-panel a {
  font-weight: 950;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.store-flow {
  background: var(--black);
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, .1);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  padding: 26px 0;
}

.store-flow-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.store-flow article {
  min-height: 166px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(216, 23, 36, .12), transparent 46%),
    rgba(255, 255, 255, .05);
}

.store-flow i,
.support-card i {
  width: 28px;
  height: 28px;
  color: var(--red);
  margin-bottom: 12px;
}

.store-flow h3,
.support-card h3 {
  margin-bottom: 7px;
}

.store-flow p {
  margin: 0;
  color: rgba(255, 255, 255, .72);
  font-size: 14px;
}

.section {
  padding: 76px 0;
}

.section.dark {
  background: var(--black);
  color: var(--white);
}

.catalog-tab-shell {
  display: grid;
  grid-template-columns: minmax(220px, .42fr) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.catalog-tabs {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 8px;
}

.catalog-tab {
  width: 100%;
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .07);
  color: var(--white);
  font: inherit;
  font-weight: 950;
  text-align: left;
  cursor: pointer;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.catalog-tab:hover,
.catalog-tab.active {
  border-color: rgba(255, 255, 255, .34);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .14), transparent 54%),
    var(--red);
  transform: translateY(-1px);
}

.catalog-tab-panel {
  min-width: 0;
}

.catalog-tab-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.catalog-tab-head h3 {
  margin-bottom: 8px;
  color: var(--white);
  font-size: 30px;
  line-height: 1.05;
}

.catalog-tab-head p {
  max-width: 760px;
  color: rgba(255, 255, 255, .76);
}

.section.graphite {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(0, 145, 255, .08), transparent 34%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, .035) 0 1px, transparent 1px 72px),
    #20242b;
  color: var(--white);
}

.section.red-band {
  background: linear-gradient(120deg, #b91220, #e52834);
  color: var(--white);
}

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

.section-head h2,
.split h2,
.page-content h2 {
  font-size: 38px;
  line-height: 1.08;
  margin-bottom: 10px;
}

.section-head p,
.split p,
.page-content p {
  color: var(--muted);
  max-width: 760px;
}

.dark .section-head p,
.graphite .section-head p,
.red-band p,
.dark .split p,
.graphite .split p {
  color: rgba(255, 255, 255, .76);
}

.grid {
  display: grid;
  gap: 18px;
}

.mt {
  margin-top: 24px;
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

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

.card {
  background: var(--white);
  border: 1px solid #dde2e8;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(22, 26, 34, .06);
}

.dark .card,
.graphite .card {
  background: #11141a;
  border-color: rgba(255, 255, 255, .12);
}

.media {
  aspect-ratio: 16 / 10;
  background: #dfe4ea;
  overflow: hidden;
}

.category-card .media,
.service-card .media {
  position: relative;
  background: #080a0e;
}

.category-card .media::after,
.service-card .media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(0deg, rgba(0, 0, 0, .42), transparent);
  pointer-events: none;
}

.category-car-audio-electronics {
  border-color: rgba(0, 145, 255, .42);
  box-shadow: 0 16px 38px rgba(0, 65, 120, .14);
}

.category-car-audio-electronics .media::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 0 54%, rgba(0, 145, 255, .22) 54.4%, transparent 55.2%),
    repeating-linear-gradient(90deg, transparent 0 19px, rgba(0, 145, 255, .18) 20px);
  opacity: .42;
  pointer-events: none;
  z-index: 1;
}

.audio-category-strip {
  background:
    linear-gradient(120deg, rgba(216, 23, 36, .18), transparent 34%),
    linear-gradient(90deg, #07080a, #121821);
  color: var(--white);
  padding: 32px 0;
  border-top: 1px solid rgba(255, 255, 255, .1);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.audio-category-strip .wrap {
  display: grid;
  grid-template-columns: minmax(240px, .78fr) minmax(0, 1.6fr);
  gap: 24px;
  align-items: center;
}

.audio-category-copy h2 {
  margin: 4px 0 6px;
  font-size: 28px;
}

.audio-category-copy p {
  margin: 0;
  color: rgba(255, 255, 255, .72);
  font-size: 14px;
}

.audio-category-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.wheel-brand-tabs {
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.audio-category-link {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .07);
  color: var(--white);
  font-weight: 900;
  text-align: center;
  line-height: 1.2;
  font-family: inherit;
  cursor: pointer;
  transition: background .18s ease, border-color .18s ease, transform .18s ease;
}

.audio-category-link:hover,
.audio-category-link.active {
  background: var(--red);
  border-color: rgba(255, 255, 255, .34);
  transform: translateY(-1px);
}

.category-pill {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 10px;
  padding: 5px 9px;
  border-radius: var(--radius);
  background: rgba(216, 23, 36, .1);
  color: var(--red);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0;
}

.support-card-grid {
  align-items: stretch;
}

.support-card {
  padding: 20px;
}

.support-card p {
  min-height: 88px;
}

.support-card a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  color: var(--red);
  font-weight: 950;
}

.compact-finder {
  box-shadow: none;
}

.category-automotive-window-tint,
.category-pre-cut-window-tint-patterns,
.service-window-tint-installation {
  border-color: rgba(216, 23, 36, .28);
}

.category-window-tint-slip-solution .media,
.category-tools-supplies .media {
  background:
    linear-gradient(135deg, rgba(216, 23, 36, .08), rgba(0, 145, 255, .07)),
    #fff;
}

.category-window-tint-slip-solution .media img,
.category-tools-supplies .media img {
  object-fit: contain;
  padding: 18px;
}

.tint-feature-media {
  position: relative;
  border: 1px solid rgba(255, 255, 255, .16);
}

.tint-feature-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0 68%, rgba(216, 23, 36, .22) 68.5%, transparent 69%),
    linear-gradient(0deg, rgba(0, 0, 0, .18), transparent 48%);
  pointer-events: none;
}

.media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}

.card:hover .media > img {
  transform: scale(1.04);
}

.product-card .media {
  background: var(--white);
}

.product-card .media img {
  object-fit: contain;
  padding: 10px;
}

.category-tires .media {
  background: var(--white);
}

.category-tires .media img {
  object-fit: contain;
  padding: 14px;
}

.card-body {
  padding: 18px;
}

.card h3 {
  margin-bottom: 8px;
  font-size: 20px;
}

.card p {
  color: var(--muted);
  font-size: 14px;
}

.product-number {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  margin: 0 0 10px;
  padding: 5px 9px;
  border: 1px solid rgba(8, 9, 11, .16);
  border-radius: 6px;
  background: rgba(8, 9, 11, .04);
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.dark .product-number,
.graphite .product-number {
  border-color: rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .08);
  color: var(--white);
}

.dark .card p,
.graphite .card p {
  color: rgba(255, 255, 255, .7);
}

.product-meta,
.tag-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 12px 0;
}

.tag,
.price {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  background: #eef1f5;
  color: #343a43;
}

.price {
  background: rgba(216, 23, 36, .11);
  color: var(--red-dark);
}

.product-actions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.product-actions .btn {
  padding: 0 10px;
  font-size: 13px;
}

.load-more-card {
  min-height: 100%;
  display: grid;
  align-items: center;
  border-style: dashed;
}

.load-more-card .card-body {
  display: grid;
  align-content: center;
  gap: 12px;
}

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

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: var(--muted);
}

.feature-list li::before {
  content: "";
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  margin-top: 8px;
  border-radius: 2px;
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(216, 23, 36, .12);
}

.dark .feature-list li,
.graphite .feature-list li {
  color: rgba(255, 255, 255, .76);
}

.split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 40px;
  align-items: center;
}

.split-media {
  min-height: 430px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.split-media img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.product-detail-media {
  background: #0f1218;
}

.product-detail-media img {
  object-fit: contain;
  padding: 18px;
}

.product-detail-media .detail-logo {
  left: 18px;
  bottom: 18px;
  width: min(310px, 58%);
  height: auto;
  min-height: 0;
  max-height: 110px;
  padding: 7px;
}

.finder {
  background: var(--white);
  border: 1px solid #dce1e8;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

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

.form-grid .full {
  grid-column: 1 / -1;
}

.variant-selector {
  position: relative;
}

.variant-summary {
  display: grid;
  gap: 6px;
  margin: 16px 0;
  padding: 14px;
  border: 1px solid #dce1e8;
  border-radius: 8px;
  background: #f7f8fa;
}

.variant-summary strong {
  font-size: 20px;
}

label.is-disabled {
  color: #8b94a3;
}

label.is-disabled input {
  opacity: .45;
}

label {
  display: grid;
  gap: 7px;
  font-weight: 850;
  font-size: 13px;
}

label input[type="checkbox"] {
  width: auto;
  min-height: 0;
  margin-right: 8px;
}

label:has(input[type="checkbox"]) {
  display: block;
  line-height: 1.45;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid #cfd6df;
  border-radius: var(--radius);
  background: var(--white);
  padding: 10px 12px;
  color: var(--ink);
}

textarea {
  min-height: 118px;
  resize: vertical;
}

.form-note {
  color: var(--muted);
  font-size: 13px;
  margin-top: 12px;
}

.page-hero {
  position: relative;
  min-height: 420px;
  display: grid;
  align-items: end;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .86), rgba(0, 0, 0, .46)),
    var(--hero-image, url("home-window-tint.jpg")) center / cover;
}

.page-hero .wrap {
  position: relative;
  z-index: 1;
  padding: 88px 0 96px;
}

.page-hero h1 {
  max-width: 850px;
}

.page-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, .82);
  font-size: 18px;
}

.category-cover-hero {
  min-height: 0;
  display: block;
  background: #030405;
  overflow: hidden;
}

.category-cover-hero::after {
  display: none;
}

.category-cover-hero .wrap {
  padding: 0;
}

.category-cover-image {
  width: 100%;
  height: clamp(430px, 58vw, 720px);
  object-fit: cover;
  object-position: center;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.filters {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  padding: 18px;
  background: var(--white);
  border: 1px solid #dce1e8;
  border-radius: var(--radius);
  margin-bottom: 24px;
}

.filters input,
.filters select {
  width: auto;
  min-width: 220px;
  flex: 1;
}

.tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.tab {
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid #cfd6df;
  background: var(--white);
  font-weight: 850;
  cursor: pointer;
}

.tab.active {
  color: var(--white);
  background: var(--red);
  border-color: var(--red);
}

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

.gallery-item {
  position: relative;
  min-height: 230px;
  border-radius: var(--radius);
  overflow: hidden;
  background: #dce1e8;
}

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

.gallery-item span {
  position: absolute;
  inset: auto 12px 12px;
  color: var(--white);
  font-weight: 900;
  text-shadow: 0 2px 14px rgba(0, 0, 0, .82);
}

.review-card {
  padding: 22px;
}

.stars {
  color: var(--red);
  font-weight: 950;
}

.site-footer {
  background: var(--black);
  color: var(--white);
  padding: 54px 0 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 28px;
}

.footer-logo {
  width: 300px;
  margin-bottom: 16px;
  background: var(--white);
  border-radius: 8px;
  padding: 6px;
}

.footer-col h3 {
  font-size: 16px;
  margin-bottom: 12px;
}

.footer-col a,
.footer-col p {
  display: block;
  color: rgba(255, 255, 255, .72);
  margin: 0 0 8px;
  font-size: 14px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .12);
  margin-top: 28px;
  padding-top: 18px;
  color: rgba(255, 255, 255, .65);
  font-size: 13px;
}

.mobile-panel {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .62);
  z-index: 80;
}

.mobile-panel.open {
  display: block;
}

.mobile-drawer {
  width: min(360px, 86vw);
  height: 100%;
  background: var(--black);
  color: var(--white);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-drawer a {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  font-weight: 850;
}

.close-mobile {
  align-self: end;
}

.search-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(0, 0, 0, .7);
  padding: 80px 18px;
}

.search-modal.open {
  display: block;
}

.search-box {
  width: min(720px, 100%);
  margin: 0 auto;
  background: var(--white);
  padding: 22px;
  border-radius: var(--radius);
}

.cart-count {
  display: inline-grid;
  place-items: center;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--red);
  color: var(--white);
  font-size: 11px;
  font-weight: 950;
}

.cart-row {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid #dce1e8;
}

.cart-thumb {
  width: 100px;
  aspect-ratio: 1;
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
  border: 1px solid #dce1e8;
}

.cart-thumb > img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  padding: 8px;
}

.policy-list {
  display: grid;
  gap: 16px;
}

.policy-list section {
  background: var(--white);
  border: 1px solid #dce1e8;
  border-radius: var(--radius);
  padding: 22px;
}

.notice {
  background: #fff6dc;
  border: 1px solid #f2d889;
  color: #5f4704;
  border-radius: var(--radius);
  padding: 14px 16px;
}

@media (max-width: 1320px) {
  .nav {
    display: none;
  }

  .call-link,
  .header-actions .book-header {
    display: none;
  }

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

  .header-inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }
}

@media (max-width: 1060px) {
  .nav,
  .call-link,
  .header-actions .book-header {
    display: none;
  }

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

  .header-inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

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

  .store-flow-grid,
  .hero-store-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .catalog-tab-shell {
    grid-template-columns: 1fr;
  }

  .catalog-tabs {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .audio-category-strip .wrap {
    grid-template-columns: 1fr;
  }

  .audio-category-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 720px) {
  .header-inner,
  .wrap {
    width: min(100% - 24px, 1180px);
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: min(190px, 44vw);
  }

  .header-actions {
    gap: 5px;
  }

  .icon-btn,
  .menu-toggle {
    width: 38px;
    height: 38px;
  }

  h1 {
    font-size: 42px;
  }

  .hero {
    min-height: 640px;
  }

  .hero-content {
    padding: 60px 0 100px;
  }

  .hero-logo {
    width: min(360px, 100%);
  }

  .category-cover-image {
    height: auto;
    min-height: 0;
    object-fit: contain;
  }

  .hero .lead {
    font-size: 18px;
  }

  .section {
    padding: 54px 0;
  }

  .section-head {
    display: block;
  }

  .section-head h2,
  .split h2,
  .page-content h2 {
    font-size: 30px;
  }

  .grid-4,
  .grid-3,
  .grid-2,
  .split,
  .form-grid,
  .store-flow-grid,
  .hero-store-panel,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .store-flow article,
  .hero-store-panel article {
    min-height: 0;
  }

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

  .catalog-tabs {
    grid-template-columns: 1fr;
  }

  .catalog-tab-head {
    display: block;
  }

  .catalog-tab-head .btn {
    margin-top: 12px;
  }

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

  .audio-category-nav {
    grid-template-columns: 1fr;
  }

  .audio-category-link {
    justify-content: flex-start;
    text-align: left;
  }

  .filters input,
  .filters select {
    min-width: 100%;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .cart-row {
    grid-template-columns: 78px 1fr;
  }

  .cart-row .cart-actions {
    grid-column: 1 / -1;
  }
}

@media (max-width: 420px) {
  .header-actions a[href$="account.html"] {
    display: none;
  }
}
