:root {
  --bg-void: #070b12;
  --bg-surface: #0e1420;
  --bg-raised: #151e2e;
  --brand-ember: #ff4500;
  --brand-volt: #c8ff00;
  --brand-ember-glow: rgba(255, 69, 0, 0.25);
  --text-primary: #ffffff;
  --text-secondary: #8a95a3;
  --text-muted: #4a5568;
  --border: #1a2235;
  --border-active: rgba(255, 69, 0, 0.45);
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 16px;
  --space-4: 24px;
  --space-5: 32px;
  --space-6: 48px;
  --space-7: 64px;
  --space-8: 96px;
  --space-9: 128px;
  --ease-premium: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --font-display: "Barlow Condensed", sans-serif;
  --font-body: "Inter", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
figure,
blockquote {
  margin: 0;
}

body {
  min-height: 100vh;
  background: var(--bg-void);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

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

button {
  padding: 0;
}

input,
textarea,
select,
button {
  border-radius: 0;
}

button,
a,
input,
select,
textarea,
summary {
  transition: color 0.25s var(--ease-premium), background-color 0.25s var(--ease-premium),
    border-color 0.25s var(--ease-premium), transform 0.25s var(--ease-premium),
    opacity 0.25s var(--ease-premium), box-shadow 0.25s var(--ease-premium);
}

:focus-visible {
  outline: 2px solid var(--brand-ember);
  outline-offset: 3px;
}

.display-xl,
.display-l,
.display-m,
.heading-1 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.display-xl {
  font-size: clamp(4rem, 8vw, 6rem);
  font-weight: 900;
  line-height: 0.92;
}

.display-l {
  font-size: clamp(3rem, 7vw, 4.5rem);
  font-weight: 800;
  line-height: 0.95;
}

.display-m {
  font-size: clamp(2.25rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1;
}

.heading-1 {
  font-size: clamp(1.9rem, 4vw, 2rem);
  font-weight: 700;
  line-height: 1.05;
}

.body-l,
.body,
.caption {
  font-family: var(--font-body);
}

.body-l {
  font-size: 18px;
}

.body {
  font-size: 16px;
}

.caption {
  font-size: 13px;
  font-weight: 600;
}

.site-shell {
  overflow: clip;
}

.section {
  padding: var(--space-8) 5%;
}

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}

.section-header h2 {
  color: var(--text-primary);
}

.section-label {
  display: block;
  margin-bottom: 12px;
  color: var(--brand-ember);
  font: 700 12px/1 var(--font-display);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.view-all-link {
  color: var(--brand-ember);
  font: 600 14px/1 var(--font-body);
  letter-spacing: 1px;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.view-all-link:hover {
  color: #ff6a33;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  min-height: 78px;
  padding: 0 5%;
  background: rgba(7, 11, 18, 0.92);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
}

.site-nav.scrolled {
  background: rgba(7, 11, 18, 0.96);
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  color: var(--text-primary);
  font: 900 30px/1 var(--font-display);
  letter-spacing: 0.03em;
  text-decoration: none;
}

.nav-logo span {
  color: var(--brand-ember);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 28px);
}

.nav-links a,
.mobile-menu a {
  padding: 28px 0 24px;
  border-bottom: 2px solid transparent;
  color: var(--text-primary);
  font: 700 14px/1 var(--font-display);
  letter-spacing: 1.5px;
  text-decoration: none;
  text-transform: uppercase;
}

.nav-links a.active,
.mobile-menu a.active {
  border-bottom-color: var(--brand-ember);
}

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

.icon-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--text-primary);
  font-size: 24px;
  text-decoration: none;
  cursor: pointer;
}

.icon-btn:hover {
  border-color: var(--border-active);
  background: rgba(255, 255, 255, 0.03);
}

.cart-badge {
  position: absolute;
  top: 4px;
  right: 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--brand-ember);
  color: var(--text-primary);
  font-size: 10px;
  font-weight: 700;
}

.hamburger {
  display: none;
}

.mobile-menu {
  position: fixed;
  inset: 78px 0 auto;
  z-index: 999;
  display: grid;
  gap: 8px;
  padding: 24px 5% 40px;
  background: rgba(7, 11, 18, 0.98);
  border-bottom: 1px solid var(--border);
  transform: translateY(-120%);
  opacity: 0;
  pointer-events: none;
}

.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu a {
  padding: 14px 0;
}

