@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/Manrope-wght.ttf") format("truetype");
  font-weight: 400 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Barlow Condensed";
  src: url("assets/fonts/BarlowCondensed-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Barlow Condensed";
  src: url("assets/fonts/BarlowCondensed-Bold.ttf") format("truetype");
  font-weight: 700 900;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --font-display: "Barlow Condensed", "Arial Narrow", Arial, sans-serif;
  --font-ui: "Manrope", Arial, sans-serif;
  --black: #050505;
  --ink: #0b0c0e;
  --panel: rgba(18, 19, 22, 0.82);
  --panel-solid: #121316;
  --line: rgba(255, 255, 255, 0.12);
  --muted: #a9adb5;
  --text: #f7f3ea;
  --gold: #f6c451;
  --gold-2: #c68b2b;
  --amber: #ff9d2e;
  --cyan: #38d7ff;
  --danger: #ff6b4a;
  --radius: 8px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 20% 0%, rgba(246, 196, 81, 0.14), transparent 28rem),
    radial-gradient(circle at 90% 16%, rgba(56, 215, 255, 0.09), transparent 24rem),
    linear-gradient(180deg, #050505 0%, #0b0c0e 46%, #060606 100%);
  color: var(--text);
  font-family: var(--font-ui);
  line-height: 1.5;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

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

picture {
  display: block;
  width: 100%;
  height: 100%;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  width: min(1180px, calc(100% - 32px));
  margin: 14px auto 0;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(5, 5, 5, 0.58);
  backdrop-filter: blur(18px);
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(5, 5, 5, 0.9);
  border-color: rgba(246, 196, 81, 0.3);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.42);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-ui);
  font-weight: 800;
  color: #fff;
}

.brand > span:not(.brand-mark) {
  letter-spacing: 0;
  white-space: nowrap;
}

.brand span span {
  color: var(--gold);
}

.brand-mark {
  display: inline-block;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  overflow: hidden;
  background: url("assets/mightydeals-mark.svg") center / contain no-repeat;
  color: transparent;
  font-size: 0;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.desktop-nav a,
.mobile-nav a {
  padding: 10px 12px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  transition: color 180ms ease, background 180ms ease;
}

.desktop-nav a:hover,
.mobile-nav a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.header-cta {
  padding: 11px 14px;
  border-radius: var(--radius);
  background: rgba(246, 196, 81, 0.14);
  color: var(--gold);
  font-size: 0.88rem;
  font-weight: 800;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: #fff;
}

.mobile-nav {
  position: fixed;
  top: 76px;
  right: 16px;
  z-index: 25;
  display: none;
  width: min(280px, calc(100% - 32px));
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(10, 10, 12, 0.96);
  box-shadow: var(--shadow);
}

.mobile-nav.is-open {
  display: grid;
}

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

.hero {
  position: relative;
  min-height: calc(100vh - 80px);
  padding: 84px 0 34px;
}

.hero-media {
  position: absolute;
  inset: 20px calc(50% - 50vw) 0;
  z-index: -1;
  overflow: hidden;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.94), rgba(5, 5, 5, 0.54), rgba(5, 5, 5, 0.88)),
    linear-gradient(180deg, rgba(5, 5, 5, 0.12), #050505 96%);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.1);
  transform: scale(1.06);
  animation: heroDrift 18s ease-in-out infinite alternate;
}

@keyframes heroDrift {
  from { transform: scale(1.06) translate3d(0, 0, 0); }
  to { transform: scale(1.11) translate3d(-18px, -8px, 0); }
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.58fr);
  align-items: center;
  gap: 32px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 8vw, 6.7rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4.6vw, 4.4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
  line-height: 1.18;
}

h1,
h2,
h3,
.desktop-nav a,
.mobile-nav a,
.header-cta,
.button,
.shot-kicker,
.shot-section-title h2,
.shot-price-card p,
.shot-price-card strong,
.shot-outline-button,
.shot-ticker strong,
.shot-footer h3,
.shot-footer-cta,
.card-kicker,
.price-row strong,
.price-row span,
.product-price,
.offer-stat strong,
.form-step-title {
  font-family: var(--font-display);
}

.hero-lede,
.section-heading p,
.buyer-band p,
.contact-copy p,
.product-body p,
.products-hero p {
  color: var(--muted);
  font-size: 1.04rem;
}

