:root {
  --ink: #151515;
  --muted: #686f77;
  --paper: #08090c;
  --white: #ffffff;
  --line: rgba(255, 255, 255, 0.14);
  --charcoal: #050507;
  --steel: #b7c1cc;
  --orange: #ff2f8d;
  --amber: #ffe600;
  --green: #00a8ff;
  --shadow: 0 22px 60px rgba(17, 17, 17, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--white);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

body.cart-open,
body.product-open {
  overflow: hidden;
}

a {
  color: inherit;
}

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 74px;
  padding: 12px clamp(18px, 4vw, 56px);
  background: rgba(5, 5, 7, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand,
.main-nav,
.hero-actions,
.hero-stats,
.catalogue-head,
.cart-head,
.cart-total {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  color: var(--white);
  font-weight: 900;
  text-decoration: none;
}

.brand-logo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.82);
  box-shadow: 0 0 22px rgba(0, 168, 255, 0.34);
}

.main-nav {
  justify-content: center;
  gap: clamp(14px, 3vw, 34px);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
}

.main-nav a {
  text-decoration: none;
}

.main-nav a:hover {
  color: var(--amber);
}

.icon-button {
  border: 0;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
}

.cart-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-width: 58px;
  height: 42px;
  padding: 0 12px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 24px rgba(255, 47, 141, 0.18);
}

.cart-icon {
  position: relative;
  width: 19px;
  height: 16px;
  border: 2px solid currentColor;
  border-top: 0;
}

.cart-icon::before,
.cart-icon::after {
  content: "";
  position: absolute;
  bottom: -7px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
}

.cart-icon::before {
  left: 1px;
}

.cart-icon::after {
  right: 1px;
}

.hero {
  position: relative;
  min-height: min(780px, calc(100vh - 74px));
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  z-index: -2;
}

.hero-overlay {
  z-index: -1;
  background:
    radial-gradient(circle at 72% 42%, rgba(0, 168, 255, 0.2), transparent 30%),
    linear-gradient(90deg, rgba(4, 5, 6, 0.94) 0%, rgba(4, 5, 6, 0.72) 42%, rgba(4, 5, 6, 0.12) 82%);
}

.hero-content {
  max-width: 720px;
  padding: clamp(52px, 9vw, 112px) clamp(20px, 6vw, 72px);
  color: var(--white);
}

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

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

