/* --- Checkout Title Bar --- */
.checkout-title-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1.2rem;
  margin-bottom: 1.2rem;
}
.checkout-title {
  font-size: 2.1rem;
  font-weight: 800;
  letter-spacing: .01em;
  color: var(--primary);
  margin: 0;
  text-align: center;
}
/* --- Shopify-style Checkout Redesign --- */
.checkout-hero {
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 1.5rem 0 0.5rem;
}
.checkout-header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5vw;
}
.checkout-logo {
  height: 44px;
  width: auto;
  border-radius: 12px;
  background: #fff7ed;
  padding: 4px 10px;
  box-shadow: 0 2px 8px rgba(154,52,18,0.07);
}
.checkout-progress {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 1.05rem;
}
.progress-step {
  color: #b45309;
  font-weight: 700;
  opacity: 0.7;
}
.progress-step.active {
  color: var(--primary);
  opacity: 1;
}
.progress-divider {
  width: 22px;
  height: 2px;
  background: #fbbf24;
  border-radius: 2px;
}
.checkout-help {
  font-size: 1rem;
  color: var(--muted);
}
.checkout-help a {
  color: var(--primary-2);
  font-weight: 700;
  text-decoration: underline;
}
.checkout-main {
  padding: 2.5rem 0 4rem;
}
.checkout-form-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.95fr;
  gap: 2.5rem;
  align-items: flex-start;
}
.checkout-left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.checkout-card {
  background: #fff;
  border-radius: 1.1rem;
  box-shadow: 0 8px 32px rgba(15,23,42,0.08);
  padding: 2.2rem 2rem 1.5rem;
  margin-bottom: 0;
  border: 1px solid var(--line);
}
.checkout-card h2 {
  margin-top: 0;
  font-size: 1.25rem;
  margin-bottom: 1.1rem;
}
.checkout-fields {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.checkout-fields label {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.2rem;
}
.checkout-fields input,
.checkout-fields select,
.checkout-fields textarea {
  border: 1px solid var(--line);
  border-radius: .6rem;
  padding: .72rem .8rem;
  font-size: 1rem;
  background: #f8fafc;
  transition: border-color .2s, box-shadow .2s;
}
.checkout-fields input:focus,
.checkout-fields select:focus,
.checkout-fields textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(154,52,18,0.10);
}
.checkout-row {
  display: flex;
  gap: 0.7rem;
}
.checkout-row > div {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.checkout-payment-box {
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: .7rem;
  padding: 1rem;
  margin-top: 0.7rem;
  margin-bottom: 0.2rem;
  font-size: 0.98rem;
}
.checkout-btn {
  width: 100%;
  margin-top: 1.5rem;
  font-size: 1.1rem;
  padding: 1rem 0;
}
.checkout-right {
  position: sticky;
  top: 2.5rem;
  align-self: flex-start;
}
.checkout-summary-card {
  background: #fff;
  border-radius: 1.1rem;
  box-shadow: 0 8px 32px rgba(15,23,42,0.06);
  padding: 2.2rem 2rem 1.5rem;
  border: 1px solid var(--line);
  min-width: 320px;
}
.checkout-summary-card h2 {
  margin-top: 0;
  font-size: 1.25rem;
  margin-bottom: 1.1rem;
}
.checkout-trust {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.2rem;
  font-size: 0.98rem;
  color: #475569;
  opacity: 0.85;
}
@media (max-width: 900px) {
  .checkout-form-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .checkout-right {
    position: static;
    min-width: 0;
  }
}
@media (max-width: 600px) {
  .checkout-header-bar {
    flex-direction: column;
    gap: 0.7rem;
    align-items: flex-start;
    padding: 0 2vw;
  }
  .checkout-card, .checkout-summary-card {
    padding: 1.2rem 0.7rem 1rem;
  }
  .checkout-main {
    padding: 1.2rem 0 2rem;
  }
}
.nav-dropdown {
  position: relative;
}
.nav-dropdown .dropdown-toggle {
  cursor: pointer;
  user-select: none;
}
.nav-dropdown .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: .7rem;
  box-shadow: 0 8px 24px rgba(15,23,42,0.10);
  z-index: 99;
  padding: .5rem 0;
}
.nav-dropdown .dropdown-menu .dropdown-item {
  display: block;
  padding: .55rem 1.1rem;
  color: var(--muted);
  font-weight: 500;
  text-decoration: none;
  transition: background .18s, color .18s;
  border-radius: .4rem;
}
.nav-dropdown .dropdown-menu .dropdown-item:hover,
.nav-dropdown .dropdown-menu .dropdown-item:focus {
  background: color-mix(in srgb, var(--primary) 8%, #fff);
  color: var(--primary-2);
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  display: block;
}
:root {
  --bg: #f7f8fb;
  --surface: #ffffff;
  --text: #111827;
  --muted: #4b5563;
  --line: #e5e7eb;
  --primary: #9a3412;
  --primary-2: #c2410c;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(900px 420px at 50% -200px, rgba(154, 52, 18, 0.08), transparent 62%);
  z-index: -1;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(1200px, 92vw); margin: 0 auto; }

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: .6rem 0;
  font-size: .85rem;
}
.topbar-links { display: flex; gap: 1rem; flex-wrap: wrap; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, #ffffff 90%, transparent);
  box-shadow: 0 6px 24px rgba(15, 23, 42, 0.07);
  backdrop-filter: blur(8px);
}
.nav-wrap { border-top: 1px solid var(--line); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; min-height: 68px; }
.brand {
  font-weight: 900;
  letter-spacing: .3px;
  font-size: 2.1rem;
  line-height: 1.1;
  padding: .2rem 1.2rem .2rem 0;
  transition: color .2s ease;
}
.brand:hover { color: var(--primary); }
.main-nav { display: flex; align-items: center; gap: 1rem; }
.nav-actions { display: flex; align-items: center; gap: .6rem; }
.main-nav a { font-weight: 500; color: var(--muted); transition: color .2s ease; }
.main-nav a:hover { color: var(--text); }
.main-nav a.active { color: var(--text); font-weight: 700; }
.menu-btn { display: none; border: 1px solid var(--line); background: #fff; border-radius: .5rem; padding: .35rem .6rem; }
.cart-btn {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  border: 1px solid var(--line);
  background: #fff;
  padding: .5rem .75rem;
  border-radius: .55rem;
  cursor: pointer;
}
.cart-count {
  min-width: 1.25rem;
  height: 1.25rem;
  padding: 0 .3rem;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hero { position: relative; overflow: hidden; }
.hero-track { position: relative; height: min(76vh, 740px); }
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity .8s ease, transform 1s ease;
  display: grid;
  align-items: center;
}
.hero-slide.active { opacity: 1; transform: scale(1); }
.hero-content { color: #fff; max-width: 680px; }
.hero h1, .hero h2 { font-size: clamp(2rem, 4vw, 3.4rem); margin: .3rem 0 .7rem; line-height: 1.1; }
.eyebrow { text-transform: uppercase; letter-spacing: .12em; font-size: .75rem; font-weight: 700; color: #b45309; }
.hero .eyebrow { color: #fed7aa; }
.hero p { max-width: 60ch; }

.hero-dots { display: flex; gap: .5rem; justify-content: center; margin-top: 1rem; }
.hero-dots button {
  width: 11px; height: 11px; border-radius: 100%; border: 0; background: #d1d5db; cursor: pointer;
}
.hero-dots button.active { background: #111827; }
.hero .hero-dots { position: absolute; bottom: 1.2rem; left: 0; right: 0; }

.section { padding: 4.5rem 0; }
.section-alt {
  background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
  border-top: 1px solid #eef2f7;
  border-bottom: 1px solid #eef2f7;
}
.section-head h2 { margin: .4rem 0 .7rem; font-size: clamp(1.7rem, 3vw, 2.6rem); }
.section-head.centered { text-align: center; max-width: 760px; margin: 0 auto 1.2rem; }
.lead { color: var(--muted); max-width: 75ch; }

.btn {
  display: inline-block;
  border-radius: .7rem;
  background: linear-gradient(145deg, var(--primary), var(--primary-2));
  color: #fff;
  padding: .75rem 1.15rem;
  font-weight: 600;
  margin-top: .9rem;
  box-shadow: 0 10px 24px rgba(154, 52, 18, 0.26);
  transition: transform .22s ease, box-shadow .22s ease, filter .22s ease;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(154, 52, 18, 0.32);
  filter: saturate(1.05);
}

.category-grid {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-top: 1rem;
}

.filter-btn {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .5rem .9rem;
  background: #fff;
  cursor: pointer;
  font: inherit;
  color: var(--muted);
  font-weight: 600;
  transition: border-color .2s ease, color .2s ease, background .2s ease;
}

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

.explore-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 1.2rem;
  align-items: start;
}

.filter-sidebar {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: .9rem;
  padding: 1rem;
  position: sticky;
  top: 92px;
}

.filter-sidebar h3 { margin-top: 0; margin-bottom: .8rem; }

.filter-vertical {
  flex-direction: column;
  align-items: stretch;
}

.filter-vertical .filter-btn {
  width: 100%;
  text-align: left;
}

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

.explore-section {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: .9rem;
  padding: 1rem;
  margin-bottom: 1rem;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.category-points {
  margin: .5rem 0 .8rem;
  padding-left: 1.1rem;
  color: var(--muted);
}

.performance-about {
  display: grid;
  gap: .65rem;
  margin-bottom: .8rem;
}

.wholesale-notice {
  background: #fff7ed;
  border: 1px solid #fed7aa;
  border-radius: .6rem;
  padding: .75rem 1rem;
  margin-bottom: .8rem;
  color: #9a3412;
  font-size: .95rem;
  line-height: 1.5;
}

.performance-about p {
  margin: 0;
  color: var(--muted);
}

.category-points li { margin: .2rem 0; }

.is-hidden { display: none !important; }
.card {
  background: #fff;
  border-radius: .9rem;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.06);
  transition: transform .24s ease, box-shadow .24s ease;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.12);
}
.card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.card h3 { margin: .9rem .9rem .2rem; }
.card a { display: inline-block; margin: 0 .9rem 1rem; font-weight: 600; color: #c2410c; transition: color .2s ease; }
.card a:hover { color: var(--primary); }

.logo-strip { overflow: hidden; border: 1px solid var(--line); border-radius: .9rem; background: #fff; margin-top: 1rem; }
.logo-track {
  display: flex;
  gap: 2.2rem;
  padding: 1rem 0;
  width: max-content;
  animation: scroll 22s linear infinite;
}
.logo-track span { font-weight: 600; color: #374151; padding: 0 1rem; white-space: nowrap; }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.logo-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.logo-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: .9rem;
  padding: 1rem;
  min-height: 110px;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease, background .24s ease;
}

.logo-item:hover,
.logo-item:focus-visible {
  transform: translateY(-5px);
  border-color: color-mix(in srgb, var(--primary) 28%, var(--line));
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.12);
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  outline: none;
}

.logo-item img {
  max-width: 100%;
  max-height: 52px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.logo-item p {
  margin: 0;
  font-size: .88rem;
  font-weight: 700;
  color: #334155;
  text-align: center;
}

.split { display: grid; grid-template-columns: 1.1fr 1fr; gap: 2rem; align-items: center; }
.split.reverse { grid-template-columns: 1fr 1.1fr; }
.feature-image { border-radius: .9rem; border: 1px solid var(--line); min-height: 360px; object-fit: cover; }
.video-thumb {
  border: 0;
  padding: 0;
  border-radius: .9rem;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.video-thumb img { width: 100%; min-height: 320px; object-fit: cover; }
.video-thumb span {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  background: rgba(17,24,39,.84);
  color: #fff;
  padding: .45rem .75rem;
  border-radius: .5rem;
  font-weight: 600;
}

.steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; margin-top: 1rem; }
.steps article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: .9rem;
  padding: 1rem;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.05);
}
.steps span { font-size: 1.4rem; font-weight: 800; color: #c2410c; }

.timeline { margin-top: 1.2rem; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.timeline article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: .85rem;
  padding: 1rem;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.05);
}
.timeline h3 { margin: 0 0 .3rem; font-size: 1.2rem; }

.testimonial-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: .9rem;
  padding: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}
.testimonial-box blockquote { margin: 0; font-size: 1.15rem; font-weight: 600; }

.subscribe { background: #fff; border: 1px solid var(--line); border-radius: .9rem; padding: 1.5rem; text-align: center; }
#subscribeForm { display: flex; justify-content: center; gap: .6rem; flex-wrap: wrap; margin-top: .6rem; }
#subscribeForm input {
  width: min(390px, 80vw);
  border: 1px solid var(--line);
  border-radius: .6rem;
  padding: .72rem .8rem;
  transition: border-color .2s ease, box-shadow .2s ease;
}
#subscribeForm input:focus-visible {
  outline: none;
  border-color: color-mix(in srgb, var(--primary) 44%, var(--line));
  box-shadow: 0 0 0 4px rgba(154, 52, 18, 0.12);
}
#subscribeMessage { min-height: 1.2rem; color: #065f46; }

.cta-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: .9rem;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.product-grid .content-card h3 {
  margin: 0 0 .6rem;
  font-size: 1.05rem;
}

.product-card {
  padding: 0;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
  transition: transform .22s ease, box-shadow .22s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.12);
}