.hero-lede {
  max-width: 640px;
  margin-bottom: 28px;
  font-size: clamp(1rem, 2vw, 1.25rem);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

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

.button.primary {
  background: linear-gradient(135deg, var(--gold), var(--amber));
  color: #15100a;
  box-shadow: 0 16px 38px rgba(246, 196, 81, 0.2);
}

.button.ghost {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

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

.signal-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.signal-row span {
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.hero-panel,
.deal-card,
.category-tile,
.process-step,
.note-card,
.lead-form,
.offer-rail,
.sticky-inquiry,
.product-card,
.home-retailer-callout,
.buyer-band {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
  box-shadow: var(--shadow);
}

.hero-panel {
  position: relative;
  overflow: hidden;
  padding: 28px;
}

.panel-glow {
  position: absolute;
  top: -70px;
  right: -70px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(246, 196, 81, 0.24);
  filter: blur(32px);
}

.panel-label,
.card-kicker {
  margin: 0 0 12px;
  color: var(--cyan);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-panel > strong {
  display: block;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: clamp(3.3rem, 6vw, 5.8rem);
  line-height: 0.9;
}

.hero-panel strong span {
  color: var(--text);
  font-size: 1rem;
}

.hero-panel p {
  color: var(--muted);
}

.mini-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 22px;
}

.mini-metrics div {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.2);
}

.mini-metrics span {
  display: block;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.mini-metrics strong {
  display: block;
  color: #fff;
  font-size: 1.35rem;
}

.ticker {
  overflow: hidden;
  margin-top: 64px;
  border-block: 1px solid rgba(246, 196, 81, 0.22);
  background: rgba(0, 0, 0, 0.54);
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 28s linear infinite;
}

.ticker span {
  padding: 15px 24px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

.deal-section,
.category-section,
.proof-section,
.process-section,
.buyer-section,
.transparency-section,
.contact-section,
.products-layout {
  padding: 84px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading.compact {
  max-width: 620px;
}

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

.deal-card {
  min-height: 260px;
  padding: 22px;
}

.deal-card.feature {
  background:
    linear-gradient(180deg, rgba(246, 196, 81, 0.16), rgba(255, 255, 255, 0.04)),
    var(--panel-solid);
}

.deal-card p,
.category-tile p,
.process-step p,
.note-card p {
  color: var(--muted);
}

.deal-card strong {
  display: block;
  margin-top: 24px;
  color: var(--gold);
  font-size: 1.55rem;
  line-height: 1.05;
}

.deal-card small {
  display: block;
  margin-top: 10px;
  color: #fff;
  font-weight: 800;
}

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

.category-tile {
  min-height: 178px;
  padding: 18px;
}

.category-tile span {
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 900;
}

.category-tile strong {
  display: block;
  margin: 28px 0 8px;
  font-size: 1.02rem;
}

.gallery {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 14px;
}

.gallery figure {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel-solid);
}

.gallery img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  transition: transform 400ms ease;
}

.gallery figure:hover img {
  transform: scale(1.035);
}

.gallery figcaption {
  padding: 14px 16px;
  color: var(--muted);
  font-weight: 800;
}

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

.process-step {
  padding: 22px;
}

.process-step span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 50%;
  background: rgba(246, 196, 81, 0.14);
  color: var(--gold);
  font-weight: 900;
}

.buyer-band {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 28px;
  align-items: center;
  padding: 34px;
  background:
    linear-gradient(135deg, rgba(246, 196, 81, 0.14), rgba(56, 215, 255, 0.07)),
    rgba(255, 255, 255, 0.04);
}

.home-retailer-callout {
  padding: 22px;
  background: rgba(0, 0, 0, 0.26);
}

.home-retailer-callout span {
  color: var(--cyan);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.home-retailer-callout strong {
  display: block;
  margin: 10px 0;
  color: var(--gold);
  font-size: 1.4rem;
  line-height: 1.08;
}

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

.note-card {
  padding: 22px;
}

.note-card strong {
  display: block;
  margin-bottom: 10px;
  color: #fff;
  font-size: 1.12rem;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1fr);
  gap: 30px;
  align-items: start;
}

.contact-lines {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.contact-lines a {
  padding: 12px 14px;
  border: 1px solid rgba(246, 196, 81, 0.26);
  border-radius: var(--radius);
  color: var(--gold);
  font-weight: 900;
}

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

.form-step {
  display: grid;
  gap: 10px;
}

.lead-form .form-step {
  grid-column: 1 / -1;
}

.js .step-form:not(.is-step-two) [data-step="2"],
.js .step-form.is-step-two [data-step="1"] {
  display: none;
}

.form-step-title {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 2px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-step-title span {
  color: #a79570;
}

.form-step-actions {
  display: flex;
  gap: 8px;
}

.form-step-actions .button {
  flex: 1;
}

.button.secondary {
  border-color: rgba(246, 196, 81, 0.34);
  background: rgba(255, 255, 255, 0.04);
  color: var(--gold);
}

.lead-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
}

.bot-field {
  position: absolute;
  left: -100vw;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.consent-field {
  grid-template-columns: auto 1fr !important;
  align-items: start;
  color: var(--text) !important;
  font-size: 0.88rem !important;
  line-height: 1.35;
}

.consent-field input {
  width: 18px;
  min-height: 18px;
  margin-top: 2px;
}

.consent-field a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-note {
  margin: 0;
  color: #858b95;
  font-size: 0.82rem;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.32);
  color: #fff;
  padding: 11px 12px;
  outline: none;
}

.lead-form textarea {
  resize: vertical;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: rgba(246, 196, 81, 0.7);
  box-shadow: 0 0 0 3px rgba(246, 196, 81, 0.12);
}

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

.site-footer {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) minmax(280px, 420px) auto;
  gap: 24px;
  align-items: center;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 30px 0 44px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer p {
  margin: 12px 0 0;
}

.site-footer a {
  color: var(--gold);
  font-weight: 900;
}

.footer-trust,
.footer-links {
  display: grid;
  gap: 8px;
}

.footer-trust .footer-address {
  max-width: 390px;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.45;
}

.products-hero {
  padding: 88px 0 32px;
}

.products-hero h1 {
  font-size: clamp(2.5rem, 6.5vw, 5.9rem);
}

.legal-page {
  max-width: 860px;
  padding: 86px 0;
}

.legal-page h1 {
  max-width: 760px;
  font-size: clamp(2.4rem, 6vw, 4.8rem);
}

.legal-page section {
  margin-top: 24px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
}

.legal-page h2 {
  font-size: clamp(1.35rem, 3vw, 2rem);
}

.legal-page p {
  color: var(--muted);
}

.legal-page a {
  color: var(--gold);
  font-weight: 800;
}

.products-layout {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr) 320px;
  gap: 18px;
  align-items: start;
}

.offer-rail,
.sticky-inquiry {
  position: sticky;
  top: 94px;
  padding: 16px;
}

.offer-rail {
  display: grid;
  gap: 8px;
}

.offer-rail strong,
.sticky-inquiry h2 {
  color: #fff;
}

.offer-rail a {
  padding: 10px;
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.offer-rail a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--gold);
}

.offer-stack {
  display: grid;
  gap: 16px;
}

.product-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  overflow: hidden;
}

.product-media {
  min-height: 310px;
  background: #111;
}

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

.gradient-media {
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(246, 196, 81, 0.3), rgba(56, 215, 255, 0.12)),
    #111;
}

.gradient-media span {
  color: var(--gold);
  font-size: 4rem;
  font-weight: 900;
}

.product-body {
  padding: 24px;
}

.price-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin: 18px 0;
}

.price-row strong,
.price-row span {
  padding: 10px 12px;
  border-radius: var(--radius);
  font-weight: 900;
}

.price-row strong {
  background: rgba(246, 196, 81, 0.16);
  color: var(--gold);
}

.price-row span {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.product-body ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.product-body li + li {
  margin-top: 8px;
}

.fine-print {
  margin-top: 16px;
  color: #858b95;
  font-size: 0.86rem;
}

.logistics-card {
  grid-template-columns: 1fr;
}

.compact-form {
  grid-template-columns: 1fr;
  padding: 0;
  border: 0;
  box-shadow: none;
  background: transparent;
}

.sticky-inquiry p {
  color: var(--muted);
}

.thanks-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 24px;
}

.thanks-card {
  width: min(560px, 100%);
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.thanks-card h1 {
  margin-top: 32px;
  font-size: clamp(2.3rem, 8vw, 4rem);
}

.thanks-card p {
  color: var(--muted);
}

.js .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 560ms ease, transform 560ms ease;
}

.reveal,
.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }
}

@media (max-width: 1040px) {
  .deal-grid,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .products-layout {
    grid-template-columns: 1fr;
  }

  .offer-rail,
  .sticky-inquiry {
    position: static;
  }

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

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

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    min-height: auto;
    padding-top: 70px;
  }

  .hero-grid,
  .contact-section,
  .buyer-band {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    margin-top: 10px;
  }

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

  .gallery img {
    height: 300px;
  }

  .lead-form {
    grid-template-columns: 1fr;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

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

  .product-media {
    min-height: 260px;
  }
}

