:root {
  --bg: #1c1d1f;
  --bg2: #141516;
  --panel: #242628;
  --green: #8fb61f;
  --lime: #b9ed26;
  --white: #fff;
  --muted: #a5a9aa;
  --line: #343638;
  --max: 1320px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--bg);
  color: #fff;
  font-family: Inter, Arial, sans-serif;
  line-height: 1.5;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
button,
input,
select,
textarea {
  font: inherit;
}
.announcement {
  height: 34px;
  background: var(--green);
  color: #fff;
  text-align: center;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.site-header {
  height: 88px;
  display: flex;
  align-items: center;
  padding: 0 3.5vw;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: absolute;
  top: 34px;
  width: 100%;
  z-index: 20;
  background: linear-gradient(to bottom, rgba(16, 17, 18, 0.8), transparent);
}
.brand {
  width: 235px;
  margin-right: auto;
}
.brand img {
  height: 58px;
  width: auto;
  object-fit: cover;
  object-position: left top;
}
.main-nav {
  display: flex;
  gap: 27px;
  align-items: center;
}
.main-nav a {
  font-size: 13px;
  font-weight: 700;
  color: #d9dada;
  transition: 0.2s;
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--lime);
}
.menu-toggle {
  display: none;
}
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 160px max(5vw, calc((100vw - var(--max)) / 2));
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 72% 45%,
      rgba(143, 182, 31, 0.23),
      transparent 24%
    ),
    linear-gradient(
      90deg,
      rgba(15, 16, 17, 0.96) 0%,
      rgba(15, 16, 17, 0.8) 42%,
      rgba(15, 16, 17, 0.15) 70%
    ),
    url("../images/hero-rider.svg") center/cover no-repeat;
}
.hero-bg:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 70%, var(--bg));
}
.hero-content {
  position: relative;
  max-width: 760px;
  z-index: 2;
}
.eyebrow {
  display: block;
  color: var(--lime);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero h1,
.page-hero h1,
.product-summary h1,
.contact-layout h1 {
  font-size: clamp(58px, 7.7vw, 126px);
  line-height: 0.88;
  letter-spacing: -0.065em;
  text-transform: uppercase;
  margin: 0;
  font-weight: 900;
}
.hero h1 em {
  font-style: normal;
  color: var(--lime);
}
.hero p {
  font-size: 20px;
  max-width: 590px;
  color: #d0d2d2;
  margin: 30px 0;
}
.hero-actions {
  display: flex;
  gap: 12px;
}
.btn {
  min-height: 54px;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.1em;
  font-weight: 900;
  border: 1px solid transparent;
  cursor: pointer;
  transition: 0.25s;
}
.btn.primary {
  background: var(--green);
  color: #fff;
}
.btn.primary:hover {
  background: #a1cb25;
  transform: translateY(-2px);
}
.btn.ghost {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}
.btn.outline {
  border-color: var(--green);
  color: #fff;
}
.scroll-cue {
  position: absolute;
  bottom: 35px;
  right: 4vw;
  z-index: 2;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #bbb;
}
.scroll-cue i {
  display: inline-block;
  width: 70px;
  height: 1px;
  background: var(--green);
  vertical-align: middle;
  margin-left: 12px;
}
.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: var(--max);
  margin: -1px auto 0;
  border: 1px solid var(--line);
  background: #202224;
}
.trust-strip div {
  padding: 24px 28px;
  border-right: 1px solid var(--line);
}
.trust-strip div:last-child {
  border: 0;
}
.trust-strip b,
.trust-strip span {
  display: block;
}
.trust-strip b {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.06em;
}
.trust-strip span {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
}
.section {
  max-width: var(--max);
  margin: auto;
  padding: 120px 25px;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 52px;
}
.section-head h2,
.story-copy h2,
.finder-banner h2,
.detail-tabs h2,
.cta-section h2 {
  font-size: clamp(40px, 5vw, 74px);
  line-height: 0.98;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  margin: 0;
}
.text-link {
  color: var(--lime);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: none;
  border: 0;
  cursor: pointer;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.product-card {
  background: #222426;
  transition: 0.3s;
}
.product-card:hover {
  transform: translateY(-7px);
  background: #272a2b;
}
.product-image {
  height: 420px;
  position: relative;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 50%, #36393a, #222426 65%);
  overflow: hidden;
}
.product-image img {
  width: 82%;
  height: 82%;
  object-fit: contain;
  transition: 0.4s;
}
.product-card:hover .product-image img {
  transform: scale(1.05) rotate(-2deg);
}
.product-image > span {
  position: absolute;
  top: 18px;
  left: 18px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: #18191a;
  padding: 8px 10px;
}
.product-info {
  padding: 25px;
}
.product-info h3 {
  font-size: 21px;
  margin: 0 0 10px;
}
.product-info p {
  color: var(--muted);
  font-size: 13px;
  min-height: 40px;
}
.product-info > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 23px;
}
.product-info strong {
  font-size: 18px;
}
.circle-arrow {
  width: 36px;
  height: 36px;
  border: 1px solid #555;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--lime);
}
.story-section {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: 760px;
  background: #151617;
}
.story-section.reversed {
  grid-template-columns: 0.9fr 1.1fr;
}
.story-image {
  background:
    radial-gradient(
      circle at 35% 45%,
      rgba(143, 182, 31, 0.2),
      transparent 30%
    ),
    url("../images/workshop.svg") center/cover;
}
.story-image.workshop {
  background-image:
    radial-gradient(
      circle at 40% 40%,
      rgba(143, 182, 31, 0.18),
      transparent 30%
    ),
    url("../images/production.svg");
}
.machine-art {
  height: 100%;
  padding: 55px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.machine-art span {
  font-size: 12px;
  color: var(--lime);
}
.machine-art b {
  font-size: clamp(45px, 6vw, 100px);
  line-height: 0.85;
  letter-spacing: -0.07em;
  color: rgba(255, 255, 255, 0.93);
}
.story-copy {
  padding: 100px max(5vw, 70px);
  align-self: center;
}
.story-copy p {
  color: #b9bcbc;
  font-size: 17px;
  max-width: 600px;
}
.story-copy .btn {
  margin-top: 25px;
}
.finder-banner {
  max-width: var(--max);
  margin: 100px auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 65px;
  background: linear-gradient(120deg, #25282a, #171819);
  border-left: 5px solid var(--green);
}
.finder-banner h2 {
  max-width: 900px;
  font-size: clamp(35px, 4vw, 62px);
}
.material-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: center;
}
.material-visual {
  min-height: 620px;
  background: radial-gradient(circle, #3b3e3f, #202224 68%);
  display: grid;
  place-items: center;
}
.material-visual img {
  width: 92%;
}
.material-points article {
  padding: 27px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 55px 1fr;
}
.material-points span {
  color: var(--lime);
  font-size: 12px;
}
.material-points h3 {
  margin: 0;
  font-size: 22px;
}
.material-points p {
  grid-column: 2;
  color: var(--muted);
  margin: 8px 0 0;
}
.cta-section {
  min-height: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    radial-gradient(
      circle at center,
      rgba(143, 182, 31, 0.16),
      transparent 33%
    ),
    #111213;
}
.cta-section h2 {
  font-size: clamp(60px, 8vw, 120px);
  margin-bottom: 35px;
}
.site-footer {
  background: #111213;
  padding: 80px max(4vw, calc((100vw - var(--max)) / 2)) 25px;
  border-top: 1px solid var(--line);
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
}
.footer-logo {
  width: 230px;
  height: 70px;
  object-fit: cover;
  object-position: left top;
}
.footer-top p {
  color: var(--muted);
  font-size: 13px;
}
.footer-top h4 {
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--lime);
}
.footer-top a {
  display: block;
  color: #c6c8c8;
  font-size: 13px;
  margin: 10px 0;
}
.newsletter {
  display: flex;
  position: relative;
}
.newsletter input {
  background: #1c1d1f;
  border: 1px solid #3a3c3d;
  color: white;
  padding: 13px;
  width: 100%;
}
.newsletter button {
  background: var(--green);
  color: #fff;
  border: 0;
  padding: 0 18px;
  font-weight: 800;
}
.newsletter small {
  display: none;
  position: absolute;
  top: 50px;
  color: var(--lime);
}
.newsletter.sent small {
  display: block;
}
.footer-bottom {
  border-top: 1px solid var(--line);
  margin-top: 60px;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: #85898a;
}
.page-hero {
  padding: 210px max(5vw, calc((100vw - var(--max)) / 2)) 100px;
  background:
    radial-gradient(circle at 80%, rgba(143, 182, 31, 0.15), transparent 25%),
    #151617;
}
.page-hero.compact {
  min-height: 520px;
}
.page-hero h1 {
  font-size: clamp(58px, 7vw, 102px);
  max-width: 1100px;
}
.page-hero p {
  color: var(--muted);
  font-size: 18px;
}
.finder {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
}
.finder-intro h2 {
  font-size: 50px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.04em;
}
.finder-intro p {
  color: var(--muted);
}
.finder-form {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  align-content: start;
}
.finder-form label,
.buy-form label,
.contact-form label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #b5b7b7;
}
.finder-form select,
.buy-form select,
.buy-form input,
.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-top: 8px;
  background: #252729;
  border: 1px solid #414344;
  color: #fff;
  padding: 16px;
  outline: 0;
}
.finder-form .btn {
  grid-column: 1/-1;
  margin-top: 8px;
}
.result-count {
  font-size: 12px;
  color: var(--muted);
}
.product-detail {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 65px;
  padding-top: 190px;
}
.main-product-image {
  height: 660px;
  background: radial-gradient(circle, #3d4142, #222426 70%);
  display: grid;
  place-items: center;
}
.main-product-image img {
  width: 85%;
  height: 85%;
  object-fit: contain;
}
.thumb-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 10px;
}
.thumb-row button {
  height: 110px;
  background: #232526;
  border: 1px solid transparent;
  padding: 8px;
  cursor: pointer;
}
.thumb-row button.active {
  border-color: var(--green);
}
.thumb-row img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.product-summary {
  padding-top: 40px;
}
.product-summary h1 {
  font-size: clamp(48px, 5vw, 78px);
}
.rating {
  color: var(--lime);
  font-size: 12px;
  margin: 20px 0;
}
.rating span {
  color: var(--muted);
  margin-left: 10px;
}
.lead {
  color: #bbbfc0;
  font-size: 16px;
}
.price {
  font-size: 33px;
  font-weight: 800;
  margin: 28px 0;
}
.buy-form {
  display: grid;
  grid-template-columns: 1fr 110px;
  gap: 12px;
}
.buy-form .btn {
  grid-column: 1/-1;
}
.mini-benefits {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 20px;
  color: #c8cbcb;
  font-size: 11px;
}
.detail-tabs {
  border-top: 1px solid var(--line);
}
.tab-buttons {
  display: flex;
  gap: 30px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 55px;
}
.tab-buttons button {
  background: none;
  border: 0;
  color: #8e9293;
  padding: 0 0 18px;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
}
.tab-buttons button.active {
  color: var(--lime);
  border-bottom: 2px solid var(--lime);
}
.tab-panel {
  display: none;
}
.tab-panel.active {
  display: block;
}
.feature-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 45px;
}
.feature-list article {
  border-top: 1px solid var(--green);
  padding-top: 20px;
}
.feature-list span {
  color: var(--lime);
  font-size: 11px;
}
.feature-list h3 {
  font-size: 19px;
}
.feature-list p,
.tab-panel p,
.tab-panel li {
  color: var(--muted);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
}
.process-grid article {
  min-height: 250px;
  background: #232527;
  padding: 25px;
}
.process-grid span {
  color: var(--lime);
  font-size: 11px;
}
.process-grid h3 {
  font-size: 24px;
  text-transform: uppercase;
  margin-top: 70px;
}
.process-grid p {
  font-size: 13px;
  color: var(--muted);
}
.wide-quote {
  padding: 130px 7vw;
  background: var(--green);
  color: white;
}
.wide-quote blockquote {
  max-width: 1200px;
  margin: auto;
  font-size: clamp(45px, 6vw, 90px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 240px;
  gap: 14px;
}
.gallery-item {
  margin: 0;
  background:
    radial-gradient(
      circle at 70% 30%,
      rgba(143, 182, 31, 0.35),
      transparent 26%
    ),
    linear-gradient(140deg, #36393a, #141516);
  position: relative;
  overflow: hidden;
}
.gallery-item:after {
  content: "";
  position: absolute;
  width: 70%;
  height: 70%;
  right: -10%;
  bottom: -25%;
  border: 35px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  transform: skew(-20deg);
}
.gallery-item div {
  position: absolute;
  inset: 0;
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 2;
}
.gallery-item span {
  color: var(--lime);
  font-size: 10px;
}
.gallery-item b {
  font-size: 30px;
  line-height: 0.9;
}
.g1,
.g5 {
  grid-column: span 7;
  grid-row: span 2;
}
.g2,
.g4 {
  grid-column: span 5;
}
.g3,
.g6,
.g7,
.g8 {
  grid-column: span 5;
}
.g6 {
  grid-column: span 7;
}
.faq-list {
  max-width: 980px;
}
.faq-item {
  border-top: 1px solid var(--line);
}
.faq-item:last-child {
  border-bottom: 1px solid var(--line);
}
.faq-item button {
  width: 100%;
  display: grid;
  grid-template-columns: 60px 1fr 30px;
  align-items: center;
  text-align: left;
  padding: 28px 0;
  background: none;
  border: 0;
  color: white;
  cursor: pointer;
}
.faq-item button span {
  color: var(--lime);
  font-size: 11px;
}
.faq-item button b {
  font-size: 20px;
}
.faq-item button i {
  font-size: 25px;
  font-style: normal;
}
.faq-item > div {
  max-height: 0;
  overflow: hidden;
  transition: 0.35s;
}
.faq-item > div p {
  padding: 0 60px 28px;
  color: var(--muted);
  margin: 0;
}
.faq-item.open > div {
  max-height: 200px;
}
.faq-item.open button i {
  transform: rotate(45deg);
}
.contact-layout {
  padding-top: 200px;
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 100px;
}
.contact-layout h1 {
  font-size: clamp(55px, 6vw, 95px);
}
.contact-layout > div > p {
  color: var(--muted);
  font-size: 18px;
}
.contact-details {
  margin-top: 50px;
  display: grid;
  grid-template-columns: 100px 1fr;
  column-gap: 12px;
  row-gap: 12px;
  align-items: baseline;
}
.contact-details span {
  color: var(--lime);
  font-size: 11px;
  text-transform: uppercase;
}
.contact-form {
  background: #232527;
  padding: 40px;
  display: grid;
  gap: 22px;
}
.success {
  padding: 15px;
  background: rgba(143, 182, 31, 0.15);
  border: 1px solid var(--green);
  color: #dfff78;
}
.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: 0.7s;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
@media (max-width: 1050px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 88px;
    left: 0;
    right: 0;
    background: #151617;
    padding: 30px;
    flex-direction: column;
    align-items: flex-start;
  }
  .main-nav.open {
    display: flex;
  }
  .menu-toggle {
    display: block;
    background: none;
    border: 0;
    width: 40px;
    margin-right: 10px;
  }
  .menu-toggle span {
    display: block;
    height: 2px;
    background: white;
    margin: 7px;
  }
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .story-section,
  .story-section.reversed,
  .material-grid,
  .product-detail,
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .story-image {
    min-height: 600px;
  }
  .finder {
    grid-template-columns: 1fr;
  }
  .process-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .feature-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 700px) {
  .announcement {
    font-size: 9px;
    height: 30px;
  }
  .site-header {
    top: 30px;
    height: 74px;
    padding: 0 18px;
  }
  .brand {
    width: 165px;
  }
  .brand img {
    height: 48px;
  }
  .hero {
    padding: 145px 22px 90px;
    min-height: 780px;
  }
  .hero h1 {
    font-size: 58px;
  }
  .hero p {
    font-size: 16px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .scroll-cue {
    display: none;
  }
  .trust-strip {
    grid-template-columns: 1fr 1fr;
  }
  .trust-strip div {
    padding: 18px 15px;
  }
  .section {
    padding: 80px 18px;
  }
  .section-head {
    align-items: flex-start;
    gap: 20px;
    flex-direction: column;
  }
  .product-grid {
    grid-template-columns: 1fr;
  }
  .product-image {
    height: 370px;
  }
  .story-image {
    min-height: 480px;
  }
  .story-copy {
    padding: 70px 22px;
  }
  .finder-banner {
    margin: 40px 18px;
    padding: 35px 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
  }
  .material-visual {
    min-height: 390px;
  }
  .cta-section {
    min-height: 480px;
    padding: 30px 18px;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }
  .page-hero {
    padding: 160px 20px 70px;
  }
  .page-hero.compact {
    min-height: 430px;
  }
  .finder-form {
    grid-template-columns: 1fr;
  }
  .product-detail {
    padding-top: 140px;
  }
  .main-product-image {
    height: 430px;
  }
  .buy-form {
    grid-template-columns: 1fr;
  }
  .feature-list,
  .process-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    display: block;
  }
  .gallery-item {
    height: 360px;
    margin-bottom: 12px;
  }
  .contact-form {
    padding: 25px;
  }
  .footer-logo {
    width: 190px;
  }
}
.gallery-item.uploaded {
  background: #151617;
}
.gallery-item.uploaded:after {
  display: none;
}
.gallery-item.uploaded > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.gallery-item.uploaded:hover > img {
  transform: scale(1.04);
}
.gallery-item.uploaded figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 45px 25px 24px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.88));
  display: flex;
  flex-direction: column;
  z-index: 2;
}
.gallery-item.uploaded figcaption span {
  color: var(--lime);
  font-size: 10px;
}
.gallery-item.uploaded figcaption b {
  font-size: 28px;
  margin-top: 7px;
}
.gallery-item.uploaded figcaption small {
  color: #c3c6c6;
  margin-top: 5px;
}
.thumb-row {
  grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
}