.product-card img {
  width: 100%;
  aspect-ratio: 5/4;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
}

.product-card-body {
  padding: 1rem 1rem 1.1rem;
}

.product-card-body h3 {
  font-size: 1rem;
  line-height: 1.35;
  min-height: 2.7em;
}

.product-open-hint {
  margin: -.2rem 0 .55rem;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: .22rem .55rem;
  background: color-mix(in srgb, var(--primary) 10%, #fff);
  border: 1px solid color-mix(in srgb, var(--primary) 30%, var(--line));
  color: var(--primary);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .01em;
  transition: transform .2s ease, box-shadow .2s ease;
}

.product-card:hover .product-open-hint {
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(15, 23, 42, 0.08);
}

.product-fit {
  margin: 0 0 .35rem;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .02em;
  color: var(--primary);
}

.product-price {
  margin: 0 0 .45rem;
  font-size: .98rem;
  font-weight: 800;
  color: #111827;
}

.product-card-badges,
.product-modal-badges {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
  margin: 0 0 .55rem;
}

.product-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: .28rem .55rem;
  background: #fff7ed;
  border: 1px solid #fdba74;
  color: #9a3412;
  font-size: .72rem;
  font-weight: 700;
  line-height: 1.2;
}

.product-desc {
  margin: 0 0 .7rem;
  color: #475569;
  font-size: .92rem;
  line-height: 1.45;
}

