* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
     
    }
    body {
      margin: 0;
      font-family: 'Montserrat', sans-serif;
      background: #fffaf7;
      color: #333;
       overflow-x: hidden;
    }

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #000000;
  padding: 15px 30px;
  position: relative;
  z-index: 1000;

}

.logo img {
  width: 180px;
}

/* Navigation Links */
.nav-links {
  display: flex;
  list-style: none;
  gap: 20px;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: #e0c4f3;
}

/* Hamburger Menu Icon */
.menu-toggle {
  display: none;
  font-size: 28px;
  color: white;
  cursor: pointer;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    flex-direction: column;
    background-color: #000000;
    position: absolute;
    top: 80px;
    right: 0;
    width: 100%;
    display: none;
    text-align: center;
    padding-bottom: 10px;
  }

  .nav-links li {
    padding: 15px 0;
  }

  .nav-links.active {
    display: flex;
  }
    nav ul {
      list-style: none;
      display: flex;
      gap: 30px;
    }
    nav ul li a {
      text-decoration: none;
      font-weight: 600;
      color: #444;
      transition: color 0.3s;
    }
    nav ul li a:hover {
      color: #c78b3f;
    }

}


    header.video-banner {
      position: relative;
      height: 100vh;
      overflow: hidden;
    }
    header.video-banner video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: brightness(0.6);
    }
    header.video-banner .overlay {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      color: white;
      text-align: center;
      z-index: 2;
    }
    .overlay h1 {
      font-size: 3rem;
      font-family: 'Playfair Display';
    }
    .product-section {
      display: flex;
      flex-wrap: wrap;
      padding: 80px 20px 50px;
      margin-top: -80px;
    }

    .products {
      flex: 3;
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      justify-content: center;
    }
    .product-card {
      background: #fff;
      border-radius: 15px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      overflow: hidden;
      width: 280px;
      text-align: center;
      padding: 15px;
      position: relative;
      transition: transform 0.3s ease;
    }
    .product-card:hover {
      transform: translateY(-5px);
    }
    .product-card img {
      width: 100%;
      height: auto;
      border-radius: 10px;
    }
    .product-card h4 {
      font-family: 'Playfair Display';
      margin: 10px 0 5px;
    }
    .product-card p {
      font-size: 0.9rem;
      margin: 5px 0;
    }
    .whatsapp-btn {
      background-color: #25d366;
      color: white;
      border: none;
      padding: 10px 18px;
      font-size: 0.9rem;
      margin-top: 10px;
      border-radius: 25px;
      cursor: pointer;
      transition: background 0.3s;
    }
    .whatsapp-btn:hover {
      background-color: #1ebd5a;
    }
    .price {
  font-size: 16px;
  font-weight: 600;
  color: #c1272d;
  margin: 5px 0;
}
    .wishlist {
      position: absolute;
      top: 15px;
      right: 15px;
      font-size: 1.3rem;
      cursor: pointer;
      color: #ccc;
    }
    .wishlist.saved {
      color: #e91e63;
    }
   
    @media (max-width: 768px) {
      .product-section {
        flex-direction: column;
      }
      .filters {
        max-width: 100%;
        margin: 0 auto 20px;
      }
    }
  .modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  padding: 1rem;
  box-sizing: border-box;
  overflow-y: auto;
}

.modal-content {
  background: #fff;
  padding: 1.5rem;
  width: 100%;
  max-width: 800px;
  border-radius: 12px;
  position: relative;
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  flex-wrap: nowrap;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  align-items: flex-start;
}

.modal-thumbs {
  flex: 0 0 80px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.modal-thumbs img {
  width: 100%;
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: 6px;
}

.modal-thumbs img.active {
  border-color: #e91e63;
}

.modal-main-image {
  flex: 0 0 auto;
}

.modal-main-image img {
  width: 100%;
  max-width: 350px;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

.modal-details {
  flex: 1;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.modal-details h2 {
  margin-top: 0;
  font-size: 1.6rem;
  color: #e91e63;
}

.modal-details p {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.modal-details .whatsapp-btn {
  padding: 10px 18px;
  background-color: #25D366;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.modal-details .whatsapp-btn:hover {
  background-color: #1ebe5e;
}
#modalDesc {
  text-align:justify;
}


.close {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 28px;
  cursor: pointer;
  color: #444;
}

/* Filters Section */
.filters {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.5rem;
  background: #fff;
  border-radius: 12px;
  margin: 1rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  max-width: 220px;
  min-width: 220px;
  height: fit-content;
}

.filters h3 {
  margin-bottom: 1rem;
  font-size: 1.3rem;
  color: #d81b60;
}

.filters label {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
  font-size: 1rem;
  width: 100%;
}

.filters input[type="checkbox"] {
  margin-right: 10px;
  accent-color: #d81b60;
}

.product-section label {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: #333;
  gap: 8px;
}


/* Inputs and Dropdowns */
.product-section input[type="number"],
.product-section select {
  width: 100%;
  padding: 8px 10px;
  font-size: 0.95rem;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  transition: border-color 0.3s;
}


.product-section input[type="number"]:focus,
.product-section select:focus {
  border-color: #d81b60;
  outline: none;
  box-shadow: 0 0 0 2px rgba(216, 27, 96, 0.1);
}

/* Section Labels like "Min Price", etc. */
.product-section .price-range {
  font-weight: 500;
  font-size: 0.95rem;
  color: #333;
  margin-bottom: 5px;
}


/* Reset Button */
.filter-container button {
  background-color: #d81b60;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 10px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  width: 150%;
  cursor: pointer;
  transition: background 0.3s;
}
.filter-container button:hover {
  background-color: #ad164e;
}

@media (max-width: 600px) {
  .product-section {
    max-width: 100%;
    padding: 16px;
  }

}

/* Mobile View */
@media (max-width: 768px) {
  .modal-content {
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    gap: 1rem;
    max-width: 100%; /* Added this line to make modal smaller */
  }

  .modal-main-image img {
    max-width: 200px; /* Slightly smaller image for mobile */
  }

  .modal-thumbs {
    flex-direction: row;
    flex-wrap:wrap;
    justify-content: center;
    gap: 8px;
    flex: none;
  }

  .modal-thumbs img {
    width: 60px;
    height: auto;
  }

  .modal-details {
    width: 100%;
  }


  .filters {
    max-width: 100%;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    padding: 1rem;
  }

  .filters label {
    width: auto;
    margin: 0 1rem 0.5rem 0;
  }
}


/* Tablet View */
@media (min-width: 769px) and (max-width: 1024px) {
  .filters {
    margin: 1rem auto;
  }
}