.marquee-strip {
  overflow: hidden;
  width: 100%;
  padding: 14px 0;
  background: var(--bg-surface);
  border-block: 1px solid rgba(255, 255, 255, 0.03);
}

.marquee-track {
  display: flex;
  width: max-content;
  will-change: transform;
}

.marquee-track span {
  padding-right: 32px;
  color: var(--brand-ember);
  font: 700 14px/1 var(--font-display);
  letter-spacing: 2px;
  text-transform: uppercase;
  white-space: nowrap;
}

.collection-cta,
.newsletter-form button,
.btn-add-cart,
.primary-button,
.submit-button,
.size-pill.active,
.quantity-btn:hover,
.detail-family-link:hover {
  box-shadow: 0 12px 30px rgba(255, 69, 0, 0.18);
}

.collection-cta,
.primary-button,
.submit-button,
.newsletter-form button {
  display: inline-block;
  margin-top: 32px;
  padding: 16px 40px;
  border: 0;
  background: var(--brand-ember);
  color: var(--text-primary);
  font: 800 15px/1 var(--font-display);
  letter-spacing: 2px;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  opacity: 0;
}

.collection-cta:hover,
.btn-add-cart:hover,
.primary-button:hover,
.submit-button:hover,
.newsletter-form button:hover {
  background: #cc3700;
  transform: translateY(-2px);
}

.drops-grid {
  display: grid;
  grid-template-columns: 1fr 1.45fr 1fr;
  gap: 20px;
  height: 480px;
}

.drop-card {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
  background: var(--bg-surface);
}

.drop-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-premium);
}

.drop-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(7, 11, 18, 0.2) 45%, rgba(7, 11, 18, 0.85) 100%);
}

.drop-card:hover img {
  transform: scale(1.06);
}

.drop-card-info {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  padding: 28px;
}

.drop-badge,
.card-badge,
.detail-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 4px 12px;
  border-radius: 2px;
  font: 700 11px/1 var(--font-display);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.drop-card h3 {
  font: 800 26px/1 var(--font-display);
  text-transform: uppercase;
}

.drop-card p {
  margin-top: 8px;
  color: var(--text-secondary);
  font-size: 14px;
}

.shop-link {
  display: inline-block;
  margin-top: 14px;
  color: var(--brand-ember);
  font: 600 13px/1 var(--font-body);
  opacity: 0;
  transform: translateY(10px);
  transition: transform 0.3s var(--ease-premium), opacity 0.3s var(--ease-premium);
  text-decoration: none;
}

.drop-card:hover .shop-link {
  opacity: 1;
  transform: translateY(0);
}

.badge-ember {
  background: var(--brand-ember);
  color: var(--text-primary);
}

.badge-volt {
  background: var(--brand-volt);
  color: #000;
}

.badge-grey {
  background: rgba(255, 255, 255, 0.12);
  color: var(--text-primary);
}

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

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

.tech-card {
  padding: 40px;
  border: 1px solid var(--border);
  background: var(--bg-raised);
  text-align: center;
}

.tech-icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: rgba(255, 69, 0, 0.12);
  color: var(--brand-ember);
  font: 800 22px/1 var(--font-display);
}

.tech-card h3 {
  margin-bottom: 8px;
  color: var(--text-primary);
  font: 800 24px/1 var(--font-display);
  text-transform: uppercase;
}

.tech-card p {
  color: var(--text-secondary);
  font-size: 15px;
}

.collections-split {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  height: 560px;
}

.collection-panel {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.collection-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-premium);
}

.collection-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 11, 18, 0.88) 0%, rgba(7, 11, 18, 0.2) 50%, transparent 100%);
}

.collection-panel:hover img {
  transform: scale(1.04);
}

.collection-content {
  position: absolute;
  bottom: 40px;
  left: 32px;
  z-index: 2;
}

.collection-count {
  margin-bottom: 16px;
  color: var(--text-secondary);
  font-size: 14px;
}

.collection-label {
  margin-bottom: 8px;
  color: var(--text-primary);
  font: 900 42px/0.95 var(--font-display);
  text-transform: uppercase;
}

.collection-cta {
  margin-top: 0;
  padding: 12px 28px;
  font-size: 13px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2px;
  background: rgba(255, 255, 255, 0.02);
}

.why-card {
  padding: 48px 40px;
  background: var(--bg-surface);
  border-left: 3px solid transparent;
}

.why-card:hover {
  border-left-color: var(--brand-ember);
}