.product-thumbs {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: .35rem;
  margin: 0 0 .7rem;
}

.product-thumb {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: .4rem;
  transition: transform .2s ease, border-color .2s ease;
}

.product-thumb:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--primary) 28%, var(--line));
}

.product-card .btn {
  width: 100%;
  text-align: center;
}

.pagination-controls {
  margin-top: .9rem;
  display: flex;
  gap: .45rem;
  flex-wrap: wrap;
}

.page-btn {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: .5rem;
  padding: .42rem .7rem;
  cursor: pointer;
  font: inherit;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}

.page-btn.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.page-btn:disabled {
  opacity: .5;
  cursor: not-allowed;
}

.site-footer { background: #0f172a; color: #e5e7eb; margin-top: 3.5rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1.1fr;
  gap: 1.2rem;
  padding: 2.2rem 0;
}
.footer-grid h4, .footer-grid h3 { margin: 0 0 .55rem; }
.footer-grid a { display: block; color: #d1d5db; margin: .25rem 0; }
.footer-grid a:hover { color: #fff; }
.copyright {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: .8rem;
  padding: .9rem 4vw;
  border-top: 1px solid rgba(255,255,255,.15);
  font-size: .9rem;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: -360px;
  width: min(360px, 92vw);
  height: 100dvh;
  background: #fff;
  border-left: 1px solid var(--line);
  box-shadow: -20px 0 30px rgba(0,0,0,.08);
  z-index: 100;
  transition: right .3s ease;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: .8rem;
}
.cart-drawer.open { right: 0; }
.drawer-head { display: flex; justify-content: space-between; align-items: center; }
.drawer-head button { border: 0; background: transparent; font-size: 1.2rem; cursor: pointer; }
.cart-items {
  flex: 1;
  min-height: 0;
  overflow: auto;
  display: grid;
  gap: .65rem;
}
.cart-empty {
  margin: .2rem 0;
  color: var(--muted);
}
.cart-item {
  border: 1px solid var(--line);
  border-radius: .7rem;
  padding: .6rem;
  display: grid;
  grid-template-columns: 70px 1fr auto;
  gap: .6rem;
  align-items: start;
}
.cart-item img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: .5rem;
  border: 1px solid var(--line);
}
.cart-item-meta h4 {
  margin: 0 0 .2rem;
  font-size: .9rem;
}
.cart-item-meta p {
  margin: 0;
  color: var(--muted);
  font-size: .8rem;
}
.cart-item-controls {
  margin-top: .45rem;
  display: flex;
  align-items: center;
  gap: .35rem;
  flex-wrap: wrap;
}
.cart-summary {
  border-top: 1px solid var(--line);
  padding-top: .7rem;
}
.cart-summary p {
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cart-actions {
  margin-top: .6rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .45rem;
}
.cart-actions .btn {
  width: 100%;
  margin-top: 0;
  text-align: center;
}
.btn.disabled {
  pointer-events: none;
  opacity: .5;
}

.cart-toast {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  background: #111827;
  color: #fff;
  border-radius: .6rem;
  padding: .65rem .85rem;
  font-size: .88rem;
  font-weight: 600;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.24);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .2s ease, transform .2s ease;
  z-index: 110;
  pointer-events: none;
}

.cart-toast.show {
  opacity: 1;
  transform: translateY(0);
}

.checkout-layout {
  display: grid;
  grid-template-columns: 1fr .95fr;
  gap: 1rem;
}

.checkout-item {
  border: 1px solid var(--line);
  border-radius: .75rem;
  padding: .8rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: .8rem;
}

.checkout-item h4 {
  margin: 0 0 .2rem;
  font-size: .95rem;
}

.checkout-item p {
  margin: 0;
  font-size: .84rem;
  color: var(--muted);
}

.checkout-totals {
  margin-top: .8rem;
  border-top: 1px solid var(--line);
  padding-top: .8rem;
  display: grid;
  gap: .4rem;
}

.checkout-totals p {
  margin: 0;
  display: flex;
  justify-content: space-between;
}

.checkout-totals p:last-child {
  font-weight: 800;
  font-size: 1.05rem;
}

.product-modal {
  width: min(900px, 92vw);
  max-height: 92vh;
  border: 0;
  padding: 0;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 22px 48px rgba(2, 6, 23, 0.4);
}

.product-modal::backdrop {
  background: rgba(2,6,23,.72);
  backdrop-filter: blur(3px);
}

.product-modal-card {
  background: #fff;
  border: 1px solid var(--line);
  max-height: 92vh;
  display: flex;
  flex-direction: column;
}

.product-modal-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: .9rem 1rem;
  border-bottom: 1px solid var(--line);
}