@media (max-width: 620px) {
  .section-shell,
  .site-header,
  .site-footer {
    width: min(100% - 24px, 1180px);
  }

  h1 {
    font-size: clamp(2.65rem, 14vw, 4.2rem);
  }

  h2 {
    font-size: clamp(1.9rem, 10vw, 3rem);
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .deal-grid,
  .category-grid,
  .process-grid,
  .offer-rail {
    grid-template-columns: 1fr;
  }

  .deal-section,
  .category-section,
  .proof-section,
  .process-section,
  .buyer-section,
  .transparency-section,
  .contact-section,
  .products-layout {
    padding: 58px 0;
  }

  .buyer-band {
    padding: 22px;
  }
}

/* Screenshot-matching homepage layer */
.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.shot-home {
  background:
    radial-gradient(circle at 50% 0%, rgba(246, 196, 81, 0.1), transparent 34rem),
    linear-gradient(180deg, #020202 0%, #090806 44%, #020202 100%);
}

.shot-wrap {
  width: min(1180px, calc(100% - 36px));
  margin-inline: auto;
}

.shot-header {
  width: min(1180px, calc(100% - 36px));
  margin-top: 0;
  border-top: 0;
  border-color: rgba(246, 196, 81, 0.2);
  border-radius: 0 0 var(--radius) var(--radius);
  background: rgba(3, 3, 3, 0.92);
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.45);
}

.shot-brand {
  gap: 9px;
  font-size: 0.98rem;
}

.shot-brand .brand-mark {
  width: 42px;
  height: 42px;
}

.shot-nav {
  justify-content: center;
  gap: 2px;
  width: max-content;
  justify-self: center;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(4, 4, 4, 0.58);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(14px);
}

.shot-nav a {
  position: relative;
  min-height: 36px;
  padding: 10px 14px;
  border-radius: 999px;
  font-family: var(--font-ui);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  text-transform: none;
  transition: color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.shot-nav a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.shot-nav a.active {
  color: #171006;
  background: linear-gradient(135deg, #f8cf67, #e9ad2f);
  box-shadow: 0 8px 22px rgba(246, 196, 81, 0.2);
}

.shot-header-cta {
  display: inline-flex;
  min-height: 44px;
  gap: 10px;
  align-items: center;
  padding: 8px 9px 8px 16px;
  border: 1px solid rgba(246, 196, 81, 0.76);
  border-radius: 999px;
  background: rgba(8, 8, 8, 0.68);
  color: #fff;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: none;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.shot-header-cta::after {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  content: "\2197";
  background: var(--gold);
  color: #171006;
  font-size: 0.95rem;
}

.shot-header-cta:hover {
  background: var(--gold);
  color: #171006;
  transform: translateY(-1px);
}

.shot-header-cta:hover::after {
  background: #171006;
  color: var(--gold);
}

.shot-hero {
  position: relative;
  min-height: 620px;
  padding: 72px 0 26px;
  overflow: hidden;
  border-bottom: 1px solid rgba(246, 196, 81, 0.15);
}

.shot-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.shot-hero-bg::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 58% 22%, rgba(246, 196, 81, 0.18), transparent 19rem),
    linear-gradient(90deg, rgba(3, 3, 3, 0.9) 0%, rgba(3, 3, 3, 0.42) 52%, rgba(3, 3, 3, 0.88) 100%),
    linear-gradient(180deg, rgba(3, 3, 3, 0.25), #050505 96%);
}

.shot-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 44%;
  filter: saturate(0.78) contrast(1.18) brightness(0.85);
}

.shot-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 338px;
  gap: 36px;
  align-items: start;
}

.shot-hero-copy {
  padding-top: 38px;
}

.shot-kicker {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.shot-kicker::before,
.shot-kicker::after {
  width: 36px;
  height: 2px;
  content: "";
  background: var(--gold);
}

.shot-hero h1 {
  max-width: 720px;
  margin: 0 0 14px;
  font-size: clamp(2.6rem, 5.7vw, 5rem);
  line-height: 0.98;
}

.shot-hero h1 span {
  display: block;
  color: var(--gold);
}

.shot-lede {
  max-width: 520px;
  margin-bottom: 20px;
  color: #e7e0d0;
  font-size: 1.2rem;
  line-height: 1.28;
}

.shot-trust-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 710px;
  gap: 8px;
  margin-bottom: 18px;
}

.shot-trust-row div,
.shot-note-strip article,
.shot-buyer-grid article,
.shot-timeline article,
.shot-form-card,
.shot-ready,
.shot-map-card {
  border: 1px solid rgba(246, 196, 81, 0.32);
  border-radius: var(--radius);
  background: rgba(4, 4, 4, 0.62);
  box-shadow: inset 0 0 26px rgba(246, 196, 81, 0.03);
}

.shot-trust-row div {
  display: flex;
  min-height: 58px;
  gap: 8px;
  align-items: center;
  padding: 10px;
  color: #ddd5c4;
  font-size: 0.74rem;
  font-weight: 800;
}

.shot-home svg {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.shot-trust-row svg,
.shot-ready svg,
.shot-note-strip svg,
.shot-map-card svg {
  color: var(--gold);
}

.shot-price-card {
  width: min(360px, 100%);
  padding: 18px 22px;
  border: 1px solid rgba(246, 196, 81, 0.62);
  border-radius: var(--radius);
  background: rgba(4, 4, 4, 0.66);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

.shot-price-card p {
  margin: 0;
  color: #f6e6be;
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.shot-price-card strong {
  display: block;
  margin: 2px 0 8px;
  color: var(--gold);
  font-size: clamp(3.6rem, 7vw, 5.5rem);
  line-height: 0.9;
}

.shot-price-card strong span {
  color: #fff;
  font-size: 1rem;
}

.shot-price-card small {
  display: flex;
  gap: 8px;
  align-items: center;
  color: #d8cfbc;
  font-weight: 800;
}

.shot-price-card svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
}

.shot-form-card {
  padding: 20px;
  background: rgba(8, 8, 8, 0.82);
  backdrop-filter: blur(16px);
}

.shot-form-card h2 {
  margin-bottom: 3px;
  color: #fff;
  font-size: 1.2rem;
  line-height: 1.1;
}

.shot-form-card > p,
.shot-mini-form .form-note {
  color: #b6ad9c;
  font-size: 0.82rem;
}

.shot-mini-form {
  grid-template-columns: 1fr;
  gap: 8px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.shot-mini-form label {
  gap: 4px;
  font-size: 0.72rem;
}

.shot-mini-form input,
.shot-mini-form select,
.shot-mini-form textarea {
  min-height: 38px;
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.07);
  font-size: 0.82rem;
}

.shot-mini-form .button {
  min-height: 42px;
  margin-top: 2px;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.shot-ticker {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  align-items: center;
  margin-top: 14px;
  border: 1px solid rgba(246, 196, 81, 0.25);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.72);
  overflow: hidden;
}

.shot-ticker strong {
  padding: 12px 16px;
  border-right: 1px solid rgba(246, 196, 81, 0.2);
  color: #fff;
  font-size: 0.67rem;
  line-height: 1.2;
  text-transform: uppercase;
}

.shot-ticker-track {
  display: flex;
  gap: 18px;
  min-width: 0;
  overflow: hidden;
  color: #e4dac6;
  font-size: 0.76rem;
  font-weight: 800;
  white-space: nowrap;
}

.shot-ticker-track span {
  position: relative;
  padding-block: 12px;
}

.shot-ticker-track span::after {
  position: absolute;
  top: 50%;
  right: -11px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  content: "";
  background: var(--gold);
}

.shot-section {
  padding: 34px 0 0;
}

.shot-section-title {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 18px;
  align-items: center;
  margin-bottom: 18px;
}

.shot-section-title span {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(246, 196, 81, 0.48), transparent);
}

.shot-section-title h2 {
  margin: 0;
  color: var(--gold);
  font-size: 0.95rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

.shot-category-card {
  position: relative;
  min-height: 164px;
  overflow: hidden;
  border: 1px solid rgba(246, 196, 81, 0.42);
  border-radius: var(--radius);
  background: #111;
}

.shot-category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78) brightness(0.78);
  transition: transform 340ms ease, filter 340ms ease;
}