.why-stat {
  color: var(--brand-ember);
  font: 900 52px/1 var(--font-display);
  text-transform: uppercase;
}

.why-card h3 {
  margin: 16px 0 8px;
  color: var(--text-primary);
  font: 800 20px/1 var(--font-display);
  text-transform: uppercase;
}

.why-card p {
  color: var(--text-secondary);
  font-size: 14px;
}

.carousel-shell {
  position: relative;
}

.carousel-arrows {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-bottom: 20px;
}

.carousel-arrow {
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  background: var(--bg-surface);
  color: var(--text-primary);
  font-size: 18px;
  cursor: pointer;
}

.carousel-arrow:hover {
  border-color: var(--border-active);
  color: var(--brand-ember);
}

.trending-carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 16px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}

.trending-carousel::-webkit-scrollbar {
  display: none;
}

.trending-carousel .product-card {
  flex: 0 0 280px;
}

.product-card {
  border: 1px solid var(--border);
  background: var(--bg-surface);
  cursor: pointer;
  transition: transform 0.4s var(--ease-premium), border-color 0.3s var(--ease-premium),
    box-shadow 0.4s var(--ease-premium);
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-active);
  box-shadow: 0 20px 60px rgba(255, 69, 0, 0.12);
}

.card-img-zone {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 260px;
  overflow: hidden;
  background: linear-gradient(135deg, #0a1020, #111827);
}

.card-img-zone::after {
  content: "";
  position: absolute;
  inset: auto 8% -18% 8%;
  height: 56%;
  background: radial-gradient(circle, rgba(255, 69, 0, 0.12) 0%, transparent 72%);
  opacity: 0;
  transition: opacity 0.4s var(--ease-premium);
}

.product-card:hover .card-img-zone::after {
  opacity: 1;
}

.card-img-zone img {
  position: relative;
  z-index: 1;
  max-width: 85%;
  max-height: 85%;
  object-fit: contain;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.6));
  transition: transform 0.5s var(--ease-premium);
}

.product-card:hover .card-img-zone img {
  transform: scale(1.08);
}

.card-badge {
  top: 12px;
  left: 12px;
  padding: 4px 10px;
}

.card-quick-actions {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  display: flex;
  gap: 8px;
  opacity: 0;
  transition: opacity 0.3s var(--ease-premium);
}

.product-card:hover .card-quick-actions {
  opacity: 1;
}

.btn-wishlist,
.btn-quick-view {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(7, 11, 18, 0.78);
  color: var(--text-primary);
  font: 600 12px/1 var(--font-body);
  cursor: pointer;
}

.btn-wishlist {
  min-width: 36px;
  padding: 10px 12px;
}

.btn-quick-view {
  padding: 10px 14px;
}

.card-info {
  padding: 20px;
}