.product-modal-head h3 {
  margin: 0;
  font-size: 1.15rem;
}

.product-modal-head button {
  border: 0;
  background: transparent;
  font-size: 1.2rem;
  cursor: pointer;
}

.product-modal-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 1rem;
  padding: 1rem;
  overflow-y: auto;
}

.product-modal-body > div {
  min-width: 0;
}

.product-modal-media {
  display: grid;
  gap: .65rem;
  align-content: start;
}

.product-modal-body img {
  width: 100%;
  border-radius: .8rem;
  border: 1px solid var(--line);
  object-fit: cover;
  max-height: 340px;
}

#productModalImage {
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: #f8fafc;
}

.product-modal-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(56px, 1fr));
  gap: .45rem;
}

.product-modal-thumb {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: .6rem;
  padding: .15rem;
  cursor: pointer;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.product-modal-thumb img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border: 0;
  border-radius: .45rem;
  max-height: none;
}

.product-modal-thumb.active,
.product-modal-thumb:hover {
  border-color: color-mix(in srgb, var(--primary) 45%, var(--line));
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
}

.product-modal-meta {
  margin: 0 0 .5rem;
  color: var(--primary);
  font-weight: 700;
  caret-color: transparent;
}

.product-modal-subtitle {
  margin: -.1rem 0 .55rem;
  color: #475569;
  font-size: .94rem;
  font-weight: 600;
  caret-color: transparent;
}

