/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Helvetica Neue", Arial, sans-serif;
}

body {
  background: #000;
  color: #fff;
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 80px;        /* IMPORTANT */
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0,0,0,0.9);
  z-index: 1000;
}

/* HERO VIDEO */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

.hero-content {
  position: relative;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-content h1 {
  font-size: clamp(36px, 8vw, 72px);
  letter-spacing: 8px;
}

/* CATEGORY SECTION */
.category-section {
  padding: 100px 40px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
}

.category-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.category-card img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  transition: 0.6s ease;
}

.category-card:hover img {
  transform: scale(1.08);
}

.category-title {
  position: absolute;
  bottom: 20px;
  left: 20px;
  letter-spacing: 4px;
  font-size: 18px;
}

/* PRODUCT GRID */
.page {
  padding-top: 140px;
  text-align: center;
  padding-bottom: 60px;
}

.product-section {
  padding: 0 40px 100px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
}

.product-card img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}

.product-info {
  text-align: center;
  padding-top: 15px;
}

/* FOOTER */
.footer {
  padding: 60px 20px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer a {
  color: #fff;
  margin: 0 10px;
  text-decoration: none;
}

/* MOBILE */
@media (max-width: 768px) {
  .header {
    padding: 15px 20px;
  }
}


/* HERO SECTION FIXED */
.hero {
  position: relative;
  height: 100vh;
  margin-top: 80px; /* pushes below fixed header */
  overflow: hidden;
}

.hero video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: -1;
}

.hero-content {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;     /* vertical center */
  justify-content: center; /* horizontal center */
  text-align: center;
}

.hero-content h1 {
  font-size: clamp(36px, 6vw, 72px);
  letter-spacing: 8px;
}