:root {
  --ink: #f6f4ec;
  --muted: #b9b6aa;
  --paper: #020202;
  --soft: #10130d;
  --surface: #15170f;
  --surface-2: #1e2116;
  --line: rgba(255, 255, 255, 0.11);
  --roam-red: #f23801;
  --roam-gold: #c7b448;
  --roam-green: #6f8b3d;
  --roam-blue: #6f8b3d;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Hind Madurai", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--ink);
  background:
    radial-gradient(circle at 82% 4%, rgba(111, 139, 61, 0.22), transparent 30%),
    radial-gradient(circle at 18% 22%, rgba(242, 56, 1, 0.12), transparent 28%),
    var(--paper);
}

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

a {
  text-decoration: none;
}

.site-header {
  background: rgba(9, 8, 19, 0.84);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.navbar {
  min-height: 82px;
}

.navbar-brand img {
  width: 210px;
  height: auto;
}

.navbar-toggler {
  width: 50px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  margin-left: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: none !important;
}

.navbar-toggler-icon {
  width: 26px;
  height: 20px;
  background-image:
    linear-gradient(#fff, #fff),
    linear-gradient(#fff, #fff),
    linear-gradient(#fff, #fff);
  background-repeat: no-repeat;
  background-size: 26px 3px, 26px 3px, 26px 3px;
  background-position: 0 0, 0 8.5px, 0 17px;
}

.site-header .navbar-nav .nav-link {
  position: relative;
  color: rgba(255, 255, 255, 0.82) !important;
  font-family: "Hind Madurai", sans-serif;
  font-weight: 400;
  font-size: 16px;
  padding: 0.7rem 0.65rem !important;
  transition: color 0.16s ease;
}

.site-header .navbar-nav .nav-link:hover,
.site-header .navbar-nav .nav-link:focus {
  color: #fff !important;
  outline: 0;
}

.site-header .navbar-nav .nav-link:active,
.site-header .navbar-nav .nav-link:visited {
  color: rgba(255, 255, 255, 0.82) !important;
}

.site-header .navbar-nav .nav-link.active,
.site-header .navbar-nav .nav-link.show {
  color: #fff !important;
}

.site-header .navbar-nav .nav-link.active:not(.nav-pill)::after {
  content: "";
  position: absolute;
  left: 0.65rem;
  right: 0.65rem;
  bottom: 0.28rem;
  height: 2px;
  border-radius: 999px;
  background: var(--roam-red);
}

.site-header .navbar-nav .nav-link:not(.nav-pill):hover::after,
.site-header .navbar-nav .nav-link:not(.nav-pill):focus::after {
  content: "";
  position: absolute;
  left: 0.65rem;
  right: 0.65rem;
  bottom: 0.28rem;
  height: 2px;
  border-radius: 999px;
  background: var(--roam-red);
}

.nav-pill {
  color: #fff !important;
  background: linear-gradient(135deg, var(--roam-red), #cb2e00);
  border-radius: 999px;
  padding-inline: 1rem !important;
  box-shadow: 0 10px 24px rgba(242, 56, 1, 0.26);
}

.hero-section {
  position: relative;
  margin-top: 82px;
  overflow: hidden;
  background: #05040a;
}

.hero-section .carousel,
.hero-section .carousel-inner,
.hero-section .carousel-item {
  aspect-ratio: auto;
  height: min(21.97vw, calc(100vh - 82px));
  min-height: 400px;
  max-height: 420px;
}

.hero-section .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background:
    radial-gradient(circle at 70% 10%, rgba(111, 139, 61, 0.26), transparent 34%),
    #05040a;
}

.hero-section::after {
  content: none;
}

.hero-overlay {
  display: none;
}

.hero-copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.4rem;
  align-items: center;
  max-width: none;
  padding: 0;
  color: #fff;
}

.hero-copy > * {
  min-width: 0;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 0.8rem;
  color: var(--roam-red);
  font-family: "Oswald", sans-serif;
  font-size: 20px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0;
}

.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 28px;
  height: 3px;
  background: var(--roam-red);
  border-radius: 999px;
}

.hero-copy h1 {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-size: 60px;
  line-height: 0.95;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero-copy p:not(.eyebrow) {
  margin: 0.55rem 0 0;
  max-width: 560px;
  font-size: 18px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.82);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 0;
  justify-content: flex-end;
}

.btn {
  border-radius: 999px;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 1.25rem;
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1;
  white-space: nowrap;
}

.btn-roam {
  color: #fff;
  background: linear-gradient(135deg, var(--roam-red), #cb2e00);
  border: 0;
  box-shadow: 0 14px 30px rgba(242, 56, 1, 0.28);
}

.btn-roam:hover,
.btn-roam:focus {
  color: #fff;
  transform: translateY(-1px);
}

.carousel-indicators {
  z-index: 4;
  margin-bottom: 1.35rem;
}

.carousel-indicators [data-bs-target] {
  width: 42px;
  height: 5px;
  border: 0;
  border-radius: 999px;
}

.section {
  padding: 88px 0;
}

.brand-strip {
  background: linear-gradient(135deg, rgba(16, 19, 13, 0.98), rgba(2, 2, 2, 0.98));
  border-bottom: 1px solid var(--line);
}

.brand-strip h2,
.section-heading h2,
.manufacturing-section h2,
.catalogue-section h2,
.dealer-panel h2 {
  font-family: "Oswald", sans-serif;
  font-size: 50px;
  line-height: 1;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0;
  margin: 0 0 1rem;
  overflow-wrap: break-word;
}

.brand-strip p,
.section-heading p,
.manufacturing-section p,
.catalogue-section p,
.dealer-panel p {
  color: var(--muted);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
}

.brand-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.3rem;
}

.brand-points span {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.55rem 1rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  font-size: 15px;
  font-weight: 400;
}

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

.section-heading .btn {
  margin-top: 0.75rem;
}

.models-section {
  background: var(--paper);
}

.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1.8rem;
}

.filter-tabs button {
  min-height: 42px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.82);
  border-radius: 999px;
  padding: 0.55rem 1rem;
  font-family: "Oswald", sans-serif;
  font-size: 20px;
  font-weight: 500;
}

