﻿/* Base styles: sets the overall page theme, spacing, and typography. */
:root {
  --bg: #f4f6f3;
  --surface: #ffffff;
  --surface-dark: #151818;
  --text: #171c1d;
  --muted: #5e686a;
  --line: #dfe5df;
  --accent: #ff4b14;
  --accent-dark: #d93a0a;
  --steel: #607078;
  --shadow: 0 24px 70px rgba(21, 24, 24, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-padding-top: 90px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

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

/* Header styles: creates a clean sticky navigation bar. */
.site-header {
  align-items: center;
  backdrop-filter: blur(18px);
  background: rgba(10, 12, 12, 0.86);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  gap: 22px;
  justify-content: space-between;
  left: 0;
  padding: 18px clamp(20px, 5vw, 72px);
  position: sticky;
  right: 0;
  top: 0;
  z-index: 20;
}

.brand {
  align-items: center;
  color: #ffffff;
  display: inline-flex;
  height: 46px;
}

.brand-logo {
  display: block;
  height: 46px;
  object-fit: contain;
  object-position: center;
  width: 150px;
}

.nav-links {
  display: flex;
  gap: clamp(14px, 3vw, 34px);
  margin-left: auto;
}

.nav-links a {
  color: #c8d1d1;
  font-size: 0.94rem;
  font-weight: 700;
}

.nav-links a:hover {
  color: #ffffff;
}

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

.header-actions button {
  border-radius: 8px;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 900;
  min-height: 40px;
  padding: 9px 15px;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.header-actions button:hover {
  transform: translateY(-1px);
}

.header-login {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #ffffff;
}

.header-login:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.48);
}

.header-signup {
  background: var(--accent);
  border: 1px solid var(--accent);
  color: #ffffff;
}

.header-signup:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

.account-shell {
  align-items: center;
  display: inline-flex;
  gap: 8px;
  position: relative;
}

.account-name,
.account-menu-toggle {
  border-radius: 8px;
  min-height: 40px;
  padding: 9px 15px;
}

.account-name {
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #ffffff;
  display: inline-flex;
  font-size: 0.9rem;
  font-weight: 900;
}

.account-menu-toggle {
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #ffffff;
  cursor: pointer;
  display: inline-flex;
  font-size: 0.9rem;
  font-weight: 900;
  justify-content: center;
  padding-left: 12px;
  padding-right: 12px;
}

.account-menu {
  background: #0d1010;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
  display: grid;
  gap: 2px;
  min-width: 190px;
  opacity: 0;
  padding: 8px;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  transform: translateY(-4px);
  transition: opacity 180ms ease, transform 180ms ease;
  visibility: hidden;
  z-index: 30;
}

.account-shell.is-open .account-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.account-menu a,
.account-menu button {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 6px;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 800;
  min-height: 40px;
  padding: 0 12px;
  text-align: left;
  width: 100%;
}

.account-menu a:hover,
.account-menu button:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* Hero section: uses the TORQ product image as a full background with a readability overlay. */
.hero {
  align-items: end;
  background: #050606;
  color: #ffffff;
  display: grid;
  min-height: clamp(520px, 45vw, 680px);
  overflow: hidden;
  padding: clamp(56px, 8vw, 110px) clamp(20px, 5vw, 72px) clamp(34px, 5vw, 64px);
  position: relative;
}

.hero::before {
  background: url("torq-hero-cover.png") center center / cover no-repeat;
  content: "";
  height: calc(100% + 34px);
  left: 0;
  position: absolute;
  right: 0;
  top: -34px;
  z-index: 0;
}

.hero::after {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.14) 0%, rgba(0, 0, 0, 0.02) 44%, rgba(0, 0, 0, 0) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0) 62%, rgba(0, 0, 0, 0.42) 86%, rgba(244, 246, 243, 1) 100%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.hero-content {
  background: rgba(5, 6, 6, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  backdrop-filter: blur(10px);
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  max-width: 420px;
  padding: 16px 18px;
  position: relative;
  z-index: 2;
}

.hero-content .eyebrow {
  flex: 0 0 100%;
  margin-bottom: -4px;
}

.eyebrow {
  color: var(--accent-dark);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.torq-gt .eyebrow {
  align-items: center;
  background: rgba(255, 75, 20, 0.12);
  border: 1px solid rgba(255, 75, 20, 0.34);
  border-radius: 999px;
  color: #ffffff;
  display: inline-flex;
  font-size: clamp(1.22rem, 1.8vw, 1.52rem);
  letter-spacing: 0.17em;
  margin-bottom: 40px;
  min-height: 56px;
  padding: 0 20px;
  transform: translate(-14px, -2px);
}

#torq-gt[data-new-product-carousel] .eyebrow {
  margin-bottom: 36px;
  transform: translate(calc(clamp(50px, 5.5vw, 120px) * -1), -30px);
}

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

h1 {
  font-size: clamp(2.6rem, 6.2vw, 5.5rem);
  letter-spacing: 0;
  line-height: 0.96;
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: 0;
  line-height: 1.05;
  margin-bottom: 0;
}

h3 {
  font-size: 1.2rem;
  line-height: 1.2;
  margin-bottom: 12px;
}

.hero h1 {
  flex: 1 1 360px;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.12;
  margin-bottom: 0;
}

.hero-copy {
  color: #d8dfdf;
  display: none;
  font-size: clamp(0.98rem, 1.45vw, 1.12rem);
  max-width: 460px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 0;
}

.button {
  align-items: center;
  border-radius: 8px;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary {
  background: var(--surface-dark);
  box-shadow: 0 14px 28px rgba(21, 24, 24, 0.18);
  color: #ffffff;
}

.button-secondary {
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--text);
}

.hero .button-primary,
.torq-gt .button-primary,
.enquiry .button-primary {
  background: var(--accent);
  color: #ffffff;
}

.hero .button-secondary {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
  color: #ffffff;
}

.motion-kit-page .button-primary {
  background: var(--accent);
  color: #ffffff;
}

.motion-kit-page .button-secondary {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
  color: #ffffff;
}

.motion-kit-page .button-primary:disabled {
  background: rgba(255, 75, 20, 0.22);
  box-shadow: none;
  cursor: not-allowed;
  opacity: 0.72;
  transform: none;
}

.motion-kit-page .button-primary:disabled:hover {
  transform: none;
}

.motion-kit-page .motion-kit-whatsapp {
  background: #20c45a;
  border: 1px solid rgba(32, 196, 90, 0.5);
  box-shadow: 0 14px 28px rgba(32, 196, 90, 0.22);
  color: #ffffff;
}

.button.whatsapp-link {
  background: #20c45a;
  border-color: rgba(32, 196, 90, 0.5);
  box-shadow: 0 14px 28px rgba(32, 196, 90, 0.22);
  color: #ffffff;
}

.button.whatsapp-link:hover {
  background: #29d164;
  border-color: rgba(41, 209, 100, 0.72);
  color: #ffffff;
}

.motion-kit-page .motion-kit-whatsapp:hover {
  background: #29d164;
  border-color: rgba(41, 209, 100, 0.72);
}

/* Shared section styles: keeps content aligned and spaced consistently. */
.section {
  padding: clamp(64px, 8vw, 108px) clamp(20px, 5vw, 72px);
}

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

.products-heading {
  display: block;
  margin-bottom: 24px;
  max-width: none;
}

.products-heading .eyebrow {
  color: var(--accent);
  font-size: clamp(1.15rem, 1.53vw, 1.62rem);
  letter-spacing: 0.16em;
  margin-bottom: 0;
}

.products .section-heading h2,
.about .section-heading h2 {
  font-size: clamp(2.3rem, 4.8vw, 4.1rem);
  line-height: 1.04;
  text-wrap: balance;
  white-space: normal;
  max-width: 1120px;
  width: 100%;
}

.products .section-heading h2 {
  font-size: clamp(1.95rem, 2.7vw, 3rem);
  margin: 8px 0 0;
  max-width: 1120px;
  text-align: left;
}

.heading-line {
  display: block;
}

/* TORQ GT section: uses the widescreen cockpit cover as an integrated product banner. */
.torq-gt {
  align-items: center;
  background: #050606;
  color: #ffffff;
  display: grid;
  grid-template-columns: minmax(0, 650px);
  min-height: clamp(560px, 56vw, 820px);
  overflow: hidden;
  padding-bottom: clamp(76px, 9vw, 128px);
  padding-left: clamp(68px, 12vw, 190px);
  padding-right: clamp(48px, 7vw, 120px);
  padding-top: clamp(76px, 9vw, 128px);
  position: relative;
}

.torq-gt::before {
  background: transparent;
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.gt-content {
  max-width: min(610px, 50vw);
  margin-left: clamp(6px, 1vw, 20px);
  position: relative;
  z-index: 2;
}

.gt-content,
.gt-media img {
  transition: opacity 180ms ease, transform 180ms ease;
}

.torq-gt h2 {
  font-size: clamp(2rem, 3.4vw, 3.2rem);
  max-width: 680px;
}

.gt-content p {
  color: #d8dfdf;
  font-size: clamp(1rem, 1.5vw, 1.12rem);
}

.gt-content .eyebrow {
  color: var(--accent);
}

.gt-brand-lockup {
  align-items: center;
  --gt-lockup-gap: clamp(10px, 1.2vw, 16px);
  --gt-lockup-height: clamp(56px, 5.8vw, 76px);
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: fit-content;
  margin-bottom: 28px;
}

.gt-brand-lockup.is-motion {
  align-items: flex-start;
  gap: 4px;
}

.gt-logo-row {
  align-items: center;
  display: flex;
  gap: var(--gt-lockup-gap);
}

.gt-symbol-stack {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.gt-lockup-logo {
  display: block;
  height: auto;
  width: auto;
}

.torq-lockup-logo {
  object-fit: contain;
  object-position: center;
  height: var(--gt-lockup-height);
  width: auto;
}

.gt-symbol-logo {
  object-fit: contain;
  object-position: center;
  height: var(--gt-lockup-height);
  width: auto;
}

.gt-subtitle {
  color: #ffffff;
  display: block;
  font-size: clamp(0.95rem, 1.15vw, 1.08rem);
  font-weight: 900;
  letter-spacing: 0.34em;
  margin-left: 0;
  margin-top: 10px;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
  width: 100%;
}

.gt-hero-lockup .gt-subtitle {
  transform: scaleX(1.18);
  transform-origin: center;
}

.gt-brand-lockup.is-motion .gt-subtitle,
.gt-hero-lockup.is-motion .gt-subtitle {
  font-size: clamp(0.84rem, 1.04vw, 0.98rem);
  letter-spacing: 0.28em;
  transform: scaleX(1.08);
}

.gt-brand-lockup.is-motion .gt-logo-row {
  margin-left: -10px;
}

.gt-brand-lockup.is-motion .gt-subtitle {
  margin-left: 18px;
  text-align: left;
  width: auto;
}

.gt-hero-lockup {
  margin-bottom: 18px;
}

.gt-kicker {
  color: #ffffff;
  font-size: clamp(1.08rem, 2vw, 1.55rem);
  font-weight: 900;
  letter-spacing: 0;
  margin-bottom: 22px;
  text-transform: uppercase;
}

.gt-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.gt-new-product-controls {
  align-items: center;
  display: flex;
  gap: 12px;
  margin-top: 22px;
  max-width: 560px;
  width: 100%;
}

.gt-new-product-button {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: #ffffff;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  min-height: 46px;
  padding: 0 16px;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.gt-new-product-button:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
  transform: translateY(-1px);
}

.gt-new-product-button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.gt-new-product-counter {
  color: #d8dfdf;
  flex: 1;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  margin: 0;
  text-align: center;
  text-transform: uppercase;
}

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

.gt-feature-links li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.gt-feature-links li:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.gt-feature-links a {
  align-items: center;
  color: #ffffff;
  display: grid;
  gap: 12px;
  grid-template-columns: 14px 1fr;
  padding: 12px 0;
  text-decoration: none;
  transition: color 180ms ease, padding-left 180ms ease;
}

.gt-feature-links a::before {
  color: var(--accent);
  content: "›";
  font-size: 1.1rem;
  font-weight: 900;
  line-height: 1;
}

.gt-feature-links a:hover {
  color: var(--accent);
  padding-left: 4px;
}

.gt-feature-links span {
  align-items: center;
  color: #ffffff;
  display: grid;
  gap: 12px;
  grid-template-columns: 14px 1fr;
  padding: 12px 0;
  text-decoration: none;
}

.gt-feature-links span::before {
  color: var(--accent);
  content: "›";
  font-size: 1.1rem;
  font-weight: 900;
  line-height: 1;
}

.motion-kit-page .gt-feature-links span {
  cursor: default;
  pointer-events: none;
}

.torq-gt .button-secondary {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.28);
  color: #ffffff;
}

.gt-features {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  list-style: none;
  margin: 28px 0 32px;
  padding: 0;
}

.gt-features li {
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  color: #ffffff;
  display: grid;
  font-size: 0.92rem;
  font-weight: 700;
  gap: 10px;
  grid-template-columns: 10px 1fr;
  line-height: 1.35;
  padding: 11px 13px;
}

.gt-features li::before {
  background: var(--accent);
  border-radius: 999px;
  content: "";
  height: 10px;
  width: 10px;
}

.gt-media {
  background: #060606;
  height: 100%;
  inset: 0;
  margin: 0;
  overflow: hidden;
  position: absolute;
  width: 100%;
  z-index: 0;
}

.gt-media::after {
  display: none;
}

.gt-media img {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  position: absolute;
  inset: 0;
  width: 100%;
}

.torq-gt.is-changing .gt-content,
.torq-gt.is-changing .gt-media img {
  opacity: 0.14;
  transform: translateY(4px);
}

/* Homepage products: consolidates the full product range into one carousel-like grid. */
.products {
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 75, 20, 0.16), transparent 26%),
    linear-gradient(180deg, #050606 0%, #0b0d0d 50%, #060707 100%);
  color: #ffffff;
}

.products-heading {
  margin-bottom: 24px;
  max-width: none;
  width: 100%;
}

.products-controls {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}

.products-counter {
  color: #9ea8a8;
  flex: 1 1 180px;
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  margin: 0;
  text-align: center;
  text-transform: uppercase;
}

.products-button {
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  color: #ffffff;
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 900;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.products-button:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}

.products-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 24%),
    #0a0c0c;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.26);
  display: grid;
  gap: 0;
  overflow: hidden;
}