.product-modal-description {
  margin: 0 0 .8rem;
  color: #334155;
  caret-color: transparent;
}

.product-modal-specs {
  margin: 0 0 .8rem;
  padding-left: 1.1rem;
  color: #334155;
  display: grid;
  gap: .32rem;
  caret-color: transparent;
}

.product-modal-specs li {
  line-height: 1.4;
}

.product-modal-refund {
  margin: 0 0 .8rem;
  padding: .6rem .75rem;
  border-radius: .65rem;
  background: #fff1f2;
  border: 1px solid #fda4af;
  color: #9f1239;
  font-size: .9rem;
  font-weight: 700;
  caret-color: transparent;
}

.product-modal-rating {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: .8rem;
}

.product-modal-rating strong {
  color: #f59e0b;
  letter-spacing: .04em;
}

.product-modal-rating span {
  color: #475569;
  font-size: .9rem;
}

.product-modal-reviews {
  display: grid;
  gap: .6rem;
}

.product-review {
  border: 1px solid var(--line);
  border-radius: .65rem;
  padding: .65rem;
  background: #f8fafc;
}

.product-review-head {
  margin: 0 0 .25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: .6rem;
}

.product-review-head span {
  color: #f59e0b;
}

.product-review p {
  margin: 0;
  color: #334155;
  font-size: .9rem;
}