.shot-category-card:hover img {
  transform: scale(1.06);
  filter: saturate(0.92) brightness(0.92);
}

.shot-category-card .scooter-category-image {
  object-position: 38% center;
  filter: brightness(0.84) contrast(1.04);
}

.shot-category-card .vacuum-category-image {
  object-fit: contain;
  padding: 6px;
  background: #f7f7f7;
  filter: brightness(0.86) contrast(1.04);
}

.shot-category-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 28%, rgba(0, 0, 0, 0.82));
}

.shot-category-card div {
  position: absolute;
  right: 10px;
  bottom: 10px;
  left: 10px;
  z-index: 1;
  display: flex;
  gap: 8px;
  align-items: center;
  color: #fff;
  font-weight: 800;
}

.shot-category-card svg {
  color: var(--gold);
}

.shot-gallery-shell {
  display: grid;
  grid-template-columns: 34px 1fr 34px;
  gap: 10px;
  align-items: center;
}

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

.shot-gallery figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(246, 196, 81, 0.4);
  border-radius: var(--radius);
  background: #101010;
}

.shot-gallery img {
  width: 100%;
  height: 176px;
  object-fit: cover;
  filter: saturate(0.84) brightness(0.92);
}

.shot-gallery figcaption,
.product-caption {
  position: absolute;
  right: 8px;
  bottom: 8px;
  left: 8px;
  padding: 6px 8px;
  border: 1px solid rgba(246, 196, 81, 0.22);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.72);
  color: #eadfc8;
  font-size: 0.7rem;
  font-weight: 800;
}

.shot-arrow {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid rgba(246, 196, 81, 0.54);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.7);
  color: var(--gold);
  font-size: 1.5rem;
  line-height: 1;
}

.shot-outline-button {
  display: flex;
  width: fit-content;
  margin: 18px auto 0;
  padding: 10px 44px;
  border: 1px solid rgba(246, 196, 81, 0.6);
  border-radius: var(--radius);
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

.shot-timeline::before {
  position: absolute;
  top: 32px;
  right: 12%;
  left: 12%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(246, 196, 81, 0.72), transparent);
}

.shot-timeline article {
  position: relative;
  z-index: 1;
  padding: 10px 18px 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  text-align: center;
}

.shot-timeline svg {
  width: 42px;
  height: 42px;
  color: var(--gold);
}

.shot-timeline span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  margin: 10px auto 8px;
  border-radius: 50%;
  background: var(--gold);
  color: #140f07;
  font-weight: 900;
}

.shot-timeline h3,
.shot-buyer-grid h3,
.shot-note-strip h3 {
  margin-bottom: 6px;
  color: var(--gold);
  font-size: 1rem;
}

.shot-timeline p,
.shot-buyer-grid p,
.shot-note-strip p {
  color: #c4b9a6;
  font-size: 0.86rem;
}

.process-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: 28px;
  align-items: end;
  margin: 0 0 24px;
}

.process-intro h3 {
  max-width: 620px;
  margin: 0;
  color: #fff;
  font-size: clamp(1.75rem, 3vw, 2.7rem);
  line-height: 1;
}

.process-intro p {
  max-width: 560px;
  margin: 0;
  color: #bdb5a7;
  font-size: 0.92rem;
}

.process-journey {
  gap: 12px;
}

.process-journey::before {
  display: none;
}

.process-journey article {
  position: relative;
  display: flex;
  min-height: 286px;
  flex-direction: column;
  padding: 20px;
  overflow: visible;
  border: 1px solid rgba(246, 196, 81, 0.26);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(246, 196, 81, 0.08), transparent 42%),
    rgba(12, 12, 11, 0.88);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  text-align: left;
}

.process-journey article:not(:last-child)::after {
  position: absolute;
  top: 42px;
  right: -19px;
  z-index: 3;
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border: 1px solid rgba(246, 196, 81, 0.44);
  border-radius: 50%;
  content: "\2192";
  background: #090908;
  color: var(--gold);
  font-size: 0.88rem;
}

.process-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.process-journey .process-card-top span {
  width: 34px;
  height: 34px;
  margin: 0;
  border: 1px solid rgba(246, 196, 81, 0.52);
  background: rgba(246, 196, 81, 0.12);
  color: var(--gold);
  font-family: var(--font-ui);
  font-size: 0.78rem;
}

.process-journey .process-card-top svg {
  width: 32px;
  height: 32px;
  color: rgba(246, 196, 81, 0.82);
}

.process-journey .process-owner {
  margin: 0 0 7px;
  color: var(--gold);
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.process-journey h3 {
  min-height: 2.1em;
  margin-bottom: 10px;
  color: #fff;
  font-size: 1.15rem;
  line-height: 1.05;
}

.process-journey article > p:not(.process-owner) {
  margin-bottom: 18px;
  color: #bdb5a7;
  font-size: 0.82rem;
  line-height: 1.55;
}

.process-journey article > strong {
  display: block;
  margin-top: auto;
  padding-top: 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: #e7dfd1;
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 700;
}

.process-assurance {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
  padding: 16px 18px;
  border: 1px solid rgba(246, 196, 81, 0.28);
  border-radius: 8px;
  background: rgba(246, 196, 81, 0.06);
}

.process-assurance > div {
  display: flex;
  gap: 12px;
  align-items: center;
}

.process-assurance svg {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  color: var(--gold);
}

.process-assurance strong,
.process-assurance small {
  display: block;
}

.process-assurance strong {
  margin-bottom: 2px;
  color: #fff;
  font-size: 0.82rem;
}

.process-assurance small {
  color: #aaa191;
  font-size: 0.72rem;
}

.process-assurance button {
  display: inline-flex;
  min-height: 44px;
  gap: 14px;
  align-items: center;
  padding: 8px 9px 8px 17px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  background: var(--gold);
  color: #171006;
  font-family: var(--font-ui);
  font-size: 0.74rem;
  font-weight: 800;
  cursor: pointer;
}

.process-assurance button span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: #171006;
  color: var(--gold);
}