.product-card-media {
  aspect-ratio: 4 / 3;
  background: #080909;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.product-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.product-card-media.is-torq-gt {
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 75, 20, 0.08), transparent 52%),
    #060707;
}

.product-card-media.is-torq-gt img {
  object-fit: contain;
  object-position: center center;
}

.product-card-media.is-torq-endurance {
  background:
    radial-gradient(circle at 52% 40%, rgba(255, 255, 255, 0.08), transparent 42%),
    #050606;
}

.product-card-media.is-torq-endurance img {
  object-position: center 42%;
}

.product-card-body {
  display: grid;
  gap: 10px;
  padding: 20px;
}

.product-card-body h3 {
  color: #ffffff;
  font-size: clamp(1.28rem, 2vw, 1.65rem);
  margin: 0;
}

.product-card-body p {
  color: #d9dfdf;
  font-size: 0.95rem;
  margin: 0;
}

.product-card-action {
  margin-top: 6px;
  width: fit-content;
}

.product-card-action.button-primary {
  background: var(--accent);
}

.product-card-action.button-secondary {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  color: #ffffff;
}

/* TORQ GT detail page: dedicated product landing page for feature education. */
.gt-detail-page {
  background: #050606;
  color: #ffffff;
}

.gt-detail-page .section:not(.gt-hero):not(.gt-control-section) {
  padding-bottom: clamp(32px, 3.5vw, 52px);
  padding-top: clamp(32px, 3.5vw, 52px);
}

.gt-hero {
  align-items: start;
  background:
    radial-gradient(circle at 14% 18%, rgba(255, 75, 20, 0.18), transparent 32%),
    radial-gradient(circle at 90% 20%, rgba(255, 255, 255, 0.06), transparent 24%),
    linear-gradient(135deg, #050606 0%, #0d1010 58%, #070808 100%);
  display: grid;
  gap: clamp(14px, 2.2vw, 28px);
  grid-template-columns: minmax(0, 0.98fr) minmax(420px, 1.04fr);
  overflow: hidden;
  position: relative;
}

.gt-hero::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px) 0 0 / 72px 100%,
    linear-gradient(180deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px) 0 0 / 100% 72px;
  content: "";
  inset: 0;
  opacity: 0.18;
  pointer-events: none;
  position: absolute;
}

.gt-hero-copy,
.gt-hero-visual {
  position: relative;
  z-index: 1;
}

.gt-hero-copy {
  max-width: 660px;
  margin-left: clamp(42px, 5vw, 76px);
}

.gt-hero h1 {
  color: #ffffff;
  font-size: clamp(2.85rem, 6vw, 6rem);
  max-width: 10ch;
}

.gt-hero p {
  color: #dfe4e4;
  font-size: clamp(1.04rem, 1.7vw, 1.2rem);
  max-width: 640px;
}

.motion-kit-page .gt-hero-copy {
  max-width: 720px;
}

.motion-kit-page .gt-hero h1 {
  max-width: 16ch;
}

.motion-kit-page .gt-hero p {
  max-width: 700px;
}

.gt-price-start {
  color: var(--accent);
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  margin: 18px 0 0;
  text-transform: uppercase;
}

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

.gt-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.gt-hero-pills span {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: #ffffff;
  font-size: 0.86rem;
  font-weight: 800;
  padding: 10px 13px;
}

.gt-hero-visual {
  display: grid;
  gap: 16px;
  align-content: start;
  align-self: start;
  justify-self: start;
  padding-left: clamp(4px, 1vw, 18px);
}

.gt-carousel {
  display: flex;
  flex-direction: column;
  gap: 14px;
  height: auto;
  max-width: 830px;
  margin-left: 0;
  width: min(100%, 850px);
}

.gt-carousel-stage {
  aspect-ratio: 1 / 1;
  background:
    linear-gradient(160deg, rgba(255, 75, 20, 0.16), transparent 24%),
    linear-gradient(145deg, #1b1f1f, #070808);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.36);
  max-width: 1240px;
  flex: 0 0 auto;
  min-height: clamp(430px, 55vw, 736px);
  overflow: hidden;
  position: relative;
  width: 100%;
}

.gt-carousel-stage::before {
  background:
    linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.08) 48%, transparent 100%),
    linear-gradient(0deg, transparent 0%, rgba(255, 75, 20, 0.28) 50%, transparent 100%);
  content: "";
  inset: 16px;
  opacity: 0.48;
  pointer-events: none;
  position: absolute;
  transform: skewY(-10deg);
}

.gt-carousel-image {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  inset: 0;
  width: 100%;
}

.gt-carousel-overlay {
  align-items: end;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.72) 100%);
  bottom: 0;
  display: flex;
  left: 0;
  padding: 18px 20px;
  position: absolute;
  right: 0;
}

.gt-carousel-overlay span {
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.gt-carousel-controls {
  display: flex;
  gap: 10px;
  margin-top: auto;
  width: 100%;
}

.gt-carousel-button {
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  color: #ffffff;
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-weight: 900;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.gt-carousel-button:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}

.gt-carousel-caption {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 18px;
  width: 100%;
}

.gt-feature-focus-group {
  display: grid;
  gap: clamp(8px, 1.2vw, 14px);
  margin-inline: auto;
  max-width: 1320px;
  padding-inline: clamp(24px, 4vw, 64px);
}

.gt-control-section {
  align-items: center;
  background:
    linear-gradient(90deg, rgba(255, 75, 20, 0.1), transparent 42%),
    #070808;
  display: grid;
  gap: clamp(8px, 1.2vw, 16px);
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  padding-bottom: clamp(14px, 1.8vw, 24px);
  padding-inline: 0;
  padding-top: clamp(14px, 1.8vw, 24px);
  width: 100%;
  scroll-margin-top: 126px;
}

.gt-control-visual {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.38);
  justify-self: center;
  margin: 0;
  overflow: hidden;
  max-width: 100%;
}

.gt-control-visual img {
  display: block;
  height: auto;
  width: 100%;
}

.gt-control-copy {
  justify-self: center;
  max-width: 500px;
}

.gt-feature-focus-group .gt-control-section:nth-of-type(even) .gt-control-visual {
  order: 2;
}

.gt-feature-focus-group .gt-control-section:nth-of-type(even) .gt-control-copy {
  order: 1;
}

.gt-control-copy h2 {
  color: #ffffff;
  font-size: clamp(1.65rem, 2.5vw, 2.45rem);
  margin-top: 8px;
}

.gt-control-copy p {
  color: #d9dfdf;
  font-size: 0.92rem;
}

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

.gt-control-list li {
  align-items: center;
  color: #ffffff;
  display: grid;
  font-weight: 800;
  gap: 12px;
  grid-template-columns: 10px 1fr;
}

.gt-control-list li::before {
  background: var(--accent);
  border-radius: 999px;
  content: "";
  height: 10px;
  width: 10px;
}

.gt-carousel-caption strong {
  color: #ffffff;
  display: block;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 900;
  margin-top: 2px;
}