.card-family {
  display: block;
  margin-bottom: 6px;
  color: var(--brand-ember);
  font: 600 11px/1 var(--font-body);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.card-name {
  margin-bottom: 4px;
  color: var(--text-primary);
  font: 800 22px/1 var(--font-display);
  text-transform: uppercase;
}

.card-colorway {
  margin-bottom: 16px;
  color: var(--text-muted);
  font-size: 13px;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.card-price {
  color: var(--text-primary);
  font: 800 24px/1 var(--font-display);
}

.btn-add-cart,
.primary-button,
.submit-button {
  padding: 10px 20px;
  margin-top: 0;
  opacity: 1;
  font-size: 12px;
  border: 0;
}

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

.review-card {
  padding: 32px;
  border: 1px solid var(--border);
  background: var(--bg-surface);
}

.review-stars {
  color: var(--brand-ember);
  font-size: 18px;
  letter-spacing: 4px;
}

.review-card blockquote {
  margin: 16px 0;
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.7;
}

.review-card strong {
  display: block;
  color: var(--text-primary);
  font-size: 14px;
}

.review-card span {
  color: var(--brand-ember);
  font-size: 13px;
}

.newsletter-band {
  margin: 0 5% var(--space-8);
  padding: 42px;
  background: linear-gradient(135deg, rgba(255, 69, 0, 0.14), rgba(21, 30, 46, 0.94));
  border: 1px solid var(--border-active);
}

.newsletter-band h2 {
  margin-bottom: 10px;
}

.newsletter-band p {
  max-width: 560px;
  margin-bottom: 24px;
  color: var(--text-secondary);
}

.newsletter-form {
  display: flex;
  gap: 14px;
}

.newsletter-form input {
  flex: 1;
  min-width: 0;
  padding: 16px 18px;
  border: 1px solid var(--border);
  background: rgba(7, 11, 18, 0.7);
  color: var(--text-primary);
}

.newsletter-disclaimer {
  margin-top: 14px;
  color: var(--text-muted);
  font-size: 13px;
}

.stack-gap {
  margin-top: 16px;
}

.text-top-gap {
  margin-top: 18px;
}

.button-top-gap {
  margin-top: 20px;
}

.site-footer {
  padding: var(--space-8) 5% var(--space-6);
  background: #040710;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(180px, 1fr));
  gap: 32px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  margin-bottom: 16px;
  color: var(--text-primary);
  font: 900 30px/1 var(--font-display);
  text-decoration: none;
}

.footer-logo span {
  color: var(--brand-ember);
}

.footer-tagline,
.footer-copy,
.footer-list a {
  color: var(--text-secondary);
}

.footer-company-name,
.footer-address,
.footer-contact-link {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.7;
}

.footer-tagline {
  margin-bottom: 22px;
  max-width: 240px;
  font-size: 14px;
}

.footer-company-name {
  margin-bottom: 14px;
  max-width: 320px;
  color: var(--text-primary);
  font-weight: 600;
}

.footer-contact-list {
  display: grid;
  gap: 10px;
}

.footer-contact-link {
  text-decoration: none;
}

.footer-contact-link:hover,
.contact-link:hover {
  color: var(--brand-ember);
}

.footer-address {
  max-width: 320px;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
  text-decoration: none;
}

.social-links a:hover {
  border-color: var(--border-active);
  color: var(--brand-ember);
}

.footer-column h3 {
  margin-bottom: 18px;
  color: var(--text-primary);
  font: 700 13px/1 var(--font-display);
  letter-spacing: 2px;
  text-transform: uppercase;
}

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

.footer-list a {
  font-size: 14px;
  text-decoration: none;
}

.footer-list a:hover {
  color: var(--brand-ember);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: var(--space-7);
  padding-top: var(--space-4);
  border-top: 1px solid var(--border);
}

.footer-copy {
  font-size: 13px;
}

.page-banner {
  padding: 60px 5% 48px;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border);
}

.page-banner h1 {
  color: var(--text-primary);
}

.page-breadcrumb {
  margin-bottom: 12px;
  color: var(--text-muted);
  font-size: 13px;
}

.page-subtitle {
  margin-top: 12px;
  color: var(--text-secondary);
  font-size: 16px;
}

.editorial-strip {
  position: relative;
  height: 300px;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.editorial-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.editorial-strip::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 11, 18, 0.84), rgba(7, 11, 18, 0.28));
}

.editorial-copy {
  position: absolute;
  bottom: 32px;
  left: 5%;
  z-index: 1;
  max-width: 420px;
}