.shot-buyer-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.shot-buyer-grid article {
  min-height: 162px;
  padding: 22px 18px;
  text-align: center;
}

.shot-buyer-grid svg {
  width: 44px;
  height: 44px;
  margin-bottom: 12px;
  color: var(--gold);
}

.shot-transparency {
  padding-top: 34px;
}

.shot-note-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(246, 196, 81, 0.25);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(246, 196, 81, 0.06), transparent),
    rgba(0, 0, 0, 0.62);
}

.shot-note-strip article {
  display: flex;
  gap: 14px;
  padding: 18px;
  border: 0;
  border-right: 1px solid rgba(246, 196, 81, 0.18);
  background: transparent;
  box-shadow: none;
}

.shot-note-strip article:last-child {
  border-right: 0;
}

.shot-note-strip svg {
  width: 38px;
  height: 38px;
}

.shot-bottom-cta {
  display: grid;
  grid-template-columns: 0.9fr 1.08fr 0.82fr;
  gap: 12px;
  align-items: stretch;
  margin-top: 28px;
  padding: 18px;
  border: 1px solid rgba(246, 196, 81, 0.35);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.62);
}

.shot-ready {
  padding: 26px;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.shot-ready h2 {
  margin-bottom: 12px;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
  text-transform: uppercase;
}

.shot-ready h2 span {
  display: block;
  color: var(--gold);
}

.shot-ready p {
  color: #cfc3af;
}

.shot-ready ul,
.shot-map-card ul {
  display: grid;
  gap: 16px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.shot-ready li,
.shot-map-card li {
  display: flex;
  gap: 10px;
  align-items: center;
  color: #e2d8c8;
  font-size: 0.86rem;
  font-weight: 800;
}

.shot-ready svg,
.shot-map-card li svg {
  width: 20px;
  height: 20px;
}

.shot-bottom-form {
  box-shadow: none;
}

.shot-form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.shot-map-card {
  position: relative;
  overflow: hidden;
  padding: 26px;
  background:
    radial-gradient(circle at 66% 70%, rgba(246, 196, 81, 0.3), transparent 7rem),
    rgba(255, 255, 255, 0.035);
}

.shot-map-lines {
  position: absolute;
  inset: 18px;
  opacity: 0.4;
  background:
    linear-gradient(26deg, transparent 32%, rgba(246, 196, 81, 0.25) 33%, transparent 34%),
    linear-gradient(112deg, transparent 42%, rgba(255, 255, 255, 0.18) 43%, transparent 44%),
    linear-gradient(156deg, transparent 48%, rgba(246, 196, 81, 0.18) 49%, transparent 50%),
    radial-gradient(circle at 70% 72%, rgba(246, 196, 81, 0.75), transparent 1.1rem);
  border: 1px solid rgba(246, 196, 81, 0.12);
  border-radius: var(--radius);
}

.shot-map-pin {
  position: absolute;
  right: 52px;
  bottom: 48px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: rgba(246, 196, 81, 0.2);
  color: var(--gold);
  box-shadow: 0 0 30px rgba(246, 196, 81, 0.6);
}

.shot-map-card ul {
  position: relative;
  z-index: 1;
  margin-top: 0;
}

.shot-footer {
  margin-top: 26px;
  border-top: 1px solid rgba(246, 196, 81, 0.22);
  background: #040404;
}

.shot-footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 0.7fr 1fr;
  gap: 28px;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 28px 0;
}

.shot-footer h3 {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.shot-footer p,
.shot-footer a,
.shot-footer span {
  color: #b8ad9b;
  font-size: 0.86rem;
}

.shot-footer a {
  display: block;
  margin-top: 6px;
}

.shot-footer-contacts {
  display: grid;
  gap: 8px;
}

.shot-footer .footer-contact-link {
  display: grid;
  width: fit-content;
  margin-top: 0;
  line-height: 1.35;
}

.shot-footer .footer-contact-link strong {
  color: var(--gold);
  font-family: var(--font-ui);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.shot-footer .footer-contact-link span {
  color: #ddd4c5;
  font-size: 0.8rem;
  font-weight: 700;
}

.shot-footer .footer-address {
  max-width: 300px;
  margin-top: 5px;
}

.shot-footer-cta {
  width: fit-content;
  padding: 10px 14px;
  border: 1px solid rgba(246, 196, 81, 0.5);
  border-radius: var(--radius);
  color: var(--gold) !important;
  font-weight: 900;
  text-transform: uppercase;
}

.shot-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.shot-footer-bottom span:last-child {
  display: flex;
  gap: 24px;
}

.products-shot-page {
  background:
    radial-gradient(circle at 78% 12%, rgba(246, 196, 81, 0.12), transparent 28rem),
    linear-gradient(180deg, #020202 0%, #080705 48%, #020202 100%);
}

.shot-product-hero {
  position: relative;
  min-height: 430px;
  padding: 88px 0 38px;
  overflow: hidden;
  border-bottom: 1px solid rgba(246, 196, 81, 0.18);
}

.shot-product-hero .shot-hero-bg::after {
  background:
    radial-gradient(circle at 76% 18%, rgba(246, 196, 81, 0.17), transparent 18rem),
    linear-gradient(90deg, rgba(3, 3, 3, 0.94) 0%, rgba(3, 3, 3, 0.58) 56%, rgba(3, 3, 3, 0.9) 100%),
    linear-gradient(180deg, rgba(3, 3, 3, 0.28), #050505 96%);
}

.shot-product-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 36px;
  align-items: end;
}

.shot-product-hero h1 {
  max-width: 780px;
  margin-bottom: 14px;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.95;
}

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

.shot-offer-card {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  min-height: 390px;
  overflow: hidden;
  border: 1px solid rgba(246, 196, 81, 0.34);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(246, 196, 81, 0.08), transparent 42%),
    rgba(5, 5, 5, 0.78);
  box-shadow: inset 0 0 28px rgba(246, 196, 81, 0.025);
}

.shot-offer-media {
  position: relative;
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  background: #0d0d0d;
}

.shot-offer-media img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
  filter: saturate(0.86) brightness(0.84) contrast(1.08);
}

.scooter-offer-media {
  background: #f7f7f7;
}

.scooter-offer-media img {
  padding: 12px;
  object-fit: contain;
  filter: none;
}

.vacuum-offer-media {
  background: #f7f7f7;
}

.vacuum-product-images {
  display: grid;
  grid-template-rows: minmax(235px, 1.35fr) minmax(150px, 0.8fr);
  min-height: 390px;
  gap: 1px;
  background: #d8d8d8;
}

.vacuum-product-images picture {
  display: block;
  min-height: 0;
  background: #fff;
}

.vacuum-offer-media .vacuum-product-images img {
  width: 100%;
  height: 100%;
  min-height: 0;
  padding: 10px;
  object-fit: contain;
  filter: none;
}

.shot-offer-body {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 22px;
}

.shot-offer-body h2 {
  margin-bottom: 0;
  color: #fff;
  font-size: clamp(2rem, 3.2vw, 3rem);
}

.shot-offer-body p {
  margin: 0;
  color: #cfc5b4;
}

.card-kicker {
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-price {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: baseline;
  padding: 12px 0;
  border-top: 1px solid rgba(246, 196, 81, 0.24);
  border-bottom: 1px solid rgba(246, 196, 81, 0.24);
}

.product-price strong {
  color: var(--gold);
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  line-height: 0.9;
}

.product-price span {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-price .moq-detail {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 7px 12px;
  border: 1px solid rgba(246, 196, 81, 0.58);
  border-radius: 6px;
  background: rgba(246, 196, 81, 0.13);
  color: var(--gold);
  font-family: var(--font-ui);
  font-size: clamp(1.1rem, 1.9vw, 1.3rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  text-transform: none;
}

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

.scooter-models span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 6px 11px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: #f2ecdf;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 800;
}

.shot-offer-body ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
  color: #e1d7c4;
}

.shot-offer-body li::marker {
  color: var(--gold);
}

.shot-offer-body .shot-outline-button {
  margin: 4px 0 0;
  justify-self: start;
  padding-inline: 22px;
}

.shot-logistics-offer {
  grid-template-columns: 1fr;
  min-height: auto;
}

.shot-logistics-offer .shot-offer-body {
  min-height: 390px;
  background:
    radial-gradient(circle at 76% 68%, rgba(246, 196, 81, 0.22), transparent 10rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent 48%);
}

.product-contact-panel {
  grid-template-columns: 0.85fr 1.15fr;
}

.product-contact-panel .shot-ready ul {
  color: #e2d8c8;
  font-weight: 800;
}

@media (max-width: 1040px) {
  .shot-hero-grid,
  .shot-bottom-cta,
  .shot-product-hero-grid {
    grid-template-columns: 1fr;
  }

  .shot-form-card {
    max-width: 560px;
  }

  .shot-trust-row,
  .shot-category-grid,
  .shot-gallery,
  .shot-buyer-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .shot-offer-grid,
  .shot-offer-card {
    grid-template-columns: 1fr;
  }

  .shot-offer-media img {
    min-height: 260px;
    max-height: 360px;
  }
}

@media (max-width: 760px) {
  .shot-hero {
    padding-top: 44px;
  }

  .shot-hero-copy {
    padding-top: 18px;
  }

  .shot-hero h1 {
    font-size: clamp(2.4rem, 12vw, 4rem);
  }

  .shot-trust-row,
  .shot-category-grid,
  .shot-gallery,
  .shot-timeline,
  .shot-buyer-grid,
  .shot-note-strip,
  .shot-footer-grid {
    grid-template-columns: 1fr;
  }

  .shot-timeline::before {
    display: none;
  }

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

  .shot-arrow {
    display: none;
  }

  .shot-ticker {
    grid-template-columns: 1fr;
  }

  .shot-ticker strong {
    border-right: 0;
    border-bottom: 1px solid rgba(246, 196, 81, 0.2);
  }

  .shot-form-row {
    grid-template-columns: 1fr;
  }

  .shot-footer-bottom {
    flex-direction: column;
  }

  .shot-product-hero {
    padding-top: 54px;
  }

  .shot-offer-body {
    padding: 18px;
  }

  .product-price strong {
    font-size: 2.35rem;
  }
}

/* Cinematic glass homepage hero */
.cinematic-home {
  --hero-page: #030303;
  background: var(--hero-page);
}

.cinematic-home .shot-header {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 80;
  width: min(1240px, calc(100% - 64px));
  margin: 0;
  padding: 8px 10px 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 22px;
  background: linear-gradient(90deg, rgba(5, 5, 5, 0.82), rgba(18, 17, 14, 0.66));
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px);
  transform: translateX(-50%);
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease, backdrop-filter 220ms ease;
}

.cinematic-home .shot-header.is-scrolled {
  border-color: rgba(246, 196, 81, 0.28);
  background: rgba(5, 5, 5, 0.9);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(18px);
}

.cinematic-home .mobile-nav {
  top: 82px;
  z-index: 90;
}

.cinematic-hero {
  position: relative;
  width: min(1536px, calc(100% - 24px));
  height: max(690px, calc(100svh - 24px));
  min-height: 690px;
  max-height: 940px;
  margin: 12px auto 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(246, 196, 81, 0.2);
  border-radius: clamp(24px, 3.2vw, 48px);
  isolation: isolate;
  background: #080705;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.5);
}

.cinematic-hero-media,
.cinematic-hero-media::after,
.cinematic-hero-light {
  position: absolute;
  inset: 0;
}

.cinematic-hero-media {
  z-index: -3;
}

.cinematic-hero-media::after {
  z-index: 3;
  content: "";
  background:
    linear-gradient(180deg, rgba(2, 2, 2, 0.4) 0%, rgba(2, 2, 2, 0.05) 32%, rgba(2, 2, 2, 0.32) 68%, rgba(2, 2, 2, 0.84) 100%),
    linear-gradient(90deg, rgba(2, 2, 2, 0.52), transparent 34%, transparent 68%, rgba(2, 2, 2, 0.35));
}

.cinematic-hero-video,
.cinematic-hero-fallback,
.cinematic-hero-fallback img {
  width: 100%;
  height: 100%;
}

.cinematic-hero-video,
.cinematic-hero-fallback {
  position: absolute;
  inset: 0;
  object-fit: cover;
}

.cinematic-hero-video {
  z-index: 2;
  filter: saturate(0.72) contrast(1.08) brightness(0.66) sepia(0.08);
  animation: cinematicVideoDrift 18s ease-in-out infinite alternate;
}

.cinematic-hero-fallback {
  z-index: 1;
  opacity: 0;
  transition: opacity 350ms ease;
}

.cinematic-hero-fallback img {
  object-fit: cover;
  object-position: 58% 45%;
  filter: saturate(0.75) contrast(1.12) brightness(0.62);
}

.cinematic-hero.video-disabled .cinematic-hero-video {
  opacity: 0;
}

.cinematic-hero.video-disabled .cinematic-hero-fallback {
  opacity: 1;
}

.cinematic-hero-light {
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at var(--hero-x, 58%) var(--hero-y, 24%), rgba(246, 196, 81, 0.23), transparent 22rem),
    linear-gradient(180deg, transparent 62%, rgba(0, 0, 0, 0.22));
  transition: background 120ms linear;
}

.cinematic-hero-copy {
  position: absolute;
  top: 20%;
  left: 50%;
  z-index: 4;
  display: flex;
  width: min(860px, calc(100% - 48px));
  flex-direction: column;
  align-items: center;
  text-align: center;
  transform: translateX(-50%);
}

.cinematic-badge {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  margin: 0 0 16px;
  padding: 9px 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(12, 12, 12, 0.36);
  color: #f5e8c8;
  font-size: 0.78rem;
  font-weight: 800;
  backdrop-filter: blur(16px);
  animation: cinematicFadeUp 700ms 80ms both;
}

.cinematic-badge svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
}

