/* === Base Reset === */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background-color: #0a0a0a; /* matte black */
  color: #f5f5f5; /* off-white */
  line-height: 1.6;
}

a {
  color: #f5f5f5;
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover {
  color: #ff4d00; /* orange accent */
}

/* === Layout === */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
}

/* === Header === */
.site-header {
  background: #0a0a0a;
  border-bottom: 1px solid #2a2a2a;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  flex-wrap: wrap;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 6px rgba(0,0,0,.6);
}

.site-header .logo {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #ff4d00;
}

.main-nav {
  display: flex;
  gap: 1.5rem;
}
.main-nav a {
  font-weight: 600;
  text-transform: uppercase;
  padding-bottom: 3px;
  position: relative;
}
.main-nav a:hover {
  color: #ff4d00;
}
.main-nav a.is-active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: #ff4d00;
  border-radius: 2px;
}

/* === Footer === */
.site-footer {
  background: #0a0a0a;
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.9rem;
  border-top: 1px solid #2a2a2a;
  color: #999;
}

/* === HERO VIDEO === */
.hero-video {
  position: relative;
  width: 100%;
  background: #000;
  overflow: hidden;
  isolation: isolate;
}

.hero-video video {
  display: block;
  width: 100%;
  height: 100vh;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to bottom, rgba(0,0,0,.4), rgba(0,0,0,.9)),
    radial-gradient(80% 80% at 50% 50%, rgba(0,0,0,.2), rgba(0,0,0,.7));
  pointer-events: none;
}

.hero-content {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  z-index: 2;
  text-align: center;
  opacity: 0;
  transition: opacity .7s ease, transform .7s ease;
  padding: 0 5vw;
}
.hero-content.show {
  opacity: 1;
}

.hero-title {
  font: 900 clamp(28px,6vw,68px)/1.1 'Oswald', sans-serif;
  color: #fff;
  letter-spacing: .08em;
  text-shadow: 0 6px 24px rgba(0,0,0,.7);
  margin: 0 0 20px 0;
  text-transform: uppercase;
}

/* Hero button */
.hero-btn {
  display: inline-block;
  padding: .9em 1.7em;
  font-size: clamp(14px,1.2vw,18px);
  font-weight: 700;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  color: #fff;
  background-color: #ff4d00;
  border-radius: 6px;
  text-decoration: none;
  letter-spacing: 1px;
  box-shadow: 0 10px 24px rgba(255,77,0,.25);
  transition: all .2s ease;
}
.hero-btn:hover {
  background-color: #ff6622;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(255,77,0,.35);
}
.hero-btn:active {
  transform: translateY(0);
  box-shadow: 0 8px 18px rgba(255,77,0,.2);
}

/* === Below Hero Section === */
.below-hero {
  padding: 3rem 1rem;
  text-align: center;
  background-color: #141414;
}

.btn.big {
  padding: 1rem 2.5rem;
  font-size: 1.3rem;
  background: #ff4d00;
  color: #fff;
  font-weight: bold;
  border-radius: 6px;
  text-transform: uppercase;
  font-family: 'Oswald', sans-serif;
  transition: all 0.3s ease;
}
.btn.big:hover {
  background: #ff6622;
  transform: translateY(-2px);
}

/* === Shop Grid === */
.shop-grid h2 {
  margin-bottom: 2rem;
  font-size: 2.2rem;
  text-align: center;
  text-transform: uppercase;
  font-family: 'Oswald', sans-serif;
  letter-spacing: .06em;
}

.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.product-card {
  background: #141414;
  border: 1px solid #2a2a2a;
  padding: 1rem;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.25s ease, filter 0.3s ease;
}
.product-card:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
}
.product-card img,
.product-card video {
  max-width: 100%;
  border-radius: 6px;
  display: block;
  background: #000;
}
.product-card h3 {
  margin: 1rem 0 0.5rem;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  font-weight: 700;
}
.product-card p {
  margin-bottom: 1rem;
  font-weight: bold;
  color: #ff4d00;
}

/* === Product Detail Page === */
.product-detail {
  padding: 3rem 0;
}
.product-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: flex-start;
}
.product-img img {
  max-width: 100%;
  border-radius: 8px;
  width: 100%;
  max-width: 500px;
}
.product-info {
  flex: 1;
}
.product-info h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
}
.product-info .price {
  font-size: 1.6rem;
  margin: 0.5rem 0 1rem;
  font-weight: bold;
  color: #ff4d00;
}
.product-info select {
  padding: 0.5rem;
  font-size: 1rem;
  border-radius: 5px;
  border: none;
  margin-top: 1rem;
}

/* === Responsive Fixes === */
@media (max-width: 768px) {
  .hero-btn {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    bottom: 30px;
  }
  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .main-nav {
    width: 100%;
    flex-direction: column;
    margin-top: 1rem;
  }
  .main-nav a {
    margin: 0.5rem 0;
  }
  .product-wrapper {
    flex-direction: column;
  }
}
@media (max-width: 480px) {
  .hero-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.95rem;
    bottom: 25px;
  }
  .site-header .logo {
    font-size: 1.6rem;
  }
}
