* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
}

body {
  background: #121212;
  color: #ffffff;
  line-height: 1.6;
}

/* Navbar */
.navbar {
  background: #000;
  padding: 1rem 2rem;
  color: white;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

.nav-links li a:hover {
  color: #888;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  text-decoration: none;
}


/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.product-card {
  background: #1e1e1e;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(0,0,0,0.2);
  text-align: center;
  padding: 1rem;
}

.product-card img {
  max-width: 100%;
  height: auto;
  margin-bottom: 1rem;
  border-radius: 8px;
}

.product-card h2 {
  margin-bottom: 0.25rem;
  color: white;
  font-size: 1.25rem;
}

.product-card .price {
  font-size: 0.95rem;
  color: #ccc;
  margin: 0;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.25rem;
  background: #0070f3;
  color: white;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s;
}

.btn:hover {
  background: #005dc1;
}

/* Footer */
footer {
  background: #111;
  color: white;
  padding: 2rem;
  text-align: center;
}

footer section {
  margin-bottom: 1rem;
}

/* Product Detail Page */
.product-detail-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.product-image {
  flex: 1 1 400px;
  text-align: center;
}

.product-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.product-info {
  flex: 1 1 500px;
}

.product-info h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: white;
}

.product-info .description {
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: #ddd;
}

.product-info select {
  padding: 0.6rem 1rem;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  width: 100%;
  max-width: 300px;
  background-color: #1e1e1e;
  color: white;
  border: 1px solid #333;
  border-radius: 6px;
}



.hero-section {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #0070f3;
  color: white;
  padding: 2rem 4rem;
  height: 400px;
  width: 100%;
  box-sizing: border-box;
  gap: 2rem;
}

.hero-text,
.hero-video {
  flex: 1;
  max-width: 600px;
}

.hero-text h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: white;
}

.hero-text p {
  font-size: 1.25rem;
  line-height: 1.6;
  color: #f0f0f0;
}

.hero-video {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-video video {
  max-width: 100%;
  max-height: 350px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

a {
  text-decoration: none;
  color: inherit;
}

a:visited {
  text-decoration: none;
  color: inherit;
}

/* Responsive */
@media (max-width: 768px) {

  .product-detail-container {
    flex-direction: column;
    text-align: center;
  }

  .product-info select {
    margin: 1rem auto;
  }
  



  .hero-section {
    flex-direction: column;
    height: auto;
    padding: 2rem;
    text-align: center;
  }

  .hero-video video {
    max-height: 400px;
  }


  .product-card h2 {
    font-size: 1rem;
  }
  .product-grid {
  grid-template-columns: 1fr;
}
}