.editorial-copy span {
  display: block;
  margin-bottom: 10px;
  color: var(--brand-ember);
  font: 700 12px/1 var(--font-display);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.editorial-copy h2 {
  color: var(--text-primary);
}

.shop-layout {
  display: flex;
  gap: 40px;
  padding: 48px 5%;
}

.shop-sidebar {
  width: 240px;
  flex-shrink: 0;
}

.shop-main {
  flex-grow: 1;
  min-width: 0;
}

.filter-group {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.filter-group h3 {
  margin-bottom: 14px;
  color: var(--text-secondary);
  font: 700 13px/1 var(--font-display);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.filter-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 5px 0;
  color: var(--text-secondary);
  font-size: 14px;
  cursor: pointer;
}

.filter-option input[type="checkbox"] {
  accent-color: var(--brand-ember);
}

.filter-option.active {
  color: var(--text-primary);
}

.clear-filters {
  color: var(--brand-ember);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
}

.results-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 24px;
  color: var(--text-secondary);
  font-size: 14px;
}

.sort-select {
  border: 1px solid var(--border);
  background: var(--bg-raised);
  color: var(--text-primary);
  padding: 8px 14px;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.empty-state {
  padding: 36px;
  border: 1px dashed var(--border-active);
  background: rgba(255, 69, 0, 0.04);
  color: var(--text-secondary);
}

.detail-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  padding: 56px 5% var(--space-8);
}

.detail-gallery {
  min-width: 0;
}

.detail-main-image {
  display: grid;
  place-items: center;
  min-height: 640px;
  padding: 40px;
  border: 1px solid var(--border);
  background: linear-gradient(135deg, #0b1220, #121a2b);
}

.detail-main-image img {
  max-width: 88%;
  max-height: 88%;
  object-fit: contain;
  filter: drop-shadow(0 32px 42px rgba(0, 0, 0, 0.65));
}

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

.detail-thumb {
  display: grid;
  place-items: center;
  padding: 12px;
  border: 1px solid var(--border);
  background: var(--bg-surface);
  cursor: pointer;
}

.detail-thumb img {
  max-height: 82px;
  object-fit: contain;
}

.detail-thumb.active {
  border-color: var(--border-active);
  background: rgba(255, 69, 0, 0.08);
}

.detail-info .page-breadcrumb {
  margin-bottom: 10px;
}

.detail-badge {
  position: static;
  margin-bottom: 18px;
}

.detail-name {
  color: var(--text-primary);
  font: 900 48px/0.95 var(--font-display);
  text-transform: uppercase;
}

.detail-colorway {
  margin-top: 10px;
  color: var(--text-secondary);
  font-size: 16px;
}

.detail-price {
  margin: 20px 0;
  color: var(--text-primary);
  font: 800 38px/1 var(--font-display);
}

.detail-description {
  max-width: 520px;
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.8;
}

.detail-block {
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}

.detail-block h3 {
  margin-bottom: 14px;
  color: var(--text-primary);
  font: 700 16px/1 var(--font-display);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.size-selector,
.tech-highlights,
.width-chips,
.tips-grid,
.contact-cards,
.values-grid,
.stats-row,
.info-grid {
  display: grid;
  gap: 12px;
}

.size-selector {
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.size-pill,
.width-chip,
.tech-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 14px;
  border: 1px solid var(--border);
  background: var(--bg-surface);
  color: var(--text-secondary);
  cursor: pointer;
}

.size-pill.active {
  border-color: var(--border-active);
  background: rgba(255, 69, 0, 0.14);
  color: var(--text-primary);
}

.quantity-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.quantity-selector {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border);
  background: var(--bg-surface);
}

.quantity-btn {
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  color: var(--text-primary);
  cursor: pointer;
}

.quantity-value {
  min-width: 44px;
  text-align: center;
}

.detail-actions {
  display: grid;
  gap: 14px;
}

.primary-button {
  width: 100%;
  padding: 16px 24px;
  font-size: 14px;
}

.secondary-link {
  color: var(--text-secondary);
  font: 600 13px/1 var(--font-body);
  letter-spacing: 1px;
  text-decoration: none;
  text-transform: uppercase;
}

.secondary-link:hover {
  color: var(--brand-ember);
}

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

.tech-chip {
  justify-content: center;
  color: var(--text-primary);
  font-size: 13px;
}

.detail-family-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border: 1px solid var(--border);
  background: var(--bg-surface);
  color: var(--brand-ember);
  font: 700 14px/1 var(--font-display);
  letter-spacing: 1px;
  text-decoration: none;
  text-transform: uppercase;
}

.story-section,
.support-section,
.table-section {
  padding: var(--space-8) 5%;
}

.hero-band,
.story-hero {
  position: relative;
  padding: 140px 5% 120px;
  background: var(--bg-surface);
  overflow: hidden;
}

.hero-band::before,
.story-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 11, 18, 0.9), rgba(7, 11, 18, 0.45));
}

.hero-band img,
.story-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-band-content,
.story-hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.story-copy {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: start;
}

.story-copy p,
.support-copy p,
.size-note,
.contact-card p,
.info-card p,
.faq-panel p,
.table-note {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.8;
}

.stats-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: var(--space-6);
}

.stat-card,
.value-card,
.tip-card,
.contact-card,
.info-card {
  padding: 28px;
  border: 1px solid var(--border);
  background: var(--bg-surface);
}

.stat-card strong {
  display: block;
  color: var(--brand-ember);
  font: 900 44px/1 var(--font-display);
}

.stat-card span,
.value-card p,
.tip-card p,
.contact-card p,
.info-card p {
  margin-top: 10px;
}

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

.value-card h3,
.tip-card h3,
.contact-card h3,
.info-card h3 {
  color: var(--text-primary);
  font: 800 24px/1 var(--font-display);
  text-transform: uppercase;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  padding: 48px 5% var(--space-8);
}