h1 {
  max-width: 680px;
  margin-bottom: 18px;
  font-size: clamp(2.6rem, 7vw, 5.9rem);
  line-height: 0.95;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

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

h3 {
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.hero-content > p:not(.eyebrow) {
  max-width: 610px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  color: #050507;
  background: var(--amber);
  box-shadow: 0 0 28px rgba(255, 230, 0, 0.32);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(0, 168, 255, 0.12);
}

.button.secondary.dark {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

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

.hero-stats span {
  min-width: 150px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.09);
}

.hero-stats strong {
  display: block;
  font-size: 1.18rem;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid var(--line);
}

.trust-strip div {
  min-height: 126px;
  padding: clamp(20px, 3vw, 34px);
  background: #0f1117;
}

.trust-strip strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.trust-strip span,
.section-intro p,
.bundle-band p,
.timeline span,
.faq p,
.cta p,
.product-card p,
.filter-note {
  color: rgba(255, 255, 255, 0.68);
}

.brand-showcase {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(280px, 0.62fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  padding: clamp(58px, 8vw, 96px) clamp(20px, 6vw, 72px);
  background:
    radial-gradient(circle at 12% 12%, rgba(255, 230, 0, 0.16), transparent 24%),
    radial-gradient(circle at 82% 20%, rgba(255, 47, 141, 0.18), transparent 26%),
    #050507;
  border-bottom: 1px solid var(--line);
}

.brand-showcase h2 {
  max-width: 760px;
}

.brand-showcase p:not(.eyebrow) {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.72);
}

.brand-showcase img {
  width: min(460px, 100%);
  justify-self: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow:
    0 0 42px rgba(0, 168, 255, 0.26),
    0 0 70px rgba(255, 47, 141, 0.18);
}

.section-intro {
  max-width: 820px;
  padding: clamp(58px, 8vw, 92px) clamp(20px, 6vw, 72px) 28px;
}

.section-intro.compact {
  padding: 0;
}

.shop-shell {
  display: grid;
  grid-template-columns: minmax(230px, 280px) 1fr;
  gap: clamp(22px, 4vw, 44px);
  padding: 0 clamp(20px, 6vw, 72px) clamp(64px, 8vw, 96px);
}

.filters {
  position: sticky;
  top: 96px;
  align-self: start;
  display: grid;
  gap: 18px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: #10131a;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}

label {
  display: grid;
  gap: 7px;
  font-size: 0.86rem;
  font-weight: 900;
}

input,
select {
  width: 100%;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 7px;
  color: var(--white);
  background: #090b10;
}

input[type="range"] {
  padding: 0;
  accent-color: var(--amber);
}

.range-value {
  color: var(--muted);
  font-weight: 400;
}

.catalogue-head {
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.catalogue-head h3 {
  margin: 0;
  font-size: 1.4rem;
}

.catalogue-head span {
  color: var(--muted);
}

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

.product-card {
  display: grid;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: #10131a;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
}

.product-art {
  position: relative;
  min-height: 166px;
  display: grid;
  place-items: center;
  padding: 22px;
  background: radial-gradient(circle at 50% 50%, rgba(0, 168, 255, 0.16), transparent 52%), #08090c;
}

.part-shape {
  width: min(160px, 58%);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 16px solid var(--shape);
  box-shadow: inset 0 0 0 10px rgba(255, 255, 255, 0.12), 0 20px 40px rgba(0, 0, 0, 0.28);
}

.part-shape.chain {
  width: 170px;
  aspect-ratio: 2.1;
  border-radius: 999px;
  border-width: 13px;
}

.part-shape.bar {
  width: 190px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent 0 18%, var(--shape) 18% 82%, transparent 82%);
}

.part-shape.belt {
  width: 178px;
  aspect-ratio: 1.75;
  border-radius: 999px;
  border-width: 18px;
  border-style: dashed;
}

.part-shape.seat {
  width: 188px;
  height: 76px;
  border: 0;
  border-radius: 62% 38% 48% 52% / 48% 54% 46% 52%;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.18) 0 5px, transparent 5px 14px),
    var(--shape);
}

.part-shape.peg {
  width: 176px;
  height: 56px;
  border: 0;
  border-radius: 8px;
  background:
    repeating-linear-gradient(90deg, rgba(0, 0, 0, 0.28) 0 8px, transparent 8px 16px),
    var(--shape);
}

.part-shape.plate {
  width: 150px;
  height: 110px;
  border: 0;
  border-radius: 18px 18px 42px 42px;
  background: linear-gradient(145deg, var(--shape), #252b30);
}

.part-shape.bolt {
  width: 150px;
  height: 86px;
  border: 0;
  border-radius: 14px;
  background:
    radial-gradient(circle at 22% 35%, #eceff1 0 9px, transparent 10px),
    radial-gradient(circle at 46% 60%, #eceff1 0 9px, transparent 10px),
    radial-gradient(circle at 70% 35%, #eceff1 0 9px, transparent 10px),
    var(--shape);
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 8px;
  border-radius: 999px;
  color: #050507;
  background: var(--amber);
  font-size: 0.74rem;
  font-weight: 900;
}

.product-body {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.product-body p {
  margin: 0;
  font-size: 0.94rem;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 0.82rem;
}

.product-price {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 12px;
}

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

.product-price span {
  color: var(--green);
  font-size: 0.84rem;
  font-weight: 900;
}

.product-card .button {
  width: 100%;
}

.product-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.bundle-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) 1.2fr;
  gap: clamp(24px, 5vw, 58px);
  padding: clamp(58px, 8vw, 96px) clamp(20px, 6vw, 72px);
  color: var(--white);
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 47, 141, 0.2), transparent 28%),
    radial-gradient(circle at 90% 10%, rgba(0, 168, 255, 0.18), transparent 28%),
    var(--charcoal);
}

.bundle-band p {
  color: rgba(255, 255, 255, 0.72);
}

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

.bundle-grid article {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.bundle-grid span {
  color: var(--amber);
  font-weight: 900;
}

.timeline {
  display: grid;
  grid-template-columns: minmax(240px, 0.65fr) 1fr;
  gap: clamp(24px, 5vw, 60px);
  padding: clamp(58px, 8vw, 96px) clamp(20px, 6vw, 72px);
}

.timeline ol {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.timeline li {
  position: relative;
  padding: 22px 22px 22px 68px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: #10131a;
  counter-increment: steps;
}

.timeline li::before {
  content: counter(steps);
  position: absolute;
  left: 20px;
  top: 20px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: #050507;
  background: var(--amber);
  font-weight: 900;
}

.timeline strong,
.timeline span {
  display: block;
}

.faq {
  display: grid;
  grid-template-columns: minmax(240px, 0.7fr) 1fr;
  gap: clamp(24px, 5vw, 60px);
  padding: 0 clamp(20px, 6vw, 72px) clamp(64px, 8vw, 96px);
}

details {
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

details:last-child {
  border-bottom: 1px solid var(--line);
}

summary {
  cursor: pointer;
  font-weight: 900;
}

.cta {
  margin: 0 clamp(20px, 6vw, 72px) clamp(48px, 7vw, 80px);
  padding: clamp(32px, 6vw, 58px);
  border-radius: 8px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(0, 168, 255, 0.18), rgba(255, 47, 141, 0.2)),
    #050507;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.cta p {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.76);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto;
  gap: clamp(24px, 5vw, 60px);
  align-items: start;
  padding: clamp(34px, 5vw, 56px) clamp(20px, 6vw, 72px);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  background: #050507;
}

.site-footer p {
  max-width: 520px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 20px;
}

.site-footer a {
  text-decoration: none;
}

.site-footer nav a {
  color: rgba(255, 255, 255, 0.78);
}

.site-footer nav a:hover {
  color: var(--amber);
}

.policy-page {
  min-height: calc(100vh - 74px);
}

.policy-hero {
  padding: clamp(58px, 9vw, 112px) clamp(20px, 6vw, 72px) clamp(34px, 5vw, 56px);
  background:
    radial-gradient(circle at 12% 16%, rgba(255, 230, 0, 0.16), transparent 24%),
    radial-gradient(circle at 78% 10%, rgba(0, 168, 255, 0.18), transparent 26%),
    #050507;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.policy-hero h1 {
  max-width: 900px;
}

.policy-hero p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1.05rem, 2vw, 1.24rem);
}

.policy-grid,
.policy-content {
  padding: clamp(34px, 6vw, 72px) clamp(20px, 6vw, 72px);
}

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

.policy-grid article,
.policy-content {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: #10131a;
}

.policy-grid article {
  padding: 22px;
}

.policy-content {
  max-width: 980px;
  margin: clamp(34px, 6vw, 72px) clamp(20px, 6vw, 72px);
  padding: clamp(24px, 4vw, 44px);
}

.policy-content h2,
.policy-grid h2 {
  margin-top: 0;
  font-size: clamp(1.3rem, 2vw, 1.75rem);
}

.policy-content p,
.policy-grid p {
  color: rgba(255, 255, 255, 0.72);
}

.admin-auth {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 230, 0, 0.14), transparent 28%),
    radial-gradient(circle at 82% 12%, rgba(0, 168, 255, 0.16), transparent 28%),
    #050507;
}