.product-gallery {
  min-width: 0;
  width: 100%;
}
.main-product-image {
  position: relative;
  width: 100%;
  overflow: hidden;
  isolation: isolate;
}
.main-product-image img {
  position: absolute;
  inset: 5%;
  width: 90%;
  height: 90%;
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  object-position: center;
}
.thumb-row {
  position: relative;
  z-index: 2;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  scrollbar-width: thin;
}
.thumb-row button {
  min-width: 0;
  overflow: hidden;
}
.thumb-row button img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
@media (max-width: 1050px) {
  .product-gallery {
    max-width: 760px;
    margin-inline: auto;
  }
}
@media (max-width: 700px) {
  .main-product-image {
    height: min(115vw, 520px);
  }
  .main-product-image img {
    inset: 4%;
    width: 92%;
    height: 92%;
    max-width: 92%;
    max-height: 92%;
  }
  .thumb-row {
    display: flex;
    gap: 8px;
    padding-bottom: 5px;
  }
  .thumb-row button {
    flex: 0 0 92px;
    height: 82px;
  }
}

.contact-form .error {
  padding: 14px 16px;
  border: 1px solid rgba(255, 90, 90, 0.45);
  background: rgba(255, 90, 90, 0.08);
  color: #ffb2b2;
  border-radius: 8px;
}
.contact-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
}
.contact-details a {
  color: inherit;
  text-decoration: none;
}
.contact-details a:hover {
  text-decoration: underline;
}

