body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  background-color: #fff;
  color: #000;
  line-height: 1.6;
}
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 80px;
  box-sizing: border-box;
  color: #fff;
}

.back-vid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.6; /* optional for contrast */
}

.hero-text {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.hero-text h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #ffffff;
}

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #dddddd;
}

.cta-btn {
  background-color: #ff6b00;
  color: #fff;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.cta-btn:hover {
  background-color: #e55a00;
}

.hero-image {
  position: relative;
  z-index: 2;
}

.hero-image img {
  max-width: 450px;
  border-radius: 15px;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #ffffffcc;
  backdrop-filter: blur(10px);
  padding: 15px 60px;
  position: sticky;
  top: 0;
  z-index: 10;
}

.navbar .logo {
  font-family: "Montserrat", sans-serif;
  font-size: 30px;
  font-weight: 600;
  color: #ff6b00;
}

.navbar nav a {
  margin: 0 30px;
  color: #000;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.navbar nav a:hover {
  color: #ff6b00;
}

.cart-icon {
  font-size: 30px;
  position: relative;
  cursor: pointer;
}

.hero {
  display: flex;
  justify-content: space-between;
  padding: 120px 80px;
  background-color: #000;
  color: #fff;
  flex-wrap: wrap;
}

.hero-text h1 {
  font-size: 60px;
  font-family: "Montserrat", sans-serif;
}

.hero-text p {
  font-size: 24px;
  margin-top: 20px;
  font-weight: 400;
}

.hero-image img {
  max-width: 600px;
  height: auto;
  border-radius: 25px;
}

.cta-btn {
  margin-top: 40px;
  background-color: #ff6b00;
  color: #fff;
  padding: 20px 40px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  text-transform: uppercase;
  transition: background-color 0.3s ease;
}

.cta-btn:hover {
  background-color: #e65c00;
}
.filter-section {
  padding: 60px 80px;
  background-color: #0f0f0f;
  color: #ffffff;
  text-align: center;
}

.filter-section h2 {
  font-size: 36px;
  margin-bottom: 30px;
  color: #ff6b00;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.filters select,
.filters input {
  padding: 12px 20px;
  font-size: 16px;
  border-radius: 8px;
  border: 1px solid #444;
  background-color: #1c1c1c;
  color: #fff;
  outline: none;
}

.filters select:focus,
.filters input:focus {
  border-color: #ff6b00;
}

.clear-filter {
  background-color: #ff6b00;
  color: #fff;
  border: none;
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.clear-filter:hover {
  background-color: #e65c00;
}

.featured-products {
  text-align: center;
  padding: 80px 40px;
  background-color: #f4f4f4;
}

.featured-products h2 {
  font-size: 50px;
  margin-bottom: 50px;
  font-weight: 600;
}

.product-card {
  display: inline-block;
  width: 320px;
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin: 30px;
  text-align: left;
  padding: 30px;
  transition: transform 0.3s ease;
}

.product-card img {
  width: 100%;
  border-radius: 15px;
}

.product-card h3 {
  margin: 5px 0;
  font-size: 26px;
  font-weight: 600;
}

.product-card p {
  color: #777;
  font-size: 18px;
  margin-top: 5px;
  margin-bottom: 5px;
}

.buy-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 25px;
  background-color: #ff6b00;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.buy-btn:hover {
  background-color: #e65c00;
}

.add-cart {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 25px;
  background-color: #08d565fa;
  color: #000000;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.add-cart:hover {
  background-color: #000000;
  color: white;
}

.product-card:hover {
  transform: translateY(-15px);
}

.testimonials {
  text-align: center;
  background-color: #000;
  color: #fff;
  padding: 80px 40px;
}

.testimonials h2 {
  font-size: 50px;
  margin-bottom: 60px;
  font-weight: 600;
}

.testimonial-card {
  background-color: #222;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin: 20px;
  max-width: 300px;
  display: inline-block;
  color: #fff;
  text-align: left;
  font-style: italic;
}

.testimonial-card p {
  font-size: 18px;
  margin-bottom: 10px;
}

.testimonial-card strong {
  font-weight: 600;
}

.about {
  padding: 80px 60px;
  background-color: #fff;
  color: #000;
  text-align: center;
}

.about h2 {
  font-size: 50px;
  margin-bottom: 40px;
  font-weight: 600;
}

.about p {
  font-size: 20px;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.8;
}

.footer {
  background-color: #000;
  color: #fff;
  text-align: center;
  padding: 40px 0;
}

.footer-logo {
  font-family: "Montserrat", sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: #ff6b00;
  margin-bottom: 20px;
}

.footer-links a {
  margin: 0 20px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.footer-links a:hover {
  color: #ff6b00;
}

.footer p {
  margin-top: 20px;
  font-size: 16px;
}

.cart-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: 350px;
  height: 100%;
  background-color: #000000;
  color: #fff;
  padding: 40px;
  box-shadow: -5px 0 15px #0000004d;
  display: none;
}

@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero-image {
    margin-top: 30px;
  }

  .product-card {
    width: 100%;
  }

  .testimonial-card {
    width: 90%;
  }

  .navbar {
    flex-direction: column;
    padding: 20px;
  }

  .navbar nav a {
    margin: 10px 0;
  }

  .about p {
    padding: 0 20px;
  }
}