.gt-carousel-caption p {
  color: #d9dfdf;
  font-size: 0.98rem;
  margin-top: 10px;
}

.gt-product-nav {
  align-items: stretch;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1320px;
  padding: 16px clamp(24px, 4vw, 64px) 0;
}

.motion-kit-page .gt-product-nav {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1020px;
}

.gt-product-nav a {
  align-items: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: #ffffff;
  display: inline-flex;
  font-size: 0.84rem;
  font-weight: 900;
  justify-content: center;
  letter-spacing: 0.08em;
  min-height: 50px;
  padding: 10px 14px;
  text-align: center;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.gt-product-nav a:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.28);
  transform: translateY(-1px);
}

.gt-product-nav a.is-active {
  background: rgba(255, 75, 20, 0.14);
  border-color: rgba(255, 75, 20, 0.55);
}

.gt-placeholder-section {
  background:
    linear-gradient(90deg, rgba(255, 75, 20, 0.08), transparent 44%),
    #060707;
  scroll-margin-top: 126px;
}

.gt-placeholder-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 24%),
    #0a0c0c;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  box-shadow: var(--shadow);
  margin: 0 auto;
  max-width: 1320px;
  padding: clamp(22px, 3vw, 34px);
}

.gt-placeholder-card h2 {
  color: #ffffff;
  font-size: clamp(1.55rem, 2.6vw, 2.2rem);
  margin-top: 8px;
}

.gt-placeholder-card p {
  color: #d9dfdf;
  font-size: 0.98rem;
  max-width: 760px;
}

.gt-specs-section {
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 75, 20, 0.12), transparent 28%),
    linear-gradient(180deg, #060707 0%, #0a0c0c 46%, #060707 100%);
  scroll-margin-top: 126px;
}

.gt-specs-heading {
  max-width: 820px;
  margin-bottom: 28px;
}

.gt-specs-subtitle {
  color: #d9dfdf;
  font-size: clamp(0.98rem, 1.35vw, 1.08rem);
  max-width: 64ch;
}

.gt-specs-layout {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
}

.gt-specs-summary,
.gt-spec-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 24%),
    #0a0c0c;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.gt-specs-summary {
  padding: clamp(20px, 2.8vw, 30px);
}

.gt-specs-kicker {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.gt-specs-summary h3,
.gt-spec-card h3 {
  color: #ffffff;
  font-size: clamp(1.3rem, 2vw, 1.85rem);
  line-height: 1.12;
  margin-bottom: 12px;
}

.gt-specs-summary p {
  color: #d9dfdf;
  font-size: 0.98rem;
  margin-bottom: 0;
}

.gt-specs-compatibility {
  margin-top: 18px;
}

.gt-subsection-heading {
  margin-bottom: 14px;
}

.gt-subsection-heading h3 {
  color: #ffffff;
  font-size: clamp(1.18rem, 1.8vw, 1.55rem);
  line-height: 1.18;
  margin-bottom: 0;
  max-width: 28ch;
}

.gt-accordion-list {
  display: grid;
  gap: 12px;
}

.gt-accordion {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  overflow: hidden;
}

.gt-accordion-trigger {
  align-items: center;
  background: transparent;
  border: 0;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  font: inherit;
  font-size: 0.96rem;
  font-weight: 900;
  justify-content: space-between;
  letter-spacing: 0.1em;
  padding: 14px 16px;
  text-align: left;
  text-transform: uppercase;
  width: 100%;
}

.gt-accordion-trigger:hover {
  background: rgba(255, 255, 255, 0.03);
}

.gt-accordion-icon {
  color: var(--accent);
  font-size: 1.25rem;
  line-height: 1;
  transition: transform 180ms ease;
}

.gt-accordion.is-open .gt-accordion-icon {
  transform: rotate(45deg);
}

.gt-accordion-panel {
  max-height: 0;
  overflow: hidden;
  padding: 0 16px;
  transition: max-height 220ms ease, padding 220ms ease, opacity 220ms ease;
}

.gt-accordion.is-open .gt-accordion-panel {
  opacity: 1;
  padding: 0 16px 16px;
}

.gt-brand-chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}

.gt-brand-chip-grid span {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  color: #ffffff;
  font-size: 0.84rem;
  font-weight: 800;
  padding: 8px 12px;
}

.gt-accordion-panel p {
  color: #d9dfdf;
  font-size: 0.94rem;
  margin: 0;
}

.gt-spec-compact-list {
  display: grid;
  gap: 10px;
}

.gt-spec-compact-card,
.gt-spec-modal-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 24%),
    #0a0c0c;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.gt-spec-compact-card {
  padding: 0;
}

.gt-spec-modal-card {
  padding: 0;
}

.gt-spec-card-trigger {
  background: transparent;
  border: 0;
  color: inherit;
  cursor: pointer;
  display: grid;
  gap: 8px;
  font: inherit;
  appearance: none;
  padding: 16px 18px 15px;
  box-sizing: border-box;
  text-align: left;
  width: 100%;
}

.gt-spec-compact-trigger {
  gap: 6px;
  padding: 16px 18px 15px;
}

.gt-spec-card-title,
.gt-spec-card-trigger h3 {
  color: #ffffff;
  display: block;
  margin: 0;
}

.gt-spec-card-title {
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.gt-spec-card-preview {
  color: #d9dfdf;
  font-size: 0.93rem;
  line-height: 1.45;
  margin: 0;
}

.gt-spec-view-more {
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.gt-specs-highlights {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
}

.gt-specs-highlights li {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  display: grid;
  gap: 4px;
  padding: 14px 16px;
}

.gt-specs-highlights span {
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.gt-specs-highlights strong {
  color: #ffffff;
  font-size: 0.98rem;
  font-weight: 800;
}

.gt-specs-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
}

.gt-spec-card .eyebrow {
  color: var(--accent);
  margin-bottom: 10px;
}

.gt-spec-card dl {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
}

.gt-spec-card {
  height: 100%;
}

.gt-spec-modal-card .gt-spec-card-trigger {
  min-height: 100%;
  padding: 18px 20px 16px;
}

.gt-spec-modal-source[hidden] {
  display: none;
}

.gt-spec-card-trigger .eyebrow {
  margin-bottom: 0;
}

.gt-spec-card-trigger h3 {
  font-size: clamp(1.15rem, 1.8vw, 1.55rem);
  line-height: 1.15;
  max-width: 18ch;
}

.gt-spec-modal-card .gt-spec-card-preview {
  margin-top: -2px;
}

.gt-spec-card dl div {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: grid;
  gap: 6px;
  padding: 14px 16px;
}

.gt-spec-card dt {
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.gt-spec-card dd {
  color: #ffffff;
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.55;
}

.gt-included-section,
.gt-manual-section {
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 75, 20, 0.08), transparent 26%),
    linear-gradient(180deg, #060707 0%, #0a0c0c 55%, #060707 100%);
  scroll-margin-top: 126px;
}

.gt-included-heading,
.gt-manual-heading {
  max-width: 820px;
  margin-bottom: 28px;
}

.gt-included-subtitle,
.gt-manual-subtitle {
  color: #d9dfdf;
  font-size: clamp(0.98rem, 1.35vw, 1.08rem);
  max-width: 62ch;
}

.gt-included-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gt-included-card,
.gt-manual-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 24%),
    #0a0c0c;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.gt-included-card {
  padding: 22px;
}

.gt-included-card .eyebrow,
.gt-manual-card .eyebrow {
  color: var(--accent);
}

.gt-detail-cta .eyebrow {
  color: var(--accent);
  display: inline-block;
  margin-bottom: 12px;
}

.gt-included-card h3,
.gt-manual-card h3 {
  color: #ffffff;
  font-size: clamp(1.18rem, 1.75vw, 1.52rem);
  line-height: 1.15;
  margin-bottom: 16px;
}

.gt-checklist {
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.gt-checklist li {
  align-items: start;
  color: #d9dfdf;
  display: grid;
  gap: 10px;
  grid-template-columns: 10px 1fr;
  font-size: 0.95rem;
}

.gt-checklist li::before {
  background: var(--accent);
  border-radius: 999px;
  content: "";
  height: 10px;
  margin-top: 7px;
  width: 10px;
}

.gt-manual-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.gt-manual-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  height: 100%;
  padding: 22px;
}

.gt-manual-preview {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(255, 75, 20, 0.12), transparent 36%),
    #090b0b;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  display: grid;
  gap: 8px;
  flex: 1 1 auto;
  min-height: 180px;
  padding: 18px;
}

.gt-manual-preview span {
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.gt-manual-preview strong {
  color: #ffffff;
  font-size: 1.18rem;
  line-height: 1.15;
  max-width: 18ch;
}

.gt-manual-preview-is-file {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 24%),
    #090b0b;
}

.gt-manual-card p {
  color: #d9dfdf;
  margin-bottom: 0;
}

.gt-manual-download {
  margin-top: auto;
  width: fit-content;
}

.gt-manual-download:disabled {
  background: rgba(255, 75, 20, 0.22);
  border-color: rgba(255, 75, 20, 0.24);
  cursor: not-allowed;
  opacity: 0.72;
}

.gt-detail-page .button-primary {
  background: var(--accent);
}

.gt-detail-page .button-secondary {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  color: #ffffff;
}

.gt-detail-page .button.whatsapp-link {
  background: #20c45a;
  border-color: rgba(32, 196, 90, 0.5);
  box-shadow: 0 14px 28px rgba(32, 196, 90, 0.22);
  color: #ffffff;
}

.gt-detail-page .button.whatsapp-link:hover {
  background: #29d164;
  border-color: rgba(41, 209, 100, 0.72);
  color: #ffffff;
}

/* TORQ GT purchase page: keeps the first screen focused on add-to-cart decisions. */
.gt-purchase-page {
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 75, 20, 0.14), transparent 26%),
    linear-gradient(180deg, #050606 0%, #090b0b 42%, #050606 100%);
  color: #ffffff;
}

.gt-purchase {
  align-items: start;
  display: grid;
  gap: clamp(22px, 3vw, 34px);
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.05fr) minmax(300px, 0.66fr);
  position: relative;
}

.gt-purchase::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px) 0 0 / 72px 100%,
    linear-gradient(180deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px) 0 0 / 100% 72px;
  content: "";
  inset: 0;
  opacity: 0.12;
  pointer-events: none;
  position: absolute;
}

.gt-purchase-gallery-column,
.gt-purchase-center,
.gt-order-panel {
  position: relative;
  z-index: 1;
}

.gt-purchase-gallery-column,
.gt-purchase-center {
  display: grid;
  min-width: 0;
}

.gt-purchase-gallery-column {
  gap: 12px;
}

.gt-purchase-center {
  gap: 16px;
}