.newsletter-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
.newsletter-message {
  display: block;
  margin-top: 8px;
  line-height: 1.4;
}
.newsletter-message.success {
  color: #b8ff00;
}
.newsletter-message.error {
  color: #ff8e8e;
}
.newsletter-status-page {
  min-height: 55vh;
  display: flex;
  align-items: center;
  padding: 100px 20px;
}
.newsletter-status-page .narrow {
  max-width: 760px;
  margin: 0 auto;
}
.newsletter-status-page h1 {
  margin: 15px 0 20px;
}
.newsletter-status-page p {
  margin-bottom: 30px;
}

.policy-content {
  max-width: 980px;
}
.policy-content > div {
  font-size: 17px;
  line-height: 1.85;
  color: #c6c9c9;
  white-space: normal;
}

.product-stock {
  margin: 0 0 18px;
  font-weight: 700;
  font-size: 0.95rem;
}
.product-stock.available {
  color: #267a48;
}
.product-stock.sold-out {
  color: #a63b32;
}
.btn.disabled {
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: none;
}
.product-image {
  position: relative;
}
.sold-out-badge {
  position: absolute;
  right: 12px;
  bottom: 12px;
  background: #111;
  color: #fff;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.shipping-hero {
  position: relative;
  overflow: hidden;
}
.shipping-hero:after {
  content: "";
  position: absolute;
  inset: auto -10% -90px auto;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(185, 237, 38, 0.18),
    rgba(185, 237, 38, 0) 68%
  );
  pointer-events: none;
}
.shipping-hero-lead {
  max-width: 760px;
  margin-top: 28px;
  font-size: 19px;
  line-height: 1.8;
  color: #d7dbdb;
}
.shipping-hero-lead a,
.shipping-policy-card a,
.shipping-overview-card a,
.shipping-sidebar-card a {
  color: var(--lime);
  text-decoration: none;
}
.shipping-hero-lead a:hover,
.shipping-policy-card a:hover,
.shipping-overview-card a:hover,
.shipping-sidebar-card a:hover {
  text-decoration: underline;
}
.shipping-overview-section {
  padding-top: 0;
  margin-top: -110px;
  position: relative;
  z-index: 3;
}
.shipping-overview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.shipping-overview-card,
.shipping-policy-card,
.shipping-sidebar-card {
  background: linear-gradient(180deg, #212427 0%, #191b1e 100%);
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
}
.shipping-overview-card {
  min-height: 100%;
  padding: 28px;
}
.shipping-overview-card span,
.policy-kicker,
.shipping-sidebar-card span {
  display: inline-block;
  color: var(--lime);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.shipping-overview-card h2,
.shipping-policy-card h2,
.shipping-sidebar-card h3 {
  margin: 0 0 12px;
  line-height: 1.05;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}
.shipping-overview-card h2 {
  font-size: 28px;
}
.shipping-overview-card p,
.shipping-policy-card p,
.shipping-sidebar-card p,
.shipping-checklist li {
  margin: 0;
  color: #c4c9ca;
  font-size: 16px;
  line-height: 1.8;
}
.shipping-policy-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: 26px;
  padding-top: 36px;
}
.shipping-policy-main {
  display: grid;
  gap: 22px;
}
.shipping-policy-card {
  padding: 34px 34px 30px;
}
.shipping-policy-card h2 {
  font-size: 34px;
  margin-bottom: 18px;
}
.shipping-policy-card p + p {
  margin-top: 16px;
}
.shipping-policy-intro {
  border-left: 4px solid var(--green);
}
.shipping-policy-sidebar {
  display: grid;
  gap: 22px;
  align-self: start;
  position: sticky;
  top: 120px;
}
.shipping-sidebar-card {
  padding: 28px;
}
.shipping-contact-link {
  display: inline-flex;
  margin-top: 16px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.shipping-checklist {
  margin: 6px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}
.shipping-checklist li {
  position: relative;
  padding-left: 28px;
}
.shipping-checklist li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 5px rgba(185, 237, 38, 0.12);
}
@media (max-width: 1050px) {
  .shipping-overview-grid,
  .shipping-policy-layout {
    grid-template-columns: 1fr;
  }
  .shipping-policy-sidebar {
    position: static;
  }
}
@media (max-width: 700px) {
  .shipping-overview-section {
    margin-top: -55px;
  }
  .shipping-overview-card,
  .shipping-policy-card,
  .shipping-sidebar-card {
    padding: 24px 20px;
  }
  .shipping-overview-card h2,
  .shipping-policy-card h2,
  .shipping-sidebar-card h3 {
    font-size: 24px;
  }
  .shipping-hero-lead,
  .shipping-overview-card p,
  .shipping-policy-card p,
  .shipping-sidebar-card p,
  .shipping-checklist li {
    font-size: 15px;
  }
  .shipping-contact-link {
    font-size: 18px;
    word-break: break-word;
  }
}