.admin-login-card {
  display: grid;
  gap: 16px;
  width: min(420px, 100%);
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: #10131a;
  box-shadow: var(--shadow);
}

.admin-login-card h1 {
  margin: 0;
  font-size: 2rem;
}

.admin-login-card p,
.admin-panel p {
  color: rgba(255, 255, 255, 0.72);
}

.admin-alert,
.admin-success {
  padding: 12px 14px;
  border-radius: 8px;
}

.admin-alert {
  color: #ffc8c8;
  border: 1px solid rgba(255, 47, 141, 0.32);
  background: rgba(255, 47, 141, 0.12);
}

.admin-success {
  color: #fff2a6;
  border: 1px solid rgba(255, 230, 0, 0.28);
  background: rgba(255, 230, 0, 0.08);
}

.admin-page {
  padding: clamp(28px, 5vw, 56px) clamp(18px, 5vw, 56px);
}

.admin-head {
  display: grid;
  gap: 14px;
  margin-bottom: 22px;
}

.admin-head h1 {
  margin: 0;
}

.admin-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-filters a {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.06);
}

.admin-panel {
  margin-bottom: 18px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: #10131a;
}

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

.admin-table-wrap {
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 780px;
}

.admin-table th,
.admin-table td {
  padding: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  text-align: left;
  vertical-align: top;
}

.admin-table th {
  color: var(--amber);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.status-pill {
  display: inline-flex;
  padding: 5px 8px;
  border-radius: 999px;
  color: #050507;
  background: var(--amber);
  font-size: 0.8rem;
  font-weight: 900;
}

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

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

.admin-form-wide {
  grid-column: 1 / -1;
}

.admin-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 7px;
  color: var(--white);
  background: #090b10;
  resize: vertical;
}

.admin-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
}

.admin-checkbox input {
  width: auto;
  min-height: auto;
}

.admin-form .button {
  align-self: end;
}

.admin-inline-action {
  margin-top: 14px;
}