.filter-tabs button.active,
.filter-tabs button:hover {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, var(--roam-red), #cb2e00);
}

.product-card,
.mini-bike,
.benefit,
.testimonials-section blockquote {
  height: 100%;
  background: linear-gradient(180deg, #15170f, #10130d);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.14);
}

.product-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.product-card img {
  width: 100%;
  aspect-ratio: 1 / 0.9;
  object-fit: cover;
  object-position: top center;
  background: #171a11;
}

.product-card__body {
  padding: 1.1rem;
}

.product-card span {
  display: inline-flex;
  color: var(--roam-red);
  font-family: "Oswald", sans-serif;
  font-size: 20px;
  font-weight: 300;
}

.product-card h3,
.mini-bike h3,
.benefit h3 {
  margin: 0.45rem 0;
  font-family: "Oswald", sans-serif;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0;
}

.product-card p,
.mini-bike p,
.benefit p {
  color: var(--muted);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.55;
}

.card-actions {
  display: flex;
  gap: 0.7rem;
  margin-top: 1rem;
}

.card-actions a {
  flex: 1;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-weight: 900;
  font-size: 0.86rem;
}

.card-actions a:last-child {
  color: #fff;
  background: #158a4a;
}

.series-section {
  background: linear-gradient(180deg, var(--surface), var(--paper));
  border-top: 1px solid var(--line);
}

.series-card {
  min-height: 520px;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  color: #fff;
  box-shadow: var(--shadow);
}

.series-card img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.series-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 7, 20, 0.08), rgba(10, 7, 20, 0.82));
}

.series-card div {
  position: absolute;
  left: 1.6rem;
  right: 1.6rem;
  bottom: 1.6rem;
  z-index: 2;
}

.series-card h2 {
  font-family: "Oswald", sans-serif;
  font-size: 50px;
  font-weight: 600;
  line-height: 0.98;
  text-transform: uppercase;
  letter-spacing: 0;
}

.series-card p {
  max-width: 500px;
  color: rgba(255, 255, 255, 0.88);
}

.light-card::after {
  background: linear-gradient(180deg, rgba(111, 139, 61, 0.04), rgba(72, 86, 39, 0.72));
}

.mini-bike {
  padding: 0.9rem;
}

.mini-bike img {
  width: 100%;
  aspect-ratio: 1 / 0.86;
  object-fit: cover;
  object-position: top center;
  border-radius: 6px;
  background: #171a11;
}