.gt-purchase-top {
  display: grid;
  gap: clamp(22px, 3vw, 34px);
  grid-template-columns: 1fr;
}

.gt-purchase-gallery {
  display: grid;
  gap: 14px;
  margin: 0;
  min-width: 0;
}

.gt-gallery-stage {
  aspect-ratio: 1 / 1;
  background: #090b0b;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.36);
  max-width: 100%;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.gt-gallery-arrow {
  align-items: center;
  background: rgba(0, 0, 0, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: #ffffff;
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-size: 1.8rem;
  font-weight: 900;
  height: 48px;
  justify-content: center;
  line-height: 1;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
  width: 48px;
  z-index: 2;
}

.gt-gallery-arrow:hover {
  background: rgba(255, 75, 20, 0.85);
  border-color: rgba(255, 75, 20, 0.9);
}

.gt-gallery-prev {
  left: 16px;
}

.gt-gallery-next {
  right: 16px;
}

.gt-gallery-main {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  inset: 0;
  width: 100%;
}

.gt-gallery-caption {
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.88));
  bottom: 0;
  left: 0;
  padding: 22px 18px 18px;
  position: absolute;
  right: 0;
}

.gt-gallery-caption span {
  color: var(--accent);
  display: block;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.gt-gallery-caption strong {
  color: #ffffff;
  font-size: 1.05rem;
}

.gt-gallery-caption p {
  color: #d9dfdf;
  font-size: 0.94rem;
  margin: 8px 0 0;
}

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

.gt-thumb-button {
  aspect-ratio: 1 / 1;
  background: #090b0b;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  cursor: pointer;
  overflow: hidden;
  padding: 0;
  position: relative;
  transition: border-color 180ms ease, transform 180ms ease;
}

.gt-thumb-button:hover {
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-1px);
}

.gt-thumb-button.is-active {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent) inset;
}

.gt-thumb-button img {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.gt-purchase-feature-summary {
  background:
    linear-gradient(180deg, rgba(255, 75, 20, 0.1), transparent 28%),
    #101212;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 18px;
}

.gt-purchase-feature-summary h1 {
  color: #ffffff;
  font-size: clamp(1.7rem, 2.4vw, 2.3rem);
  line-height: 1.04;
  margin-bottom: 18px;
  max-width: 16ch;
  white-space: normal;
}

.gt-purchase-intro {
  color: #dbe1e1;
  font-size: clamp(0.98rem, 1.35vw, 1.08rem);
  max-width: 48ch;
}

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

.gt-feature-list li {
  align-items: center;
  color: #ffffff;
  display: grid;
  font-weight: 800;
  gap: 10px;
  grid-template-columns: 10px 1fr;
  font-size: 0.97rem;
}

.gt-feature-list li::before {
  background: var(--accent);
  border-radius: 999px;
  content: "";
  height: 10px;
  width: 10px;
}

.gt-purchase-options {
  display: grid;
  gap: 16px;
}

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



.gt-select-field {
  display: grid;
  gap: 8px;
}

.gt-select-field span {
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gt-select-field select {
  appearance: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent),
    #090b0b;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  color: #ffffff;
  font: inherit;
  min-height: 48px;
  padding: 0 42px 0 14px;
  background-image:
    linear-gradient(45deg, transparent 50%, #ffffff 50%),
    linear-gradient(135deg, #ffffff 50%, transparent 50%);
  background-position:
    calc(100% - 20px) calc(50% - 2px),
    calc(100% - 14px) calc(50% - 2px);
  background-repeat: no-repeat;
  background-size: 6px 6px, 6px 6px;
}

.gt-select-field select:focus {
  border-color: rgba(255, 75, 20, 0.82);
  box-shadow: 0 0 0 3px rgba(255, 75, 20, 0.14);
  outline: none;
}

.gt-order-panel {
  align-self: start;
  background:
    linear-gradient(180deg, rgba(255, 75, 20, 0.1), transparent 28%),
    #101212;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.34);
  padding: 16px;
  position: sticky;
  top: 108px;
}

.gt-order-preview {
  display: grid;
  gap: 10px;
}

.gt-order-preview img {
  aspect-ratio: 1 / 1;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  display: block;
  object-fit: cover;
  width: 100%;
}

.gt-order-preview-copy {
  display: grid;
  gap: 6px;
}

.gt-order-preview-copy span {
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.gt-order-preview-copy strong {
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.gt-order-preview-copy p {
  color: #d8dfdf;
  font-size: 0.94rem;
  margin: 0;
}

.gt-summary-list {
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
}

.gt-summary-list li {
  align-items: end;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  gap: 8px;
  grid-template-columns: 1fr auto;
  padding-bottom: 12px;
}

.gt-summary-list li span {
  color: #aeb8b8;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gt-summary-list li strong {
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.25;
  overflow-wrap: anywhere;
  text-align: right;
}

.gt-summary-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  display: grid;
  gap: 6px;
  margin-top: 24px;
  padding: 18px;
}

.gt-summary-box span {
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.gt-summary-box strong {
  color: #ffffff;
  font-size: 1.35rem;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.gt-summary-box small {
  color: #d7dddd;
}

.gt-order-actions {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.gt-order-actions .button {
  width: 100%;
}

.gt-order-actions .button-primary {
  background: var(--accent);
  box-shadow: 0 14px 28px rgba(255, 75, 20, 0.24);
  min-height: 52px;
}

.gt-order-actions .button-secondary {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}

.gt-order-note {
  color: #cdd5d5;
  font-size: 0.92rem;
  margin: 16px 0 0;
}

.gt-order-preview-copy {
  display: grid;
  gap: 6px;
}

.gt-stock-badge,
.product-card-stock,
.inventory-panel-badge {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  display: inline-flex;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  padding: 6px 10px;
  text-transform: uppercase;
  width: fit-content;
}

.gt-stock-badge.is-in-stock,
.product-card-stock.is-in-stock,
.inventory-panel-badge.is-in-stock {
  background: rgba(0, 188, 128, 0.16);
  border-color: rgba(0, 188, 128, 0.35);
  color: #7df3c9;
}

.gt-stock-badge.is-preorder,
.product-card-stock.is-preorder,
.inventory-panel-badge.is-preorder {
  background: rgba(255, 75, 20, 0.14);
  border-color: rgba(255, 75, 20, 0.35);
  color: #ffb08b;
}

.inventory-admin-page {
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 75, 20, 0.14), transparent 24%),
    linear-gradient(180deg, #050606 0%, #090b0b 56%, #050606 100%);
  color: #ffffff;
}

.inventory-hero {
  align-items: center;
  display: grid;
  gap: clamp(20px, 3vw, 34px);
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
}

.inventory-hero h1 {
  color: #ffffff;
  max-width: 12ch;
}

.inventory-hero p {
  color: #d9dfdf;
  max-width: 760px;
}

.inventory-hero-card,
.inventory-gate-card,
.inventory-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 24%),
    #0a0c0c;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.26);
}

.inventory-hero-card {
  display: grid;
  gap: 10px;
  padding: 22px;
}

.inventory-hero-card span,
.inventory-toolbar-note {
  color: #9ea8a8;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.inventory-hero-card strong {
  color: #ffffff;
  font-size: 1.3rem;
}

.inventory-hero-card p,
.inventory-gate-card p,
.inventory-panel p {
  color: #d9dfdf;
}

.inventory-gate-card {
  display: grid;
  gap: 20px;
  padding: 24px;
}

.inventory-gate-form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 420px;
}

.inventory-gate-form .button {
  flex: 1 1 180px;
}

.inventory-gate-message {
  color: #ffb08b;
  font-size: 0.92rem;
  margin: 0;
  min-height: 1.3em;
}

.inventory-dashboard {
  display: grid;
  gap: 20px;
}

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

.inventory-summary-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 26%),
    #0a0c0c;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.22);
  display: grid;
  gap: 8px;
  padding: 18px 20px;
}

.inventory-summary-card span {
  color: #9ea8a8;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.inventory-summary-card strong {
  color: #ffffff;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  line-height: 1;
}

.inventory-toolbar {
  display: grid;
  gap: 14px;
}

.inventory-toolbar-filters,
.inventory-toolbar-actions {
  align-items: end;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.inventory-toolbar-filters .field {
  flex: 1 1 260px;
}

.inventory-toolbar-actions .button {
  flex: 0 0 auto;
}

.inventory-list {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 20%),
    #0a0c0c;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.24);
  overflow-x: auto;
}

.inventory-table {
  border-collapse: collapse;
  min-width: 1020px;
  width: 100%;
}

.inventory-table thead th {
  color: #9ea8a8;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  padding: 16px 18px;
  text-align: left;
  text-transform: uppercase;
}

.inventory-table tbody td {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #d9dfdf;
  padding: 16px 18px;
  vertical-align: middle;
}

.inventory-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.025);
}

.inventory-table tbody tr.is-selected {
  background: rgba(255, 75, 20, 0.06);
}

.inventory-product-cell {
  align-items: center;
  display: flex;
  gap: 12px;
}

.inventory-product-cell img {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  display: block;
  flex: 0 0 auto;
  height: 56px;
  object-fit: cover;
  object-position: center center;
  width: 74px;
}

.inventory-product-cell strong {
  color: #ffffff;
  display: block;
  font-size: 0.96rem;
  margin-bottom: 4px;
}

.inventory-product-cell span {
  color: #9ea8a8;
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.inventory-empty-state {
  color: #d9dfdf;
  padding: 28px 20px;
  text-align: center;
}

.inventory-editor {
  margin-top: 8px;
}

.inventory-editor-panel {
  display: grid;
  gap: 18px;
}

.inventory-editor-head {
  align-items: start;
  display: flex;
  gap: 16px;
  justify-content: space-between;
}

.inventory-editor-head .inventory-panel-head {
  flex: 1 1 auto;
}

.inventory-editor-grid {
  display: grid;
  gap: 16px;
}

.inventory-editor-section {
  display: grid;
  gap: 14px;
}

.inventory-editor-section h4 {
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  margin: 0;
  text-transform: uppercase;
}

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

.inventory-editor-actions .button {
  flex: 1 1 200px;
}

.inventory-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}

.inventory-panel {
  display: grid;
  gap: 14px;
  padding: 20px;
}

.inventory-product-panel {
  gap: 18px;
}

.inventory-panel-head {
  display: grid;
  gap: 8px;
}

.inventory-panel-head h3 {
  color: #ffffff;
  font-size: 1.25rem;
  margin: 0;
}

.inventory-panel-head p {
  margin: 0;
}

.inventory-sku-line,
.inventory-price-line {
  color: #9ea8a8;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  margin: 0;
  text-transform: uppercase;
}

.inventory-price-line strong {
  color: #ffffff;
}