.vehicle-modal {
  width: min(560px, 92vw);
  border: 0;
  padding: 0;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 22px 48px rgba(2, 6, 23, 0.4);
}

.vehicle-modal::backdrop {
  background: rgba(2,6,23,.72);
  backdrop-filter: blur(3px);
}

.vehicle-modal-card {
  background: #fff;
  border: 1px solid var(--line);
}

.vehicle-modal-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: .9rem 1rem;
  border-bottom: 1px solid var(--line);
}

.vehicle-modal-head h3 {
  margin: 0;
  font-size: 1.05rem;
}

.vehicle-modal-head button {
  border: 0;
  background: transparent;
  font-size: 1.2rem;
  cursor: pointer;
}

.vehicle-modal-body {
  padding: 1rem;
}

#vehicleModalMessage {
  margin: .2rem 0 0;
}

.vehicle-modal-actions {
  display: flex;
  justify-content: flex-end;
}

#checkoutSubmit:disabled {
  opacity: .6;
  cursor: not-allowed;
}

.video-modal {
  width: min(900px, 92vw);
  border: 0;
  padding: 0;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 22px 48px rgba(2, 6, 23, 0.4);
}
.video-modal::backdrop {
  background: rgba(2,6,23,.72);
  backdrop-filter: blur(3px);
}
.video-close-wrap { display: flex; justify-content: flex-end; background: #0f172a; }
.video-close-wrap button { background: transparent; border: 0; color: #fff; padding: .7rem 1rem; cursor: pointer; }
.video-modal iframe { width: 100%; height: min(72vh, 520px); border: 0; display: block; }

.partner-modal {
  width: min(700px, 92vw);
  border: 0;
  padding: 0;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 22px 48px rgba(2, 6, 23, 0.4);
}

.partner-modal::backdrop {
  background: rgba(2, 6, 23, .72);
  backdrop-filter: blur(2px);
}

.partner-modal-card {
  background: linear-gradient(145deg, #ffffff, #f8fafc);
  border: 1px solid var(--line);
}

.partner-modal-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: .95rem 1rem;
  border-bottom: 1px solid var(--line);
  background: #ffffff;
}

.partner-modal-head h3 {
  margin: 0;
  font-size: 1.15rem;
}

.partner-modal-head button {
  border: 0;
  background: transparent;
  color: #0f172a;
  font-size: 1.2rem;
  cursor: pointer;
  padding: .2rem .4rem;
}

.partner-modal-head button:hover,
.video-close-wrap button:hover {
  color: #fed7aa;
}

.partner-modal-body {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 1rem;
  padding: 1rem;
}

.partner-modal-logo-wrap {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: .9rem;
  min-height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.partner-modal-logo-wrap img {
  max-width: 100%;
  max-height: 90px;
  object-fit: contain;
}

.partner-modal-meta p {
  margin: 0 0 .7rem;
  color: #475569;
  line-height: 1.5;
}

.partner-focus {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  border: 1px solid color-mix(in srgb, var(--primary) 28%, var(--line));
  border-radius: 999px;
  padding: .35rem .6rem;
  color: var(--primary);
  font-size: .78rem;
  font-weight: 700;
}

.page-hero {
  padding: 5rem 0 3rem;
  color: #fff;
  background-size: cover;
  background-position: center;
}

.page-hero h1 { margin: .3rem 0 .75rem; font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1.1; }
.page-hero .eyebrow { color: #fed7aa; }
.page-hero .lead,
.page-hero p { color: #e5e7eb; }

.content-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.content-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: .9rem;
  padding: 1.1rem;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.06);
}

.content-card h3 { margin-top: 0; }

.founder-story-card {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1rem;
  align-items: center;
}

.founder-profile {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: .8rem;
  border: 1px solid var(--line);
}

.inline-form {
  display: grid;
  gap: .7rem;
}

.inline-form input,
.inline-form select,
.inline-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: .6rem;
  padding: .72rem .8rem;
  font: inherit;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.inline-form input:focus-visible,
.inline-form select:focus-visible,
.inline-form textarea:focus-visible {
  outline: none;
  border-color: color-mix(in srgb, var(--primary) 44%, var(--line));
  box-shadow: 0 0 0 4px rgba(154, 52, 18, 0.12);
}

.inline-form textarea { min-height: 140px; resize: vertical; }

.contact-wrap {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 1rem;
}

.info-list {
  display: grid;
  gap: .75rem;
}

.info-list p { margin: 0; }

.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;
}

@media (max-width: 980px) {
  .category-grid, .timeline { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .logo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .split, .split.reverse, .footer-grid, .content-grid, .contact-wrap, .explore-layout, .checkout-layout { grid-template-columns: 1fr; }
  .partner-modal-body { grid-template-columns: 1fr; }
  .product-modal-body { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .filter-sidebar { position: static; }
  .explore-layout { gap: .9rem; }
  .explore-section { padding: .9rem; }
  .product-card-body { padding: .9rem; }
  .product-thumbs { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .filter-vertical { flex-direction: row; }
  .filter-vertical .filter-btn { width: auto; }
}

@media (max-width: 760px) {
  .topbar { display: none; }
  .menu-btn { display: block; }
  .main-nav {
    position: absolute;
    top: 100%;
    right: 4vw;
    left: 4vw;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: .8rem;
    padding: .8rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
  }
  .main-nav.show { display: flex; }
  .hero-track { height: 64vh; }
  .category-grid, .timeline, .logo-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr; }
  .filter-bar { gap: .45rem; }
  .filter-btn { padding: .45rem .75rem; }
  .explore-section { padding: .8rem; }
  .product-card-body { padding: .8rem .8rem .9rem; }
  .product-card-body h3 { font-size: .94rem; min-height: 0; }
  .product-fit { font-size: .76rem; }
  .product-desc { font-size: .86rem; line-height: 1.38; }
  .product-thumbs { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .founder-story-card { grid-template-columns: 1fr; }
  .founder-profile { width: 100%; max-width: 220px; height: auto; }
  .cta-panel { flex-direction: column; align-items: flex-start; }
  .copyright { flex-direction: column; align-items: flex-start; }
}
