* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background-color: #f4f4f4;
}
header {
  background-color: #333;
  color: white;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

nav {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.logo {
  font-size: 24px;
  font-weight: bold;
}

.menu {
  list-style: none;
  display: flex;
}

.menu li {
  margin-left: 20px;
}

.menu li a {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}

.menu li a:hover {
  color: #ff9800;
}

.cart-badge {
  background-color: #ff9800;
  padding: 2px 6px;
  border-radius: 50%;
  font-size: 12px;
  color: black;
  font-weight: bold;
}
.container {
  max-width: 1100px;
  margin: 20px auto;
  padding: 0 20px;
}

.section {
  display: none;
}

.active-section {
  display: block;
}

h2 {
  margin-bottom: 20px;
  border-bottom: 2px solid #ddd;
  padding-bottom: 10px;
}
.hero {
  height: 150vh;
  width: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url('images/hero_section.avif');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  margin-bottom: 40px;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 25px;
}

.shop-now-btn {
  padding: 15px 40px;
  background-color: #ff9800;
  color: white;
  border: none;
  font-size: 1.1rem;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 30px;
  transition: transform 0.3s, background 0.3s;
}

.shop-now-btn:hover {
  background-color: #e68900;
  transform: scale(1.05);
}
.style-grid,
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.style-card,
.product-card {
  background: white;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.style-card img,
.product-card img {
  width: 100%;
  object-fit: cover;
  border-radius: 5px;
}

.style-card img {
  height: 250px;
}

.product-card img {
  height: 200px;
  object-fit: contain;
}
.price {
  color: #27ae60;
  font-weight: bold;
  font-size: 18px;
  margin: 5px 0;
  display: block;
}

button.add-btn,
.remove-btn {
  color: white;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 4px;
}

button.add-btn {
  background-color: #333;
  width: 100%;
}

button.add-btn:hover {
  background-color: #555;
}

.remove-btn {
  background-color: #e74c3c;
  padding: 5px 10px;
}
.cart-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
}

.cart-table th,
.cart-table td {
  padding: 12px;
  border-bottom: 1px solid #ddd;
  text-align: left;
}

.cart-total {
  text-align: right;
  font-size: 20px;
  margin-top: 20px;
  font-weight: bold;
}
@media (max-width: 600px) {
  nav {
    flex-direction: column;
    padding: 10px;
  }

  .menu {
    margin-top: 10px;
  }

  .menu li {
    margin: 0 10px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }
}