.inventory-status-line {
  color: #cfd7d7;
  font-size: 0.88rem;
  margin: 0;
}

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

.inventory-product-grid .field-wide {
  grid-column: 1 / -1;
}

.inventory-image-preview {
  background: #090b0b;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  min-height: 240px;
  overflow: hidden;
}

.inventory-image-preview img {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  width: 100%;
}

.inventory-gallery-list {
  display: grid;
  gap: 12px;
}

.inventory-gallery-item {
  align-items: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  display: grid;
  gap: 12px;
  grid-template-columns: 84px minmax(0, 1fr);
  padding: 10px;
}

.inventory-gallery-item img {
  display: block;
  height: 64px;
  object-fit: cover;
  object-position: center center;
  width: 84px;
}

.inventory-gallery-item-copy {
  display: grid;
  gap: 10px;
}

.inventory-gallery-item-copy p {
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 800;
  margin: 0;
}

.inventory-gallery-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.inventory-gallery-actions .button {
  min-height: 36px;
  padding: 8px 12px;
}

.inventory-row {
  display: grid;
  gap: 8px;
}

.inventory-row span {
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 800;
}

.inventory-row input {
  background: #090b0b;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  color: #ffffff;
  font: inherit;
  min-height: 48px;
  outline: none;
  padding: 12px 14px;
  width: 100%;
}

.inventory-row input:focus {
  border-color: rgba(255, 75, 20, 0.8);
  box-shadow: 0 0 0 3px rgba(255, 75, 20, 0.14);
}

.inventory-panel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.inventory-panel-actions .button {
  flex: 1 1 180px;
}

.inventory-panel-badge {
  margin-top: 2px;
}

/* Checkout page: a dedicated, form-first purchase flow with a Stripe-ready payment step. */
.checkout-page {
  background:
    radial-gradient(circle at 10% 8%, rgba(255, 75, 20, 0.16), transparent 22%),
    radial-gradient(circle at 90% 0%, rgba(255, 255, 255, 0.06), transparent 18%),
    linear-gradient(180deg, #060707 0%, #0c0f0f 56%, #080909 100%);
  color: #ffffff;
}

.checkout-hero {
  align-items: end;
  display: grid;
  gap: clamp(24px, 4vw, 52px);
  grid-template-columns: 1fr;
  padding-bottom: clamp(20px, 3vw, 34px);
}

.checkout-hero-copy {
  max-width: none;
}

.checkout-hero h1 {
  color: #ffffff;
  font-size: clamp(2.3rem, 5.2vw, 4.8rem);
  line-height: 0.92;
  margin-bottom: 0;
  max-width: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.gt-breadcrumbs {
  align-items: center;
  color: #9ea8a8;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 18px clamp(20px, 5vw, 72px) 0;
}

.gt-breadcrumbs a {
  color: #cfd7d7;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gt-breadcrumbs strong {
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.checkout-page .button-primary {
  background: var(--accent);
  color: #ffffff;
}

.checkout-page .button-secondary {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  color: #ffffff;
}

.checkout-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.checkout-badges span {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 800;
  padding: 9px 12px;
}

.checkout-product-card {
  background:
    linear-gradient(180deg, rgba(255, 75, 20, 0.12), transparent 28%),
    #111414;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.34);
  overflow: hidden;
}

.checkout-product-card img {
  display: block;
  height: 220px;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.checkout-product-copy {
  display: grid;
  gap: 8px;
  padding: 18px;
}

.checkout-product-label {
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  margin: 0;
  text-transform: uppercase;
}

.checkout-product-copy strong {
  color: #ffffff;
  font-size: 1.25rem;
}

.checkout-product-copy p {
  color: #d9dfdf;
  margin: 0;
}

.checkout-layout {
  align-items: start;
  display: grid;
  gap: clamp(20px, 3vw, 34px);
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  padding-top: 0;
}

.checkout-form {
  display: grid;
  gap: 20px;
}

.checkout-stack {
  display: grid;
  gap: 20px;
}

.checkout-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 22%),
    #111414;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.24);
  padding: 20px;
}

.checkout-panel-heading {
  margin-bottom: 22px;
}

.checkout-panel-heading h2 {
  color: #ffffff;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  margin-top: 10px;
}

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

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

.field {
  display: grid;
  gap: 8px;
}

.field span {
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 800;
}

.field input,
.field textarea {
  background: #090b0b;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  color: #ffffff;
  font: inherit;
  min-height: 48px;
  outline: none;
  padding: 13px 14px;
  transition: border-color 180ms ease, box-shadow 180ms ease;
  width: 100%;
}

.field textarea {
  min-height: 124px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  border-color: rgba(255, 75, 20, 0.8);
  box-shadow: 0 0 0 3px rgba(255, 75, 20, 0.14);
}

.field input::placeholder,
.field textarea::placeholder {
  color: #8c9595;
}

.field select {
  appearance: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent),
    #090b0b;
  background-image:
    linear-gradient(45deg, transparent 50%, #ffffff 50%),
    linear-gradient(135deg, #ffffff 50%, transparent 50%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent);
  background-position:
    calc(100% - 20px) calc(50% - 2px),
    calc(100% - 14px) calc(50% - 2px),
    0 0;
  background-repeat: no-repeat;
  background-size: 6px 6px, 6px 6px, 100% 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  color: #ffffff;
  font: inherit;
  min-height: 48px;
  outline: none;
  padding: 13px 42px 13px 14px;
  transition: border-color 180ms ease, box-shadow 180ms ease;
  width: 100%;
}

.field select:focus {
  border-color: rgba(255, 75, 20, 0.8);
  box-shadow: 0 0 0 3px rgba(255, 75, 20, 0.14);
}

.field select option {
  background: #090b0b;
  color: #ffffff;
}

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

.payment-methods {
  display: grid;
  gap: 12px;
}

.payment-option {
  align-items: start;
  background: #090b0b;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  cursor: pointer;
  display: grid;
  gap: 14px;
  grid-template-columns: 18px 1fr;
  padding: 16px 18px;
}

.payment-option input {
  accent-color: var(--accent);
  margin-top: 3px;
}

.payment-option strong {
  color: #ffffff;
  display: block;
  font-size: 1rem;
}

.payment-option small {
  color: #d9dfdf;
  display: block;
  margin-top: 4px;
}

.payment-option.is-active {
  border-color: rgba(255, 75, 20, 0.72);
}

.stripe-note {
  background: rgba(255, 75, 20, 0.08);
  border: 1px solid rgba(255, 75, 20, 0.18);
  border-radius: 8px;
  display: grid;
  gap: 6px;
  margin-top: 18px;
  padding: 16px 18px;
}

.stripe-note strong {
  color: #ffffff;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stripe-note span {
  color: #d9dfdf;
}

.stripe-note code {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  padding: 1px 5px;
}

.stripe-note.is-warning {
  border-color: rgba(255, 196, 91, 0.3);
  background: rgba(255, 196, 91, 0.08);
}

.checkout-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.checkout-actions .button {
  flex: 1 1 220px;
}

.checkout-main-button {
  background: var(--accent);
  box-shadow: 0 14px 28px rgba(255, 75, 20, 0.26);
  min-height: 52px;
}

.checkout-main-button:disabled {
  background: rgba(255, 75, 20, 0.2);
  box-shadow: none;
  cursor: not-allowed;
  opacity: 0.7;
}

.checkout-actions .button-secondary {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  color: #ffffff;
}

.checkout-stripe-button.is-disabled {
  pointer-events: none;
}

.checkout-summary {
  display: grid;
  gap: 18px;
  position: sticky;
  top: 108px;
}

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

.summary-list li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  gap: 8px;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  padding-bottom: 12px;
}

.summary-list li span {
  color: #aeb8b8;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.summary-list li strong {
  color: #ffffff;
  font-size: 1rem;
}

.summary-total {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  display: grid;
  gap: 6px;
  margin-top: 22px;
  padding: 18px;
}

.summary-total span {
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.summary-total strong {
  color: #ffffff;
  font-size: 1.5rem;
}

.summary-total small {
  color: #d9dfdf;
}

.checkout-security h2 {
  color: #ffffff;
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
}

.checkout-security p {
  color: #d9dfdf;
  margin-bottom: 0;
}

.auth-modal {
  align-items: center;
  display: flex;
  inset: 0;
  justify-content: center;
  padding: 20px;
  position: fixed;
  z-index: 60;
}

.auth-modal[hidden] {
  display: none;
}

.auth-modal-backdrop {
  background: rgba(0, 0, 0, 0.72);
  inset: 0;
  position: absolute;
}

.auth-modal-dialog {
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 75, 20, 0.18), transparent 24%),
    #0d1010;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.55);
  max-width: 560px;
  padding: 24px;
  position: relative;
  width: min(100%, 560px);
  z-index: 1;
}

.auth-modal-close {
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: #ffffff;
  cursor: pointer;
  display: inline-flex;
  font-size: 1.2rem;
  height: 38px;
  justify-content: center;
  position: absolute;
  right: 18px;
  top: 18px;
  width: 38px;
}

.auth-modal-header {
  max-width: 420px;
}

.auth-modal-header h2 {
  color: #ffffff;
  margin-bottom: 10px;
  margin-top: 8px;
}

.auth-modal-header p {
  color: #d9dfdf;
}

.auth-modal-tabs {
  display: flex;
  gap: 10px;
  margin: 22px 0;
}

.auth-modal-tabs button {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  color: #ffffff;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  min-height: 42px;
  padding: 0 14px;
}

.auth-modal-tabs button.is-active {
  background: var(--accent);
  border-color: var(--accent);
}

.auth-modal-form {
  display: grid;
  gap: 16px;
}

.auth-modal-fields {
  display: none;
  gap: 14px;
}

.auth-modal-fields.is-visible {
  display: grid;
}

.auth-modal-error {
  color: #ff9c8f;
  font-size: 0.92rem;
  min-height: 22px;
}

.auth-modal-submit {
  justify-self: start;
  min-width: 180px;
}

.gt-spec-modal {
  align-items: center;
  display: flex;
  inset: 0;
  justify-content: center;
  padding: 20px;
  position: fixed;
  z-index: 65;
}

.gt-spec-modal[hidden] {
  display: none;
}

.gt-spec-modal-backdrop {
  background: rgba(0, 0, 0, 0.72);
  inset: 0;
  position: absolute;
}

.gt-spec-modal-dialog {
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 75, 20, 0.18), transparent 24%),
    #0d1010;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.55);
  display: grid;
  gap: 14px;
  max-height: min(82vh, 760px);
  max-width: 720px;
  overflow: hidden;
  padding: 24px;
  position: relative;
  width: min(100%, 720px);
  z-index: 1;
}