.contact-form,
.support-form {
  padding: 32px;
  border: 1px solid var(--border);
  background: var(--bg-surface);
}

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

.form-grid.two-col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.field-label {
  display: grid;
  gap: 8px;
  color: var(--text-secondary);
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.field-label input,
.field-label select,
.field-label textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  background: var(--bg-raised);
  color: var(--text-primary);
}

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

.contact-link {
  color: var(--text-primary);
  text-decoration: none;
}

.submit-button.sent {
  background: #1f7a41;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  background: var(--bg-surface);
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--border);
  text-align: left;
}

th {
  color: var(--text-primary);
  font: 700 13px/1 var(--font-display);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

td {
  color: var(--text-secondary);
  font-size: 15px;
}

.width-chips,
.tips-grid,
.info-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.width-chip {
  color: var(--text-primary);
}

.accordion {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.faq-item {
  border: 1px solid var(--border);
  background: var(--bg-surface);
}

.faq-item summary {
  list-style: none;
  padding: 20px 22px;
  color: var(--text-primary);
  font: 700 18px/1.1 var(--font-display);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  cursor: pointer;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  padding: 0 22px;
  transition: max-height 0.3s var(--ease-premium), padding 0.3s var(--ease-premium);
}

.faq-item:focus-within .faq-panel,
.faq-item[open] .faq-panel {
  max-height: 220px;
  padding: 0 22px 20px;
}

.cta-panel {
  display: grid;
  place-items: center;
  gap: 18px;
  padding: 48px;
  border: 1px solid var(--border-active);
  background: linear-gradient(135deg, rgba(255, 69, 0, 0.1), rgba(14, 20, 32, 0.95));
  text-align: center;
}

.cta-panel p {
  max-width: 640px;
  color: var(--text-secondary);
}

@media (max-width: 1024px) {
  .drops-grid,
  .tech-grid,
  .reviews-grid,
  .story-copy,
  .contact-layout,
  .detail-layout {
    grid-template-columns: 1fr 1fr;
  }

  .drops-grid {
    height: auto;
  }

  .drops-grid .drop-card:nth-child(2) {
    grid-column: span 2;
    min-height: 360px;
  }

  .tech-grid,
  .shop-grid,
  .values-grid,
  .tips-grid,
  .info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .collections-split {
    height: auto;
  }

  .collection-panel {
    min-height: 440px;
  }

  .size-selector {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .site-nav {
    min-height: 72px;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: inline-flex;
  }

  .section,
  .story-section,
  .support-section,
  .table-section {
    padding: var(--space-7) 5%;
  }

  .section-header,
  .results-bar,
  .footer-bottom,
  .newsletter-form,
  .shop-layout,
  .detail-layout,
  .story-copy,
  .contact-layout {
    display: grid;
    grid-template-columns: 1fr;
  }

  .drops-grid,
  .collections-split,
  .why-grid,
  .reviews-grid,
  .stats-row,
  .values-grid,
  .tips-grid,
  .info-grid,
  .width-chips,
  .tech-highlights,
  .footer-grid,
  .tech-grid {
    grid-template-columns: 1fr;
  }

  .drop-card,
  .collection-panel {
    min-height: 360px;
  }

  .shop-sidebar {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 6px;
    white-space: nowrap;
  }

  .shop-sidebar .filter-group {
    display: inline-block;
    min-width: 220px;
    margin-right: 18px;
    vertical-align: top;
  }

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

  .detail-main-image {
    min-height: 380px;
  }

  .detail-name {
    font-size: 40px;
  }

  .newsletter-band {
    padding: 32px 24px;
  }

  .form-grid.two-col,
  .size-selector {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .shop-grid {
    grid-template-columns: 1fr;
  }

  .trending-carousel .product-card {
    flex-basis: min(88vw, 320px);
  }

  .product-card {
    min-width: 0;
  }

  .card-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-add-cart {
    width: 100%;
  }
}

/* ─── HERO ───────────────────────────────────────── */
.hero {
  display: flex;
  align-items: stretch;
  height: 100vh;
  min-height: 600px;
  background: var(--bg-void);
  position: relative;
  overflow: hidden;
}

/* LEFT — Text Panel */
.hero-text-panel {
  flex: 0 0 42%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 5% 0 8%;
  position: relative;
  z-index: 2;
  background: linear-gradient(
    to right,
    var(--bg-void) 60%,
    rgba(7, 11, 18, 0) 100%
  );
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--brand-ember);
  margin-bottom: 20px;
  opacity: 0;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(64px, 7vw, 96px);
  font-weight: 900;
  line-height: 0.92;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hero-headline .hl-line {
  display: block;
  opacity: 0;
}

.hero-headline em {
  font-style: normal;
  color: var(--brand-ember);
  -webkit-text-stroke: 0px;
}

.hero-sub {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--text-secondary);
  max-width: 340px;
  margin-bottom: 40px;
  opacity: 0;
}

.hero-cta {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text-primary);
  background: var(--brand-ember);
  padding: 16px 40px;
  align-self: flex-start;
  transition: background 0.25s, transform 0.25s var(--ease-premium);
  opacity: 0;
}

.hero-cta:hover {
  background: #cc3700;
  transform: translateY(-2px);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 48px;
  left: 8%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  transition: opacity 0.4s;
}

.hero-scroll-hint.visible {
  opacity: 1;
}

.scroll-line {
  display: block;
  width: 1px;
  height: 40px;
  background: var(--brand-ember);
  animation: scrollPulse 2s ease-in-out infinite;
}

.scroll-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  writing-mode: horizontal-tb;
}

/* VERTICAL SEPARATOR */
.hero-separator {
  flex: 0 0 1px;
  background: var(--brand-ember);
  opacity: 0;
  transform-origin: top center;
  transform: scaleY(0);
  transition: transform 0.8s var(--ease-premium) 0.2s,
              opacity 0.1s 0.2s;
  z-index: 3;
  align-self: stretch;
}

.hero-separator.visible {
  opacity: 0.5;
  transform: scaleY(1);
}

/* RIGHT — Video Panel */
.hero-video-panel {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--bg-void);
}