.product-modal {
  position: fixed;
  inset: 0;
  z-index: 55;
  display: grid;
  place-items: center;
  padding: clamp(16px, 4vw, 42px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.product-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(320px, 1.2fr);
  width: min(980px, 100%);
  max-height: min(760px, calc(100vh - 40px));
  overflow: auto;
  border-radius: 8px;
  color: var(--white);
  background: #10131a;
  box-shadow: var(--shadow);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 40px;
  height: 40px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 7px;
  background: #050507;
  font-size: 1.6rem;
}

.modal-art .product-art {
  height: 100%;
  min-height: 420px;
  border-radius: 0;
}

.modal-art .part-shape {
  transform: scale(1.22);
}

.modal-body {
  padding: clamp(24px, 4vw, 44px);
}

.modal-body h2 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

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

.detail-grid div,
.fitment-warning {
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: #090b10;
}

.detail-grid strong,
.detail-grid span {
  display: block;
}

.detail-grid strong {
  margin-bottom: 8px;
}

.detail-grid ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.68);
}

.fitment-warning {
  color: #fff2a6;
  background: rgba(255, 230, 0, 0.08);
  border-color: rgba(255, 230, 0, 0.28);
}

.modal-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 22px;
}

.modal-actions > strong {
  font-size: 1.8rem;
}

.cart-panel {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 50;
  display: grid;
  grid-template-rows: auto 1fr auto auto auto;
  width: min(430px, 100vw);
  height: 100vh;
  padding: 22px;
  transform: translateX(105%);
  transition: transform 180ms ease;
  color: var(--white);
  background: #10131a;
  box-shadow: var(--shadow);
}

.cart-panel.open {
  transform: translateX(0);
}

.cart-head {
  justify-content: space-between;
  margin-bottom: 18px;
}

.cart-head h2 {
  margin: 0;
  font-size: 1.55rem;
}

.cart-close {
  width: 40px;
  height: 40px;
  border-radius: 7px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 1.6rem;
}

.cart-items {
  display: grid;
  align-content: start;
  gap: 12px;
  overflow: auto;
}

.cart-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.cart-row strong,
.cart-row span {
  display: block;
}

.cart-row span,
.cart-empty {
  color: rgba(255, 255, 255, 0.68);
}

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

.qty button {
  width: 30px;
  height: 30px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 7px;
  background: #050507;
  cursor: pointer;
}

.cart-empty {
  display: none;
  padding: 20px;
  border: 1px dashed rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  text-align: center;
}

.cart-empty.show {
  display: block;
}

.cart-total {
  justify-content: space-between;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.cart-contact {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.cart-contact input {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 7px;
  background: #050507;
  color: var(--text);
  font: inherit;
  padding: 13px 14px;
  outline: none;
}

.cart-contact input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0, 178, 255, 0.18);
}

.checkout {
  width: 100%;
}

.scrim {
  position: fixed;
  inset: 0;
  z-index: 45;
  opacity: 0;
  pointer-events: none;
  background: rgba(0, 0, 0, 0.42);
  transition: opacity 180ms ease;
}

.scrim.show {
  opacity: 1;
  pointer-events: auto;
}

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

  .main-nav {
    display: none;
  }

  .trust-strip,
  .shop-shell,
  .bundle-band,
  .timeline,
  .faq,
  .modal-card,
  .brand-showcase,
  .site-footer,
  .policy-grid {
    grid-template-columns: 1fr;
  }

  .site-footer nav {
    justify-content: flex-start;
  }

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

  .filters {
    position: static;
  }

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

  .modal-art .product-art {
    min-height: 260px;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 720px;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(4, 5, 6, 0.88), rgba(4, 5, 6, 0.58));
  }

  .hero-content {
    align-self: end;
    width: 100%;
    max-width: 100vw;
    padding: 44px 28px 52px;
    overflow: hidden;
  }

  .eyebrow {
    font-size: 0.72rem;
    line-height: 1.45;
    letter-spacing: 0.1em;
  }

  h1 {
    max-width: calc(100vw - 56px);
    font-size: clamp(2.35rem, 10vw, 3.05rem);
    line-height: 0.98;
    word-break: normal;
  }

  .hero-content > p:not(.eyebrow),
  .hero-actions,
  .hero-stats {
    max-width: calc(100vw - 56px);
  }

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

  .hero-actions .button {
    width: 100%;
    min-width: 0;
    text-align: center;
  }

  .hero-stats span {
    width: 100%;
    min-width: 0;
  }

  .product-grid,
  .bundle-grid,
  .detail-grid,
  .product-actions {
    grid-template-columns: 1fr;
  }

  .modal-actions {
    display: grid;
  }

  .modal-actions .button {
    width: 100%;
  }

  .brand span:last-child {
    display: none;
  }
}