.gt-spec-modal-title {
  color: #ffffff;
  margin-bottom: 0;
  font-size: clamp(1.65rem, 2.8vw, 2.35rem);
  line-height: 1.08;
  max-width: 28ch;
}

.gt-spec-modal-subtitle {
  color: #d9dfdf;
  margin: 0;
  font-size: 0.98rem;
}

.gt-spec-modal-body {
  display: grid;
  gap: 12px;
  overflow: auto;
  padding-right: 6px;
}

.gt-spec-modal-body .gt-brand-chip-grid {
  margin-bottom: 0;
}

.gt-spec-modal-body p {
  color: #d9dfdf;
  margin: 0;
}

.gt-spec-modal-group-title {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  margin: 6px 0 0;
  text-transform: uppercase;
}

.gt-spec-modal-body dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.gt-spec-modal-body dl div {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: grid;
  gap: 6px;
  padding: 14px 16px;
}

.gt-spec-modal-body dt {
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.gt-spec-modal-body dd {
  color: #ffffff;
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.55;
}

.gt-spec-modal-close {
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: #ffffff;
  cursor: pointer;
  display: inline-flex;
  font-size: 1.2rem;
  height: 38px;
  justify-content: center;
  position: absolute;
  right: 18px;
  top: 18px;
  width: 38px;
}

body.gt-spec-modal-open {
  overflow: hidden;
}

.member-page {
  background:
    radial-gradient(circle at 8% 0%, rgba(255, 75, 20, 0.12), transparent 24%),
    linear-gradient(180deg, #060707 0%, #0b0d0d 58%, #060707 100%);
  color: #ffffff;
}

.member-hero {
  align-items: end;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.6fr);
}

.member-hero h1 {
  color: #ffffff;
  max-width: 16ch;
}

.member-hero p {
  color: #d9dfdf;
  max-width: 58ch;
}

.member-summary-card,
.member-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 24%),
    #101212;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.24);
}

.member-summary-card {
  display: grid;
  gap: 8px;
  padding: 20px;
}

.member-summary-card span,
.member-meta span,
.member-status span {
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.member-summary-card strong {
  color: #ffffff;
  font-size: 1.35rem;
}

.member-role-badge {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: #d8dfdf;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  padding: 7px 12px;
  text-transform: uppercase;
  width: fit-content;
}

.member-role-badge.is-admin {
  background: rgba(255, 75, 20, 0.12);
  border-color: rgba(255, 75, 20, 0.28);
  color: #ffffff;
}

.member-dashboard {
  display: grid;
  gap: 20px;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
}

.member-stack {
  display: grid;
  gap: 20px;
}

.member-panel {
  padding: 20px;
}

.member-admin-panel {
  grid-column: 1 / -1;
}

.member-panel h2 {
  color: #ffffff;
  margin-top: 10px;
}

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

.member-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.member-status-grid {
  display: grid;
  gap: 12px;
}

.member-status {
  align-items: start;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  display: grid;
  gap: 8px;
  padding: 16px;
}

.member-status strong {
  color: #ffffff;
}

.member-status-badge {
  align-self: start;
  background: rgba(255, 75, 20, 0.12);
  border: 1px solid rgba(255, 75, 20, 0.24);
  border-radius: 999px;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 900;
  padding: 7px 10px;
  text-transform: uppercase;
  width: fit-content;
}

.member-gate {
  background:
    linear-gradient(180deg, rgba(255, 75, 20, 0.12), transparent 24%),
    #0e1111;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.member-gate-card {
  align-items: center;
  background: #101212;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  padding: 22px;
}

.member-gate-card p {
  color: #d9dfdf;
  margin-bottom: 0;
  max-width: 54ch;
}

.gt-feature-panel {
  align-items: start;
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 75, 20, 0.12), transparent 28%),
    linear-gradient(180deg, #0a0c0c 0%, #070808 100%);
  display: grid;
  gap: clamp(24px, 4vw, 54px);
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
}

.gt-feature-panel-copy {
  max-width: 560px;
  position: sticky;
  top: 100px;
}

.gt-feature-panel-copy h2 {
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 3.6rem);
  max-width: 10ch;
}

.gt-feature-panel-copy p {
  color: #d9dfdf;
  font-size: 1.04rem;
}

.gt-feature-panel-note {
  background: rgba(255, 255, 255, 0.04);
  border-left: 3px solid var(--accent);
  margin-top: 24px;
  padding: 18px 18px 18px 16px;
}

.gt-feature-panel-note strong,
.gt-feature-panel-note span {
  display: block;
}

.gt-feature-panel-note strong {
  color: #ffffff;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gt-feature-panel-note span {
  color: #d8dfdf;
  margin-top: 8px;
}

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

.gt-feature-panel-grid article {
  background:
    linear-gradient(180deg, rgba(255, 75, 20, 0.08), transparent 24%),
    #0d1010;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  min-height: 190px;
  padding: 22px;
  position: relative;
}

.gt-feature-panel-grid article::before {
  background: linear-gradient(90deg, var(--accent), transparent);
  content: "";
  height: 2px;
  left: 22px;
  position: absolute;
  right: 22px;
  top: 22px;
}

.gt-feature-panel-grid span {
  color: var(--accent);
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  margin-top: 18px;
  text-transform: uppercase;
}

.gt-feature-panel-grid h3 {
  color: #ffffff;
  font-size: clamp(1.18rem, 1.85vw, 1.55rem);
  margin-top: 18px;
}

.gt-feature-panel-grid p {
  color: #d9dfdf;
  font-size: 0.98rem;
  margin-top: 10px;
}

.gt-feature-panel-visual {
  align-items: end;
  background:
    linear-gradient(145deg, rgba(255, 75, 20, 0.22), transparent 30%),
    linear-gradient(145deg, #1a1e1e, #070808);
  display: flex;
  min-height: 404px;
}

.gt-feature-panel-visual strong {
  color: #ffffff;
  display: block;
  font-size: clamp(1.4rem, 2.4vw, 2.2rem);
  line-height: 1.12;
  margin-top: 12px;
  max-width: 12ch;
}

.gt-feature-panel-visual p {
  max-width: 28ch;
}

.gt-feature-story {
  align-items: center;
  background: #0b0d0d;
  display: grid;
  gap: clamp(10px, 1.8vw, 20px);
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  padding: clamp(30px, 4vw, 46px) clamp(28px, 5vw, 82px);
}

.gt-feature-story:nth-of-type(even) {
  background: #060707;
}

.gt-feature-story.is-reversed {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.62fr);
}

.gt-feature-story.is-reversed .gt-feature-copy {
  order: 2;
}

.gt-feature-copy {
  max-width: 500px;
  justify-self: end;
}

.gt-feature-copy h2 {
  color: #ffffff;
  font-size: clamp(1.6rem, 2.45vw, 2.45rem);
  margin-top: 8px;
}

.gt-feature-copy p {
  color: #d7dddd;
  font-size: 0.91rem;
}

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

.gt-feature-copy li {
  align-items: center;
  color: #ffffff;
  display: grid;
  font-weight: 800;
  gap: 12px;
  grid-template-columns: 10px 1fr;
}

.gt-feature-copy li::before {
  background: var(--accent);
  border-radius: 999px;
  content: "";
  height: 10px;
  width: 10px;
}

.gt-feature-image {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.38);
  justify-self: start;
  margin: 0;
  overflow: hidden;
  min-height: 0;
  max-width: 84%;
}

.gt-feature-image img,
.gt-feature-card img {
  display: block;
  height: auto;
  width: 100%;
}

.gt-feature-grid {
  background:
    linear-gradient(135deg, rgba(255, 75, 20, 0.12), transparent 34%),
    #101212;
  display: grid;
  gap: clamp(22px, 3vw, 34px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gt-feature-card {
  background: #070808;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  overflow: hidden;
}

.gt-feature-card div {
  padding: 26px;
}

.gt-feature-card h3 {
  color: #ffffff;
  font-size: clamp(1.3rem, 2vw, 1.75rem);
}

.gt-feature-card p {
  color: #d9dfdf;
}

.gt-detail-cta {
  align-items: center;
  background:
    linear-gradient(90deg, rgba(255, 75, 20, 0.18), transparent 42%),
    #050606;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.85fr);
}

.gt-detail-cta-copy {
  display: grid;
  gap: 10px;
  max-width: 860px;
}

.gt-detail-cta h2 {
  color: #ffffff;
  max-width: 860px;
}

.gt-detail-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-start;
}

.gt-detail-cta-copy p {
  color: #d9dfdf;
  font-size: 0.98rem;
  margin: 0;
}

.gt-review-section,
.gt-similar-section {
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 75, 20, 0.1), transparent 22%),
    #060707;
}

.gt-review-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gt-review-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 24%),
    #0a0c0c;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.28);
  display: grid;
  gap: 12px;
  padding: 22px;
}

.gt-review-rating {
  color: #ffb84d;
  font-size: 1rem;
  letter-spacing: 0.12em;
  margin: 0;
}

.gt-review-card h3 {
  color: #ffffff;
  font-size: 1.2rem;
  margin: 0;
}

.gt-review-card p {
  color: #d9dfdf;
  font-size: 0.95rem;
  margin: 0;
}

.gt-review-empty-state {
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
}

.gt-review-empty-state .gt-review-card {
  max-width: 620px;
  text-align: center;
  width: 100%;
}

.gt-review-empty-state .gt-review-rating {
  color: var(--accent);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.gt-similar-heading {
  display: block;
  margin-bottom: 24px;
  max-width: none;
}

.gt-similar-heading .eyebrow {
  color: var(--accent);
  font-size: clamp(1.15rem, 1.53vw, 1.62rem);
  letter-spacing: 0.16em;
  margin-bottom: 0;
}

.gt-similar-heading h2 {
  font-size: clamp(1.95rem, 2.7vw, 3rem);
  margin: 8px 0 0;
  max-width: 1120px;
  text-align: left;
  width: 100%;
}

.gt-similar-subtitle {
  color: #d9dfdf;
  font-size: clamp(0.98rem, 1.35vw, 1.08rem);
  max-width: 64ch;
  margin: 10px 0 0;
}

.gt-similar-controls {
  align-items: center;
  display: flex;
  gap: 12px;
  margin-bottom: 22px;
}

.gt-similar-counter {
  color: #9ea8a8;
  flex: 1 1 180px;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  margin: 0;
  text-align: center;
  text-transform: uppercase;
}

.gt-similar-button {
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  color: #ffffff;
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 900;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.gt-similar-button:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}

.gt-similar-button:disabled {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.46);
  cursor: not-allowed;
  opacity: 0.72;
  transform: none;
}

.gt-similar-button:disabled:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
  transform: none;
}

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