.mini-bike h3,
.mini-bike p {
  padding-inline: 0.35rem;
}

.why-section {
  background: linear-gradient(180deg, var(--paper), var(--surface));
}

.benefit {
  padding: 1.35rem;
}

.benefit strong {
  color: var(--roam-red);
  font-family: "Oswald", sans-serif;
  font-size: 20px;
  font-weight: 300;
}

.manufacturing-section {
  background:
    linear-gradient(135deg, rgba(19, 25, 12, 0.95), rgba(2, 2, 2, 0.98)),
    var(--ink);
  color: #fff;
}

.manufacturing-section p {
  color: rgba(255, 255, 255, 0.76);
}

.facility-image {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

.capability-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  margin: 1.5rem 0;
}

.capability-list span {
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  font-size: 15px;
  font-weight: 400;
}

.dealer-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #17200d, #070801);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.dealer-panel {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
  color: #fff;
}

.dealer-panel p {
  color: rgba(255, 255, 255, 0.78);
}

.dealer-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) 124px;
  gap: 0.7rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.dealer-form input,
.dealer-form button {
  min-height: 50px;
  border: 0;
  border-radius: 999px;
  padding: 0 1rem;
}

.dealer-form input {
  background: rgba(255, 255, 255, 0.94);
  color: #171a11;
}

.dealer-form button {
  color: #fff;
  background: linear-gradient(135deg, var(--roam-red), #cb2e00);
  font-family: "Oswald", sans-serif;
  font-size: 18px;
  font-weight: 500;
  white-space: nowrap;
}

.catalogue-section {
  background: linear-gradient(180deg, var(--surface), var(--paper));
}

.catalogue-preview {
  display: grid;
  grid-template-columns: 1fr 0.8fr 0.8fr;
  gap: 1rem;
  align-items: end;
}

.catalogue-preview img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.catalogue-preview img:first-child {
  transform: translateY(-1rem);
}

.testimonials-section {
  background: var(--surface);
}

.testimonials-section blockquote {
  margin: 0;
  padding: 1.4rem;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.7;
}

.testimonials-section cite {
  display: block;
  margin-top: 1rem;
  color: var(--roam-red);
  font-style: normal;
  font-family: "Oswald", sans-serif;
  font-size: 20px;
  font-weight: 500;
}

.site-footer {
  padding: 0;
  color: rgba(255, 255, 255, 0.78);
  background:
    radial-gradient(circle at 78% 10%, rgba(111, 139, 61, 0.18), transparent 28%),
    linear-gradient(135deg, rgba(8, 9, 4, 1), rgba(2, 2, 2, 1));
  border-top: 1px solid var(--line);
}

.footer-top {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 3rem;
  padding: 64px 0 42px;
  border-bottom: 1px solid var(--line);
}

.footer-brand-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  max-width: 520px;
  margin-bottom: 1.2rem;
}

.footer-brand-stack img {
  width: auto;
  max-width: 190px;
  max-height: 52px;
  object-fit: contain;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.96);
  padding: 0.48rem 0.7rem;
}

