:root {
  --bg: #0f0f0f;
  --text: #ffffff;
  --text-dark: #000000;
  --muted: #b8b8b8;
  --muted-dark: #666666;
  --primary: #f03232;
  --primary-dark: #c81f1f;
  --border: rgba(255, 255, 255, 0.12);
}

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

body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  font-family: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: #000000;
  overflow-x: hidden;
  width: 100vw;
}

html {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

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

button {
  font: inherit;
  color: inherit;
  background: transparent;
  border: none;
  cursor: pointer;
}

.page-shell {
  max-width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  width: 100vw;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 20px 48px 16px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: #000000;
  backdrop-filter: blur(6px);
  z-index: 10;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  max-width: 100vw;
}

.logo {
  display: block;
  flex-shrink: 0;
}

.logo img {
  height: 48px;
  width: auto;
  display: block;
}

.primary-nav {
  display: flex;
  gap: 32px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  font-weight: 600;
}

.primary-nav a {
  position: relative;
  padding-bottom: 8px;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}

.primary-nav a:hover::after {
  transform: scaleX(1);
}

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

.icon-button {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid var(--border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s ease, color 0.3s ease;
}

.icon-button svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.icon-button:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.cart-button {
  position: relative;
}

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

.hero {
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding: 120px 0 160px;
  display: flex;
  justify-content: center;
  background: 
    radial-gradient(ellipse 80% 80% at 85% 15%, rgba(200, 50, 50, 0.25), transparent 65%),
    linear-gradient(135deg, #0f0f0f 0%, #1a0f0f 30%, #2a1515 50%, #1a0f0f 70%, #0f0f0f 100%),
    repeating-linear-gradient(0deg, transparent, transparent 40px, rgba(255, 255, 255, 0.01) 40px, rgba(255, 255, 255, 0.01) 41px),
    repeating-linear-gradient(90deg, transparent, transparent 40px, rgba(255, 255, 255, 0.01) 40px, rgba(255, 255, 255, 0.01) 41px),
    #0f0f0f;
  overflow: visible;
}

.hero-container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25rem;
  padding: 8px 16px;
  background: var(--primary);
  border-radius: 0;
  color: var(--text);
  margin-bottom: 24px;
  width: fit-content;
}

.hero h1 {
  font-family: "Bebas Neue", sans-serif;
  line-height: 0.85;
  font-size: clamp(56px, 7vw, 100px);
  text-transform: uppercase;
  margin: 0 0 28px;
}

.hero h1 span {
  display: block;
  color: var(--text);
}

.hero h1 .accent {
  color: var(--primary);
}

.hero p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 36px;
  max-width: 420px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 18px 32px;
  border-radius: 999px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15rem;
  font-size: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn-arrow {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.btn.primary {
  background: var(--primary);
  color: var(--text);
  box-shadow: 0 20px 40px rgba(240, 50, 50, 0.25);
}

.btn.primary:hover {
  transform: translateY(-2px);
  background: var(--primary-dark);
}

.btn.ghost {
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: transparent;
}

.btn.ghost:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.hero-metrics {
  display: flex;
  gap: 48px;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.15rem;
  color: var(--muted);
}

.metric span {
  display: block;
  font-family: "Bebas Neue", sans-serif;
  font-size: 36px;
  color: var(--primary);
  letter-spacing: 0.05rem;
  margin-bottom: 4px;
}

.hero-media {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-media img {
  width: 100%;
  max-width: 600px;
  height: auto;
  display: block;
  border-radius: 0;
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.mouse {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.wheel {
  width: 4px;
  height: 8px;
  background: var(--primary);
  border-radius: 2px;
  animation: scroll 2s ease-in-out infinite;
}

@keyframes scroll {
  0%, 100% {
    opacity: 1;
    transform: translateY(0);
  }
  50% {
    opacity: 0.3;
    transform: translateY(6px);
  }
}

@media (max-width: 1024px) {
  .page-shell {
    padding: 0;
  }

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

  .hero {
    padding: 64px 0 100px;
    overflow: hidden;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 0 32px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-media {
    order: -1;
  }
}

@media (max-width: 640px) {
  .primary-nav {
    flex-wrap: wrap;
    gap: 16px;
    letter-spacing: 0.1rem;
  }

  .hero {
    padding: 48px 0 80px;
  }

  .hero-container {
    padding: 0 24px;
    gap: 32px;
  }

  .hero-metrics {
    flex-direction: column;
    gap: 16px;
  }

  .hero-cta {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }
}

.products-section {
  background: #ffffff;
  padding: 100px 0;
  margin: 0;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

.products-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 48px;
}

.products-header {
  text-align: center;
  margin-bottom: 80px;
}

.products-eyebrow {
  display: block;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2rem;
  color: var(--primary);
  margin-bottom: 12px;
}

.products-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(56px, 7vw, 80px);
  text-transform: uppercase;
  color: var(--primary);
  margin: 0 0 20px;
  line-height: 1;
  font-weight: 400;
}

.products-description {
  font-size: 16px;
  color: var(--muted-dark);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

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

.product-card {
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #f0f0f0;
}

.product-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.product-image-wrapper {
  position: relative;
  background: #1a1a1a;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  aspect-ratio: 16/10;
}

.product-category {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--primary);
  color: var(--text);
  padding: 6px 12px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  border-radius: 0;
  z-index: 1;
}

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

.product-info {
  padding: 28px 24px;
  background: #ffffff;
}

.product-name {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 12px;
  font-family: "Space Grotesk", sans-serif;
}

.product-price {
  font-size: 36px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
  font-family: "Bebas Neue", sans-serif;
  line-height: 1;
}

.product-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.product-features li {
  font-size: 14px;
  color: var(--text-dark);
  margin-bottom: 10px;
  padding-left: 0;
  position: relative;
  font-family: "Space Grotesk", sans-serif;
}

.product-features li::before {
  content: "•";
  position: absolute;
  left: -16px;
  color: var(--primary);
  font-weight: bold;
  font-size: 16px;
}

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

.product-btn {
  flex: 1;
  background: var(--primary);
  color: var(--text);
  padding: 12px 20px;
  text-align: center;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.15rem;
  border-radius: 0;
  transition: background 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-decoration: none;
}

.product-btn-arrow {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.product-btn:hover {
  background: var(--primary-dark);
}

.product-like {
  width: 40px;
  height: 40px;
  border: 1px solid #d0d0d0;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 0;
  transition: border-color 0.2s ease;
  flex-shrink: 0;
}

.product-like svg {
  width: 18px;
  height: 18px;
  stroke: var(--text-dark);
  fill: none;
  stroke-width: 1.5;
}

.product-like:hover {
  border-color: var(--primary);
}

.product-like:hover svg {
  stroke: var(--primary);
}

@media (max-width: 1024px) {
  .products-container {
    padding: 0 32px;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 640px) {
  .products-section {
    padding: 80px 0;
  }

  .products-container {
    padding: 0 24px;
  }

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

  .products-header {
    margin-bottom: 48px;
  }
}

.categories-section {
  background: #f8f8f8;
  padding: 100px 0;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

.categories-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 48px;
}

.categories-header {
  text-align: center;
  margin-bottom: 64px;
}

.categories-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(40px, 6vw, 64px);
  text-transform: uppercase;
  color: #000000;
  margin: 0 0 16px;
  line-height: 1;
  font-weight: 400;
}

.categories-title .text-primary {
  color: var(--primary);
}

.categories-description {
  font-size: 16px;
  color: #666666;
  margin: 0;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.category-card {
  background: #ffffff;
  padding: 40px 24px;
  border-radius: 8px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e0e0e0;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.category-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  background: #ffe5e5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.category-icon svg {
  width: 32px;
  height: 32px;
}

.category-name {
  font-size: 20px;
  font-weight: 700;
  color: #000000;
  margin: 0 0 12px;
}

.category-description {
  font-size: 14px;
  color: #666666;
  margin: 0 0 20px;
  line-height: 1.5;
}

.category-count {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.05rem;
}

@media (max-width: 1024px) {
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .categories-container {
    padding: 0 32px;
  }
}

@media (max-width: 640px) {
  .categories-section {
    padding: 80px 0;
  }

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

  .categories-container {
    padding: 0 24px;
  }

  .categories-header {
    margin-bottom: 48px;
  }
}

.cta-section {
  background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
  padding: 120px 0;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  text-align: center;
}

.cta-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 48px;
}

.cta-eyebrow {
  display: inline-block;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2rem;
  color: var(--primary);
  margin-bottom: 16px;
  border: 1px solid var(--primary);
  padding: 8px 16px;
}

.cta-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(48px, 7vw, 80px);
  text-transform: uppercase;
  color: #000000;
  margin: 0 0 24px;
  line-height: 1;
  font-weight: 400;
}

.cta-description {
  font-size: 18px;
  color: #666666;
  margin: 0 0 40px;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.btn.ghost-light {
  border: 1px solid #000000;
  background: transparent;
  color: #000000;
}

.btn.ghost-light:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.cta-info {
  display: flex;
  gap: 32px;
  justify-content: center;
  font-size: 14px;
  color: #666666;
  flex-wrap: wrap;
}

.cta-info span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cta-info span::before {
  content: "•";
  color: var(--primary);
  font-weight: bold;
}

.site-footer {
  background: #000000;
  padding: 60px 0 40px;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  color: var(--text);
}

.footer-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 48px;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.footer-logo img {
  height: 48px;
  width: auto;
  display: block;
}

.footer-copyright {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  text-align: center;
}

@media (max-width: 640px) {
  .cta-section {
    padding: 80px 0;
  }

  .cta-container {
    padding: 0 24px;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-buttons .btn {
    width: 100%;
  }

  .cta-info {
    flex-direction: column;
    gap: 16px;
  }

  .site-footer {
    padding: 48px 0 32px;
  }

  .footer-container {
    padding: 0 24px;
  }
}