.motion-kit-page .gt-similar-controls,
.motion-kit-page .motion-kit-related-grid {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  max-width: 620px;
}

.motion-kit-page .motion-kit-related-grid {
  grid-template-columns: minmax(0, 1fr);
}

.product-card-price {
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin: 0;
  text-transform: uppercase;
}

.gt-back-to-top {
  align-items: center;
  background: rgba(10, 12, 12, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  bottom: 22px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.34);
  color: #ffffff;
  display: inline-flex;
  font-size: 0.82rem;
  font-weight: 900;
  gap: 8px;
  letter-spacing: 0.12em;
  padding: 12px 16px;
  position: fixed;
  right: 22px;
  text-transform: uppercase;
  z-index: 25;
}

.gt-back-to-top::before {
  content: none;
}

/* Upcoming product sections: preview future TORQ cockpits and motion platforms. */
.upcoming-product {
  align-items: center;
  background: #f6f7f4;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: clamp(28px, 5vw, 64px);
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1fr);
}

.upcoming-product:nth-of-type(even) {
  background: #ebece8;
}

.upcoming-product.is-reversed .upcoming-copy {
  order: 2;
}

.upcoming-product.is-reversed .placeholder-visual {
  order: 1;
}

.upcoming-copy {
  max-width: 660px;
}

.upcoming-copy p {
  color: var(--muted);
  font-size: clamp(1rem, 1.45vw, 1.12rem);
}

.upcoming-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.upcoming-tags span {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 800;
  padding: 9px 13px;
}

.placeholder-visual {
  align-items: center;
  aspect-ratio: 16 / 10;
  background:
    linear-gradient(135deg, rgba(255, 75, 20, 0.24), transparent 35%),
    linear-gradient(145deg, #202525, #070808);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  box-shadow: var(--shadow);
  color: rgba(255, 255, 255, 0.76);
  display: flex;
  justify-content: center;
  min-height: 280px;
  overflow: hidden;
  position: relative;
}

.placeholder-visual::before {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  content: "";
  inset: 18px;
  position: absolute;
}

.placeholder-visual::after {
  background:
    linear-gradient(90deg, transparent, rgba(255, 75, 20, 0.72), transparent),
    linear-gradient(0deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  content: "";
  height: 140%;
  opacity: 0.48;
  position: absolute;
  transform: rotate(-18deg);
  width: 38%;
}

.placeholder-visual span {
  font-size: clamp(1rem, 2vw, 1.4rem);
  font-weight: 900;
  letter-spacing: 0;
  position: relative;
  text-transform: uppercase;
  z-index: 1;
}

/* Dealer section: highlights the authorized showroom location. */
.dealer-section {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(255, 75, 20, 0.18), transparent 32%),
    linear-gradient(180deg, #151818, #090a0a);
  color: #ffffff;
  display: grid;
  gap: clamp(28px, 5vw, 64px);
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1fr);
}

.dealer-copy {
  max-width: 680px;
}

.dealer-copy .eyebrow {
  color: var(--accent);
}

.dealer-copy p {
  color: #d8dfdf;
  font-size: clamp(1rem, 1.45vw, 1.12rem);
}

.dealer-copy address {
  border-left: 4px solid var(--accent);
  color: #ffffff;
  font-style: normal;
  font-weight: 800;
  line-height: 1.7;
  margin: 26px 0 30px;
  padding-left: 18px;
}

.dealer-section .button-primary {
  background: var(--accent);
  color: #ffffff;
}

.map-placeholder {
  aspect-ratio: 16 / 10;
  background: #101313;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.34);
  min-height: 280px;
  overflow: hidden;
  position: relative;
}

.map-placeholder iframe {
  border: 0;
  height: 100%;
  inset: 0;
  position: absolute;
  width: 100%;
}

/* About section: displays the founder story and main business strengths. */
.about-story {
  background:
    linear-gradient(180deg, rgba(255, 75, 20, 0.1), transparent 28%),
    #0a0c0c;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: #ffffff;
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 24px;
  padding: clamp(26px, 4vw, 42px);
}

.about-story p {
  color: #d8dfdf;
  font-size: clamp(1rem, 1.6vw, 1.14rem);
  margin-bottom: 0;
}

.about-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-grid article {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 24%),
    #0b0d0d;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 28px;
}

.about-grid article h3 {
  color: #ffffff;
}

.about-grid p,
.price-card p,
.price-card li {
  color: #cfd7d7;
}

.about .eyebrow {
  color: var(--accent);
  font-size: clamp(1.15rem, 1.53vw, 1.62rem);
  letter-spacing: 0.16em;
}

.about .section-heading h2 {
  max-width: 1120px;
}

.about {
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 75, 20, 0.12), transparent 24%),
    linear-gradient(180deg, #050606 0%, #0b0d0d 60%, #070808 100%);
  color: #ffffff;
}

/* Pricing section: presents package cards with a highlighted recommended option. */
.pricing {
  background: #e9eee7;
}

.pricing-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.price-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  min-height: 430px;
  padding: 30px;
}

.price-card.featured {
  background: var(--surface-dark);
  border-color: var(--surface-dark);
  box-shadow: var(--shadow);
  color: var(--surface);
}

.price-card.featured p,
.price-card.featured li {
  color: #c8d1d1;
}