.footer-brand-stack img:first-child {
  max-width: 220px;
  max-height: 70px;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-brand-stack img:nth-child(2) {
  max-height: 62px;
  background: #19151d;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-brand-stack img:nth-child(3) {
  max-width: 190px;
}

.footer-newsletter {
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.footer-newsletter h3 {
  margin-bottom: 0.45rem;
  font-family: "Oswald", sans-serif;
  font-size: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0;
}

.footer-newsletter form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.7rem;
  margin-top: 1rem;
}

.footer-newsletter input,
.footer-newsletter button {
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  padding: 0 1rem;
}

.footer-newsletter input {
  color: #171a11;
  background: #fff;
}

.footer-newsletter button {
  color: #fff;
  background: linear-gradient(135deg, var(--roam-red), #cb2e00);
  font-family: "Oswald", sans-serif;
  font-size: 18px;
  font-weight: 500;
  white-space: nowrap;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
  padding: 38px 0 44px;
}

.site-footer h3 {
  color: #fff;
  font-size: 1rem;
  font-weight: 900;
}

.site-footer a {
  display: flex;
  margin: 0 0 0.62rem;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.footer-whatsapp {
  display: inline-flex !important;
  margin-top: 0.4rem !important;
  color: #fff !important;
  background: #158a4a;
  border-radius: 999px;
  padding: 0.7rem 1rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.88rem;
}

@media (max-width: 1199.98px) {
  .nav-link {
    font-size: 0.84rem;
    padding-inline: 0.42rem !important;
  }
}

@media (max-width: 991.98px) {
  .navbar {
    min-height: 72px;
  }

  .navbar-brand img {
    width: 180px;
  }

  .navbar-collapse {
    padding: 1rem 0 0.8rem;
  }

  .nav-link {
    padding: 0.65rem 0 !important;
  }

  .nav-pill {
    display: inline-flex;
    padding-inline: 1rem !important;
  }

  .hero-section .carousel,
  .hero-section .carousel-inner,
  .hero-section .carousel-item {
    aspect-ratio: auto;
    height: clamp(280px, 42vw, 390px);
    min-height: 280px;
    max-height: 430px;
  }

  .hero-copy {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 76px 0;
  }

  .dealer-panel,
  .dealer-form,
  .footer-top,
  .footer-links-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767.98px) {
  .section .row,
  .dealer-section .row,
  .site-footer .row {
    margin-left: 0;
    margin-right: 0;
  }

  .section .row > *,
  .dealer-section .row > *,
  .site-footer .row > * {
    padding-left: 0;
    padding-right: 0;
  }

  .hero-section {
    margin-top: 72px;
  }

  .hero-section .carousel,
  .hero-section .carousel-inner,
  .hero-section .carousel-item {
    aspect-ratio: auto;
    height: clamp(220px, 68vw, 280px);
    min-height: 220px;
  }

  .hero-section .carousel-item img {
    object-fit: cover;
    object-position: center;
  }

  .hero-copy h1 {
    font-size: clamp(2.25rem, 10.5vw, 3.15rem);
  }

  .hero-copy p:not(.eyebrow) {
    font-size: 1rem;
  }

  .hero-actions {
    justify-content: flex-start;
  }

  .hero-actions .btn {
    flex: 1 1 100%;
    width: 100%;
    text-align: center;
  }

  .brand-strip h2,
  .section-heading h2,
  .manufacturing-section h2,
  .catalogue-section h2,
  .dealer-panel h2 {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  .brand-points,
  .capability-list,
  .catalogue-preview {
    grid-template-columns: 1fr;
  }

  .brand-points {
    display: grid;
  }

  .filter-tabs {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 0.4rem;
  }

  .filter-tabs button {
    flex: 0 0 auto;
  }

  .series-card,
  .series-card img {
    min-height: 430px;
  }

  .dealer-form input,
  .dealer-form button,
  .footer-newsletter input,
  .footer-newsletter button {
    border-radius: 8px;
  }

  .footer-top {
    padding-top: 48px;
  }

  .footer-brand-stack {
    display: grid;
    grid-template-columns: 1fr;
  }

  .footer-newsletter form,
  .footer-bottom {
    grid-template-columns: 1fr;
    display: grid;
  }
}

.inner-main {
  padding-top: 82px;
}

.inner-hero {
  min-height: 410px;
  display: flex;
  align-items: center;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(2, 2, 2, 0.86), rgba(2, 2, 2, 0.42)),
    url("../images/banner-austin-desktop.png") center / cover no-repeat;
}

.products-hero {
  background:
    linear-gradient(90deg, rgba(2, 2, 2, 0.88), rgba(2, 2, 2, 0.36)),
    url("../images/banner-delta-desktop.png") center / cover no-repeat;
}

.about-hero {
  background:
    linear-gradient(90deg, rgba(2, 2, 2, 0.88), rgba(2, 2, 2, 0.38)),
    url("../images/banner-jasper-desktop.png") center / cover no-repeat;
}

.inner-hero h1,
.product-detail-hero h1,
.detail-section h2 {
  max-width: 880px;
  margin: 0 0 1rem;
  font-family: "Oswald", sans-serif;
  font-size: clamp(46px, 7vw, 82px);
  line-height: 0.95;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0;
}

.inner-hero p,
.product-detail-hero p,
.detail-section p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 19px;
  line-height: 1.7;
}

.inner-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.inner-toolbar a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.6rem 1.1rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  font-family: "Oswald", sans-serif;
  font-size: 20px;
  font-weight: 500;
}

.inner-toolbar a.active,
.inner-toolbar a:hover {
  border-color: transparent;
  background: linear-gradient(135deg, var(--roam-red), #cb2e00);
}

.inner-product-card .product-card__image-link {
  display: block;
}

.colour-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.85rem;
}

.colour-list em {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.25rem 0.7rem;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.05);
  font-size: 13px;
  font-style: normal;
}