.hero-video-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 50% 60%,
    rgba(255, 69, 0, 0.035) 0%,
    transparent 65%
  );
  pointer-events: none;
  z-index: 1;
}

.hero-video-stage {
  position: relative;
  width: min(90%, 960px);
  height: min(86%, 760px);
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  border: 1px solid rgba(255, 69, 0, 0.18);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(245, 245, 241, 0.86));
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.45);
}

.hero-video-stage.is-ready {
  box-shadow: 0 40px 110px rgba(255, 69, 0, 0.12), 0 30px 70px rgba(0, 0, 0, 0.42);
}

.hero-video-stage.is-fallback::after {
  content: "Video unavailable - showing poster frame";
  position: absolute;
  left: 24px;
  bottom: 20px;
  z-index: 3;
  padding: 8px 12px;
  background: rgba(7, 11, 18, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  color: var(--text-secondary);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.hero-video {
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  opacity: 1;
  filter: none;
  mix-blend-mode: normal;
  border-radius: 18px;
}

/* CORNER ACCENT MARKS */
.corner-mark {
  position: absolute;
  width: 20px;
  height: 20px;
  border-color: rgba(255, 69, 0, 0.45);
  border-style: solid;
  pointer-events: none;
}

.corner-tl { top: 16px; left: 16px; border-width: 1px 0 0 1px; }
.corner-tr { top: 16px; right: 16px; border-width: 1px 1px 0 0; }
.corner-bl { bottom: 16px; left: 16px; border-width: 0 0 1px 1px; }
.corner-br { bottom: 16px; right: 16px; border-width: 0 1px 1px 0; }

/* ─── RESPONSIVE: MOBILE HERO ────────────────────── */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    height: auto;
    min-height: 100svh;
  }

  .hero-text-panel {
    flex: 0 0 auto;
    order: 2;
    padding: 36px 6% 48px;
    background: var(--bg-void);
  }

  .hero-headline {
    font-size: clamp(52px, 13vw, 72px);
  }

  .hero-separator {
    display: none;
  }

  .hero-video-panel {
    flex: 0 0 auto;
    order: 1;
    height: 56vw;
    min-height: 240px;
    max-height: 400px;
    width: 100%;
  }

  .hero-video-stage {
    width: 100%;
    height: 100%;
    padding: 10px;
    border-radius: 0;
    border-inline: 0;
  }

  .hero-video {
    object-fit: contain;
  }

  .hero-scroll-hint {
    display: none;
  }

  .corner-mark {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-text-panel {
    padding: 28px 5% 40px;
  }

  .hero-cta {
    width: 100%;
    text-align: center;
    padding: 14px 24px;
  }
}
