/* GLOBAL */
body {
  margin: 0;
  padding: 0;
  background: black;
  color: white;
  font-family: Arial, sans-serif;
}

/* HEADER */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 60px;
  position: fixed;
  width: 94%;
  top: 0;
  background: black;
  z-index: 9999;
}

.logo-link {
  text-decoration: none;
  color: white;
}

.logo-link h1 {
  margin: 0;
  font-size: 32px;
  letter-spacing: 3px;
  text-decoration: none;
}

nav a {
  margin-left: 25px;
  text-decoration: none;
  color: white;
  font-size: 16px;
  letter-spacing: 1px;
}

nav a:hover,
nav a.active {
  opacity: 0.6;
}

/* HERO */
.hero {
  height: 55vh;
  background: url("https://via.placeholder.com/1400x700") center/cover no-repeat;
  display: flex;
  align-items: center;
  padding-left: 60px;
  margin-top: 120px;
}

.hero-content h2 {
  font-size: 60px;
  margin: 0;
}

.hero-content p {
  opacity: 0.8;
  margin-top: 10px;
}

/* PRODUCTS */
.products {
  padding: 80px 60px;
}

.products h2 {
  font-size: 40px;
  margin-bottom: 40px;
}

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

.product img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 4px;
}

.product h3 {
  margin: 15px 0 5px;
  font-size: 22px;
}

.price {
  opacity: 0.7;
  margin-bottom: 10px;
}

.size-select {
  width: 100%;
  padding: 8px;
  margin-bottom: 12px;
  background: #111;
  color: white;
  border: 1px solid #333;
}

.add-to-cart {
  width: 100%;
  padding: 12px;
  background: white;
  color: black;
  border: none;
  cursor: pointer;
  font-weight: bold;
  letter-spacing: 1px;
  transition: 0.3s ease;
}

.add-to-cart:hover {
  background: #d1d1d1;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 40px;
  opacity: 0.6;
}