.product-detail-hero {
  padding: 130px 0 72px;
  color: #fff;
  background:
    radial-gradient(circle at 78% 10%, rgba(111, 139, 61, 0.18), transparent 28%),
    linear-gradient(135deg, #080904, #020202);
}

.detail-gallery {
  display: grid;
  gap: 1rem;
}

.detail-main-image {
  width: 100%;
  aspect-ratio: 1 / 0.82;
  object-fit: cover;
  object-position: top center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #171a11;
  box-shadow: var(--shadow);
}

.detail-thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.7rem;
}

.detail-thumbs button {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0;
  overflow: hidden;
  background: #171a11;
}

.detail-thumbs button:hover,
.detail-thumbs button:focus {
  border-color: var(--roam-red);
}

.detail-thumbs img {
  width: 100%;
  aspect-ratio: 1 / 0.8;
  object-fit: cover;
  object-position: top center;
}

.detail-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin: 1.6rem 0;
}

.detail-meta div {
  min-height: 104px;
  display: grid;
  align-content: center;
  gap: 0.35rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.06);
}

.detail-meta strong {
  color: var(--roam-red);
  font-family: "Oswald", sans-serif;
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
}

.detail-meta span {
  color: #fff;
  line-height: 1.35;
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.price-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 1.4rem 0;
  border: 1px solid rgba(242, 56, 1, 0.38);
  border-radius: 8px;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.07);
}

.price-panel span,
.variant-group > strong {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.price-panel strong {
  display: block;
  color: #fff;
  font-family: "Oswald", sans-serif;
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1;
  font-weight: 600;
}

.price-panel small {
  display: block;
  margin-top: 0.3rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.variant-selector {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

.variant-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.55rem;
}

.variant-options button {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.55rem 0.95rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  font-weight: 800;
}

.variant-options button:hover,
.variant-options button:focus,
.variant-options button.active {
  border-color: transparent;
  background: linear-gradient(135deg, var(--roam-red), #cb2e00);
}

.variant-select-wrap {
  margin-top: 0.55rem;
}

.variant-select {
  width: min(100%, 360px);
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.55rem 2.7rem 0.55rem 1rem;
  color: #fff;
  background:
    linear-gradient(45deg, transparent 50%, #fff 50%) calc(100% - 22px) 50% / 7px 7px no-repeat,
    linear-gradient(135deg, rgba(242, 56, 1, 0.94), #cb2e00);
  font-weight: 900;
  appearance: none;
}

.variant-select:focus {
  outline: 2px solid rgba(242, 56, 1, 0.45);
  outline-offset: 3px;
}

.variant-select option {
  color: #171a11;
  background: #fff;
}

.detail-section {
  background: linear-gradient(180deg, var(--surface), var(--paper));
}

.detail-section--specs {
  background: linear-gradient(180deg, var(--surface), #090a06);
}

.spec-table-wrap,
.variant-price-table-wrap {
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.spec-table,
.variant-price-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
}

.spec-table th,
.spec-table td,
.variant-price-table th,
.variant-price-table td {
  border-bottom: 1px solid var(--line);
  padding: 0.85rem 1rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.45;
  vertical-align: top;
}

.spec-table th,
.variant-price-table th {
  position: sticky;
  top: 0;
  z-index: 1;
  color: #fff;
  background: #111408;
  font-family: "Oswald", sans-serif;
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
}

.spec-table td:first-child,
.variant-price-table td:first-child {
  width: 28%;
  color: #fff;
  font-weight: 800;
}

.pricing-section {
  background: var(--paper);
}

.template-download {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.7rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.55rem 1rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
  font-weight: 900;
}

.template-download:hover,
.template-download:focus {
  color: #fff;
  background: linear-gradient(135deg, var(--roam-red), #cb2e00);
}

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

@media (max-width: 991.98px) {
  .inner-main {
    padding-top: 72px;
  }

  .product-detail-hero {
    padding-top: 112px;
  }

  .detail-meta,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .price-panel {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (max-width: 767.98px) {
  .inner-hero {
    min-height: 340px;
  }

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