.package-label {
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.price-card h3 {
  font-size: 2rem;
}

.price-card ul {
  margin: 20px 0 30px;
  padding-left: 20px;
}

.button-card {
  background: var(--accent);
  color: #121515;
  margin-top: auto;
}

/* Enquiry section: closes the page with a clear contact action. */
.enquiry {
  align-items: center;
  background: var(--surface-dark);
  color: var(--surface);
  display: flex;
  gap: 24px;
  justify-content: space-between;
}

.enquiry h2 {
  max-width: 820px;
}

/* Floating button: gives visitors a persistent way to contact the brand. */
.floating-whatsapp {
  background: #20c45a;
  border-radius: 999px;
  bottom: 22px;
  box-shadow: 0 14px 34px rgba(18, 21, 21, 0.24);
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 900;
  padding: 13px 18px;
  position: fixed;
  right: 22px;
  z-index: 30;
}

/* Responsive styles: adjusts the layout for tablets and phones. */
@media (max-width: 900px) {
  .torq-gt,
  .upcoming-product,
  .gt-feature-panel,
  .gt-feature-story,
  .gt-feature-story.is-reversed,
  .gt-feature-grid,
  .gt-detail-cta,
  .inventory-hero,
  .inventory-grid,
  .dealer-section,
  .about-story,
  .about-grid,
  .pricing-grid,
  .gt-specs-layout,
  .gt-included-grid,
  .gt-manual-grid {
    grid-template-columns: 1fr;
  }

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

  .upcoming-product.is-reversed .upcoming-copy,
  .upcoming-product.is-reversed .placeholder-visual,
  .gt-feature-story.is-reversed .gt-feature-copy {
    order: initial;
  }

  .hero {
    min-height: auto;
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.18) 48%, rgba(0, 0, 0, 0.7) 86%, rgba(244, 246, 243, 1) 100%);
  }

  .hero::before {
    background-position: 62% center;
    height: calc(100% + 28px);
    top: -28px;
  }

  .torq-gt {
    min-height: clamp(540px, 78vw, 720px);
    padding-left: clamp(24px, 7vw, 56px);
    padding-right: clamp(24px, 7vw, 56px);
  }

  .gt-content {
    max-width: min(560px, 100%);
  }

  .gt-new-product-controls {
    max-width: 100%;
  }

  .gt-purchase {
    grid-template-columns: 1fr;
  }

  .gt-select-grid {
    grid-template-columns: 1fr;
  }

  .gt-order-panel {
    position: static;
    top: auto;
  }

  .checkout-hero,
  .checkout-layout {
    grid-template-columns: 1fr;
  }

  .checkout-summary {
    position: static;
    top: auto;
  }

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

  .gt-gallery-arrow {
    height: 44px;
    width: 44px;
  }

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

  .gt-hero-copy {
    margin-left: 0;
  }

  .gt-hero-visual {
    justify-self: stretch;
    padding-left: 0;
    padding-right: 0;
  }

  .gt-carousel {
    margin-left: 0;
    max-width: 100%;
    width: 100%;
  }

  .gt-purchase-gallery-column,
  .gt-purchase-center {
    gap: 16px;
  }

  .checkout-stack {
    gap: 16px;
  }

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

  .checkout-summary-preview img {
    height: 160px;
  }

  .member-hero,
  .member-dashboard {
    grid-template-columns: 1fr;
  }

  .member-fields {
    grid-template-columns: 1fr;
  }

  .gt-feature-panel {
    grid-template-columns: 1fr;
  }

  .gt-control-section {
    grid-template-columns: 1fr;
  }

  .gt-feature-focus-group {
    padding-inline: clamp(20px, 5vw, 56px);
  }

  .gt-feature-focus-group .gt-control-section:nth-of-type(even) .gt-control-visual,
  .gt-feature-focus-group .gt-control-section:nth-of-type(even) .gt-control-copy {
    order: initial;
  }

  .gt-control-visual,
  .gt-feature-image {
    justify-self: stretch;
    max-width: 100%;
  }

  .gt-control-copy {
    justify-self: stretch;
  }

  .gt-feature-copy {
    justify-self: stretch;
  }

  .gt-feature-panel-copy {
    position: static;
  }

  .gt-feature-panel-grid {
    grid-template-columns: 1fr;
  }

  .gt-detail-cta {
    grid-template-columns: 1fr;
  }

  .gt-detail-cta-actions {
    justify-content: flex-start;
  }

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

  .inventory-toolbar {
    align-items: stretch;
  }

  .inventory-toolbar-filters,
  .inventory-toolbar-actions {
    align-items: stretch;
  }

  .inventory-toolbar .button {
    flex: 1 1 220px;
  }

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

  .inventory-editor-head {
    flex-direction: column;
  }

  .enquiry {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  html {
    scroll-padding-top: 132px;
  }

  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: space-between;
    margin-left: 0;
    width: 100%;
  }

  .header-actions {
    width: 100%;
  }

  .header-actions button {
    flex: 1;
  }

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

  .hero {
    align-items: end;
    min-height: 420px;
    padding-top: 188px;
  }

  .hero::before {
    background-position: 58% center;
    height: calc(100% + 24px);
    top: -24px;
  }

  .hero-content {
    padding: 18px;
  }

  .hero h1 {
    flex-basis: 100%;
    font-size: clamp(1.22rem, 5vw, 1.55rem);
  }

  .gt-purchase-feature-summary h1 {
    width: 100%;
    max-width: none;
    white-space: normal;
  }

  .gt-feature-list li {
    max-width: 100%;
  }

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

  .gt-purchase-main {
    gap: 18px;
  }

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

  .gt-hero {
    padding-top: 54px;
  }

  #torq-gt[data-new-product-carousel] .eyebrow {
    font-size: 1.02rem;
    min-height: 46px;
    margin-bottom: 28px;
    padding: 0 14px;
    transform: none;
  }

  .gt-hero-lockup .gt-subtitle {
    transform: scaleX(1.12);
  }

  .gt-hero h1 {
    max-width: 12ch;
  }

  .gt-hero-pills span,
  .gt-carousel-button {
    width: 100%;
  }

  .gt-feature-links {
    margin-top: 20px;
  }

  .gt-feature-links a {
    width: 100%;
  }

  .gt-new-product-controls {
    align-items: stretch;
    flex-direction: column;
  }

  .gt-new-product-counter {
    order: -1;
  }

  .gt-new-product-button {
    width: 100%;
  }

  .gt-brand-chip-grid {
    gap: 8px;
  }

  .gt-brand-chip-grid span {
    font-size: 0.8rem;
  }

  .gt-accordion-trigger {
    font-size: 0.9rem;
  }

  .gt-spec-modal {
    padding: 16px;
  }

  .gt-spec-modal-dialog {
    max-height: 88vh;
    padding: 20px;
  }

  .gt-spec-modal-close {
    right: 16px;
    top: 16px;
  }

  .gt-detail-cta,
  .gt-review-grid,
  .gt-similar-grid {
    grid-template-columns: 1fr;
  }

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

  .inventory-summary {
    grid-template-columns: 1fr;
  }

  .inventory-editor-actions .button {
    flex-basis: 100%;
  }

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

  .inventory-gate-form {
    max-width: none;
  }

  .gt-similar-controls,
  .products-controls {
    flex-direction: column;
    align-items: stretch;
  }

  .gt-similar-button,
  .products-button {
    width: 100%;
  }

  .gt-similar-counter,
  .products-counter {
    flex-basis: auto;
  }

  .gt-manual-download {
    width: 100%;
  }

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

  .products .section-heading h2 {
    justify-self: start;
    text-align: left;
    white-space: normal;
  }

  .about .section-heading h2 {
    white-space: normal;
  }

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

  .products-controls {
    flex-direction: column;
    align-items: stretch;
  }

  .products-button {
    width: 100%;
  }

  .products-counter {
    flex-basis: auto;
  }

  .gt-breadcrumbs {
    padding-top: 14px;
  }

  .gt-price-start {
    margin-top: 14px;
  }

  .gt-product-nav {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-left: clamp(20px, 5vw, 56px);
    padding-right: clamp(20px, 5vw, 56px);
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .gt-product-nav::-webkit-scrollbar {
    display: none;
  }

  .gt-product-nav a {
    flex: 0 0 auto;
    min-width: 160px;
  }

  .gt-specs-grid {
    grid-template-columns: 1fr;
  }

  .gt-back-to-top {
    bottom: 16px;
    right: 14px;
    padding: 10px 14px;
  }

  .inventory-panel-actions .button {
    flex-basis: 100%;
  }

  .gt-carousel-stage {
    min-height: 320px;
  }

  .gt-carousel-controls {
    align-items: center;
    display: flex;
    justify-content: space-between;
    left: 12px;
    margin-top: 0;
    pointer-events: none;
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: auto;
    z-index: 2;
  }

  .gt-carousel-button {
    align-items: center;
    background: rgba(10, 12, 12, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    display: inline-flex;
    font-size: 0;
    height: 38px;
    justify-content: center;
    min-height: 38px;
    min-width: 38px;
    pointer-events: auto;
    padding: 0;
    width: 38px;
  }

  .gt-carousel-button::before {
    color: #ffffff;
    content: "←";
    display: block;
    font-size: 1rem;
    font-weight: 900;
    line-height: 1;
  }

  .gt-carousel-button:last-child::before {
    content: "→";
  }

  .gt-feature-story {
    padding-bottom: 52px;
    padding-top: 52px;
  }

  .gt-feature-card div {
    padding: 20px;
  }

  .price-card {
    min-height: auto;
  }

  .checkout-actions .button {
    flex-basis: 100%;
  }

  .account-shell {
    justify-content: flex-end;
    width: 100%;
  }

  .account-name {
    flex: 1;
  }

  .account-menu {
    left: 0;
    right: 0;
  }

  .auth-modal-dialog {
    padding: 20px;
  }

  .auth-modal-tabs {
    flex-direction: column;
  }

  .auth-modal-submit {
    width: 100%;
  }

  .member-actions .button {
    flex-basis: 100%;
    width: 100%;
  }

  .member-gate-card {
    padding: 18px;
  }

  .floating-whatsapp {
    bottom: 16px;
  right: 16px;
  }
}

@media (max-width: 768px) {
  /* Mobile-only NEW PRODUCT hero image override */
  .hero::before {
    background-position: center top 12px;
    background-repeat: no-repeat;
    background-size: contain;
    height: 100%;
    top: 0;
  }

  /* Mobile-only NEW PRODUCT image overrides */
  .gt-media img {
    object-fit: contain;
    object-position: center center;
  }

  .torq-gt .gt-brand-lockup.is-motion {
    align-items: flex-start;
  }

  .torq-gt .gt-brand-lockup.is-motion .gt-logo-row {
    margin-left: 8px;
  }

  .torq-gt .gt-brand-lockup.is-motion .gt-subtitle {
    margin-left: 18px;
    text-align: left;
    width: auto;
  }

  .gt-hero {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .gt-hero-copy {
    display: contents;
  }

  .gt-hero-lockup {
    order: 1;
  }

  .gt-hero-visual {
    order: 2;
    padding-left: 0;
    width: 100%;
  }

  .gt-hero-copy > p:not(.gt-price-start),
  .gt-price-start,
  .gt-hero-actions,
  .gt-feature-links {
    width: 100%;
  }

  .gt-hero-copy > p:not(.gt-price-start) {
    order: 3;
  }

  .gt-price-start {
    order: 4;
  }

  .gt-hero-actions {
    order: 5;
  }

  .gt-feature-links {
    order: 6;
  }

  .gt-carousel {
    position: relative;
  }

  .gt-carousel-controls {
    align-items: center;
    display: flex;
    justify-content: space-between;
    left: 12px;
    margin-top: 0;
    pointer-events: none;
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: auto;
    z-index: 2;
  }

  .gt-carousel-button {
    align-items: center;
    background: rgba(10, 12, 12, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    display: inline-flex;
    font-size: 0;
    height: 38px;
    justify-content: center;
    min-height: 38px;
    min-width: 38px;
    pointer-events: auto;
    padding: 0;
    width: 38px;
  }

  .gt-carousel-button::before {
    color: #ffffff;
    content: "←";
    display: block;
    font-size: 1rem;
    font-weight: 900;
    line-height: 1;
  }

  .gt-carousel-button:last-child::before {
    content: "→";
  }

  .torq-gt {
    align-items: start;
    display: flex;
    flex-direction: column;
    min-height: auto;
    padding-bottom: 28px;
    padding-top: 28px;
  }

  .gt-content {
    display: contents;
  }

  .torq-gt [data-new-product-badge] {
    align-self: flex-start;
    font-size: 0.88rem;
    margin-bottom: 8px;
    transform: scale(0.8);
    transform-origin: left top;
  }

  .torq-gt .gt-brand-lockup {
    align-self: flex-start;
    order: 2;
    margin-bottom: 8px;
  }

  .torq-gt .gt-brand-lockup .gt-logo-row {
    gap: 10px;
  }

  .torq-gt .torq-lockup-logo {
    height: 42px;
  }

  .torq-gt .gt-symbol-logo {
    height: 42px;
  }

  .torq-gt .gt-subtitle {
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    margin-top: 4px;
    transform: scaleX(1.04);
    transform-origin: left center;
  }

  .torq-gt .gt-kicker {
    align-self: flex-start;
    font-size: 0.86rem;
    order: 3;
    margin-bottom: 10px;
  }

  .torq-gt .gt-media {
    align-self: center;
    order: 4;
    height: auto;
    margin-top: 8px;
    position: relative;
    width: min(100%, 560px);
  }

  .torq-gt .gt-media img {
    display: block;
    height: auto;
    max-height: none;
    min-height: 0;
    position: relative;
    inset: auto;
    width: 100%;
    object-fit: contain;
    object-position: center center;
  }

  .torq-gt [data-new-product-description] {
    align-self: flex-start;
    font-size: 0.92rem;
    order: 5;
    line-height: 1.55;
    margin: 14px 0 0;
    max-width: 42ch;
  }

  .torq-gt .gt-actions {
    align-self: flex-start;
    order: 6;
    margin-top: 16px;
    width: 100%;
  }

  .torq-gt .gt-actions .button {
    width: min(100%, 220px);
  }

  .torq-gt,
  .products,
  .gt-similar-section {
    position: relative;
  }

  /* Mobile-only NEW PRODUCT carousel controls */
  .gt-new-product-controls,
  /* Mobile-only PRODUCTS carousel controls */
  .products-controls,
  /* Mobile-only RELATED PRODUCTS carousel controls */
  .gt-similar-controls {
    align-items: center;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 12px;
    left: 12px;
    margin: 0;
    padding: 0;
    pointer-events: none;
    position: absolute;
    right: 12px;
    top: clamp(220px, 48vw, 320px);
    transform: translateY(-50%);
    touch-action: pan-y;
    width: auto;
    z-index: 3;
  }

  .gt-new-product-counter,
  .products-counter,
  .gt-similar-counter {
    display: none;
  }

  .gt-new-product-button,
  .products-button,
  .gt-similar-button {
    background: rgba(10, 12, 12, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.16);
    align-items: center;
    border-radius: 999px;
    display: inline-flex;
    font-size: 0;
    justify-content: center;
    min-height: 38px;
    min-width: 38px;
    pointer-events: auto;
    padding: 0;
    position: relative;
    width: 38px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.26);
  }

  .gt-new-product-button::before,
  .products-button::before,
  .gt-similar-button::before {
    color: #ffffff;
    content: "←";
    display: block;
    font-size: 1rem;
    font-weight: 900;
    line-height: 1;
  }

  .gt-new-product-button:last-child::before,
  .products-button:last-child::before,
  .gt-similar-button:last-child::before {
    content: "→";
  }

  .gt-new-product-button:disabled::before,
  .products-button:disabled::before,
  .gt-similar-button:disabled::before {
    opacity: 0.5;
  }

  .gt-new-product-button:hover:not(:disabled),
  .products-button:hover:not(:disabled),
  .gt-similar-button:hover:not(:disabled) {
    transform: translateY(-1px);
  }

  .gt-carousel-stage {
    min-height: clamp(260px, 82vw, 420px);
  }
}