.cinematic-hero-copy h1 {
  max-width: 840px;
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(3.5rem, 7vw, 6.6rem);
  font-weight: 700;
  line-height: 0.88;
  text-wrap: balance;
  text-shadow: 0 6px 34px rgba(0, 0, 0, 0.6);
  animation: cinematicHeadline 850ms 160ms both;
}

.cinematic-hero-copy h1 span {
  display: block;
  color: var(--gold);
}

.cinematic-hero-copy > p:not(.cinematic-badge) {
  max-width: 670px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.7vw, 1.2rem);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
  animation: cinematicFadeUp 800ms 260ms both;
}

.cinematic-primary-cta {
  display: inline-flex;
  min-height: 52px;
  gap: 13px;
  align-items: center;
  padding: 6px 8px 6px 22px;
  border: 1px solid rgba(246, 196, 81, 0.68);
  border-radius: 999px;
  background: rgba(8, 8, 8, 0.58);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
  backdrop-filter: blur(18px);
  animation: cinematicFadeUp 800ms 340ms both;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.cinematic-primary-cta svg {
  display: grid;
  width: 38px;
  height: 38px;
  padding: 9px;
  border-radius: 50%;
  background: var(--gold);
  color: #171006;
}

.cinematic-primary-cta:hover {
  border-color: var(--gold);
  background: rgba(8, 8, 8, 0.78);
  transform: translateY(-2px);
}

.cinematic-price-panel {
  position: absolute;
  bottom: 78px;
  left: 30px;
  z-index: 5;
  width: 268px;
  padding: 20px;
  border: 1px solid rgba(246, 196, 81, 0.4);
  border-radius: 24px;
  background: rgba(8, 8, 8, 0.4);
  color: #fff;
  backdrop-filter: blur(22px);
  animation: cinematicPriceIn 850ms 280ms both;
}

.cinematic-price-panel > span {
  color: #d7c9ad;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cinematic-price-panel strong {
  display: block;
  margin: 2px 0 8px;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 3.2rem;
  line-height: 0.92;
}

.cinematic-price-panel strong small {
  color: #fff;
  font-size: 0.9rem;
}

.cinematic-price-panel p {
  margin-bottom: 12px;
  color: #d8cebc;
  font-size: 0.78rem;
}

.cinematic-price-panel a {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.cinematic-price-panel a span {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  background: rgba(246, 196, 81, 0.16);
  color: var(--gold);
}

.cinematic-cutout {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 6;
  display: flex;
  width: 410px;
  min-height: 138px;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px 18px 32px;
  border: 1px solid rgba(255, 224, 138, 0.72);
  border-radius: 44px 0 0;
  background: linear-gradient(135deg, #f9d36f 0%, #f2b93f 56%, #d99218 100%);
  box-shadow: -18px -12px 52px rgba(246, 196, 81, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.42);
  color: #151006;
  text-align: left;
  cursor: pointer;
  animation: cinematicCutoutIn 850ms 360ms both;
  transition: filter 180ms ease, translate 180ms ease, box-shadow 180ms ease;
}

.cinematic-cutout-mask {
  position: absolute;
  width: 44px;
  height: 44px;
  pointer-events: none;
}

.cinematic-cutout-mask svg {
  width: 100%;
  height: 100%;
  fill: var(--hero-page);
  stroke: none;
}

.cinematic-cutout-mask-top {
  top: -44px;
  right: 0;
}

.cinematic-cutout-mask-left {
  bottom: 0;
  left: -44px;
}

.cinematic-cutout-icon {
  display: grid;
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(21, 16, 6, 0.28);
  border-radius: 50%;
  background: #151006;
  color: var(--gold);
  font-size: 1.35rem;
  transition: transform 180ms ease, background 180ms ease;
}

.cinematic-cutout-copy {
  min-width: 0;
}

.cinematic-cutout-status {
  display: flex;
  gap: 7px;
  align-items: center;
  margin-bottom: 6px;
  color: rgba(21, 16, 6, 0.72);
  font-family: var(--font-ui);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cinematic-cutout-status i {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border: 2px solid rgba(21, 16, 6, 0.18);
  border-radius: 50%;
  background: #168a4b;
  box-shadow: 0 0 0 3px rgba(22, 138, 75, 0.14);
}

.cinematic-cutout strong,
.cinematic-cutout small {
  display: block;
}

.cinematic-cutout strong {
  margin-bottom: 5px;
  color: #151006;
  font-family: var(--font-ui);
  font-size: 1.08rem;
  font-weight: 900;
  line-height: 1.14;
}

.cinematic-cutout small {
  color: rgba(21, 16, 6, 0.72);
  font-size: 0.7rem;
  font-weight: 650;
}

.cinematic-cutout:hover,
.cinematic-cutout:focus-visible {
  filter: brightness(1.06);
  translate: 0 -3px;
  box-shadow: -20px -15px 62px rgba(246, 196, 81, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.52);
}

.cinematic-cutout:focus-visible {
  outline: 3px solid #fff;
  outline-offset: -5px;
}

.cinematic-cutout:hover .cinematic-cutout-icon {
  background: #000;
  transform: translate(3px, -3px);
}

.cinematic-inventory-strip {
  position: absolute;
  right: 436px;
  bottom: 18px;
  left: 30px;
  z-index: 5;
  display: flex;
  min-width: 0;
  gap: 16px;
  align-items: center;
  padding: 9px 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(6, 6, 6, 0.4);
  color: #e1d6c2;
  font-size: 0.68rem;
  font-weight: 800;
  white-space: nowrap;
  backdrop-filter: blur(18px);
}

.cinematic-inventory-strip strong {
  color: var(--gold);
  font-family: var(--font-display);
  text-transform: uppercase;
}

.cinematic-inventory-strip span {
  position: relative;
}

.cinematic-inventory-strip span::before {
  display: inline-block;
  width: 4px;
  height: 4px;
  margin-right: 10px;
  border-radius: 50%;
  content: "";
  background: var(--gold);
  vertical-align: middle;
}

.cinematic-trust {
  padding-top: 14px;
}

.cinematic-trust .shot-trust-row {
  max-width: none;
  margin-bottom: 0;
}

.form-drawer {
  width: min(560px, calc(100% - 32px));
  margin: 28px auto;
  padding: 24px;
  border: 1px solid rgba(246, 196, 81, 0.36);
  border-radius: 24px;
  background: #0b0b0c;
}

.form-drawer-overlay {
  display: none;
}

.form-drawer-header {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
}

.form-drawer-header p {
  margin-bottom: 4px;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.form-drawer-header h2 {
  margin-bottom: 0;
  font-size: 2rem;
}

.form-drawer-close {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
}

.form-drawer-intro {
  margin: 12px 0 20px;
  color: #bdb3a2;
}

.js .form-drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 95;
  display: block;
  background: rgba(0, 0, 0, 0.66);
  opacity: 0;
  pointer-events: none;
  backdrop-filter: blur(4px);
  transition: opacity 260ms ease;
}

.js .form-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100;
  width: min(480px, 100%);
  height: 100dvh;
  margin: 0;
  padding: 26px;
  overflow-y: auto;
  border-width: 0 0 0 1px;
  border-radius: 0;
  background: rgba(10, 10, 11, 0.94);
  box-shadow: -30px 0 90px rgba(0, 0, 0, 0.58);
  backdrop-filter: blur(24px);
  visibility: hidden;
  transform: translateX(102%);
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1), visibility 320ms;
}

.js .form-drawer.is-open {
  visibility: visible;
  transform: translateX(0);
}

.js .form-drawer-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

body.drawer-open {
  overflow: hidden;
}

@keyframes cinematicVideoDrift {
  from { transform: scale(1); }
  to { transform: scale(1.03); }
}

@keyframes cinematicFadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes cinematicHeadline {
  from { opacity: 0; transform: scale(0.98); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes cinematicPriceIn {
  from { opacity: 0; transform: translateX(-24px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes cinematicCutoutIn {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 900px) {
  .cinematic-home .shot-header {
    width: calc(100% - 40px);
  }

  .cinematic-hero {
    height: 780px;
    min-height: 780px;
  }

  .cinematic-hero-copy {
    top: 15%;
  }

  .cinematic-hero-copy h1 {
    font-size: clamp(3.3rem, 10vw, 5.2rem);
  }

  .cinematic-primary-cta {
    display: none;
  }

  .cinematic-price-panel {
    bottom: 179px;
  }

  .cinematic-inventory-strip {
    right: 24px;
    bottom: 126px;
    left: 24px;
    overflow-x: auto;
  }

  .cinematic-cutout {
    width: 380px;
  }
}

@media (min-width: 821px) and (max-width: 1120px) {
  .shot-nav a {
    padding-inline: 10px;
    font-size: 0.7rem;
  }

  .shot-header-cta {
    padding-left: 12px;
    font-size: 0.7rem;
  }
}

@media (max-width: 980px) {
  .process-intro {
    grid-template-columns: 1fr;
    gap: 10px;
  }

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

  .process-journey article:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 620px) {
  .cinematic-home .shot-header {
    top: 10px;
    width: calc(100% - 24px);
    padding-inline: 8px;
  }

  .cinematic-home .shot-brand {
    font-size: 0.92rem;
  }

  .cinematic-home .shot-brand .brand-mark {
    width: 38px;
    height: 38px;
  }

  .process-journey {
    grid-template-columns: 1fr;
  }

  .process-journey article {
    min-height: 0;
  }

  .process-journey h3 {
    min-height: 0;
  }

  .process-assurance {
    align-items: stretch;
    flex-direction: column;
  }

  .process-assurance button {
    justify-content: space-between;
    width: 100%;
  }

  .cinematic-hero {
    width: calc(100% - 12px);
    height: 780px;
    min-height: 780px;
    margin-top: 6px;
    border-radius: 26px;
  }

  .cinematic-hero-video {
    object-position: 52% center;
  }

  .cinematic-hero-copy {
    top: 16%;
    width: calc(100% - 30px);
  }

  .cinematic-badge {
    font-size: 0.68rem;
  }

  .cinematic-hero-copy h1 {
    margin-bottom: 14px;
    font-size: clamp(3rem, 13.5vw, 3.9rem);
  }

  .cinematic-hero-copy > p:not(.cinematic-badge) {
    max-width: 360px;
    font-size: 0.92rem;
  }

  .cinematic-price-panel {
    bottom: 184px;
    left: 16px;
    width: 205px;
    padding: 15px;
    border-radius: 18px;
  }

  .cinematic-price-panel strong {
    font-size: 2.45rem;
  }

  .cinematic-price-panel p {
    display: none;
  }

  .cinematic-inventory-strip {
    right: 14px;
    bottom: 124px;
    left: 14px;
  }

  .cinematic-cutout {
    width: 100%;
    min-height: 108px;
    padding: 22px 20px 18px 28px;
    border-radius: 34px 0 0;
  }

  .cinematic-cutout-mask {
    display: none;
  }

  .cinematic-cutout-icon {
    width: 46px;
    height: 46px;
  }

  .cinematic-cutout strong {
    font-size: 1.05rem;
  }

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

  .js .form-drawer {
    top: auto;
    bottom: 0;
    width: 100%;
    height: min(92dvh, 760px);
    padding: 22px 18px;
    border-width: 1px 0 0;
    border-radius: 24px 24px 0 0;
    transform: translateY(102%);
  }

  .js .form-drawer.is-open {
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .cinematic-hero-video {
    display: none;
    animation: none;
  }

  .cinematic-hero-fallback {
    opacity: 1;
  }

  .cinematic-badge,
  .cinematic-hero-copy h1,
  .cinematic-hero-copy > p,
  .cinematic-primary-cta,
  .cinematic-price-panel,
  .cinematic-cutout {
    animation: none;
  }

  .js .form-drawer,
  .js .form-drawer-overlay {
    transition: none;
  }
}

/* Mobile navigation stays in flow so it never obscures the first page content. */
@media (max-width: 820px) {
  html {
    scroll-padding-top: 88px;
  }

  section[id],
  footer[id] {
    scroll-margin-top: 88px;
  }

  .site-header,
  .cinematic-home .shot-header {
    position: sticky;
    top: max(8px, env(safe-area-inset-top));
    left: auto;
    z-index: 100;
    width: calc(100% - 24px);
    margin: 8px auto 0;
    padding: 7px 8px 7px 10px;
    transform: none;
  }

  .shot-brand {
    min-width: 0;
  }

  .shot-brand > span:not(.brand-mark) {
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .mobile-nav,
  .cinematic-home .mobile-nav {
    top: var(--mobile-nav-top, 76px);
    right: 12px;
    z-index: 110;
    width: min(300px, calc(100% - 24px));
    max-height: calc(100dvh - var(--mobile-nav-top, 76px) - 12px);
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .mobile-nav.is-open {
    gap: 2px;
  }

  .mobile-nav a {
    display: flex;
    min-height: 44px;
    align-items: center;
  }

  .menu-toggle span {
    transition: transform 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3px) rotate(-45deg);
  }
}

@media (max-width: 380px) {
  .cinematic-home .shot-brand,
  .shot-brand {
    font-size: 0.82rem;
  }

  .cinematic-home .shot-brand .brand-mark,
  .shot-brand .brand-mark {
    width: 34px;
    height: 34px;
  }
}
