
    body {
      font-family: 'Poppins', sans-serif;
      background-color: #f8f9fa;
    }

/* header */
/* === Custom Navbar Styling === */
.custom-navbar {
  background-color: #ffffff !important;
}

.custom-navbar .nav-link {
  color: #333 !important;
  font-weight: 500;
  transition: color 0.3s ease;
}

.custom-navbar .nav-link:hover,
.custom-navbar .nav-link.active {
  color: #007bff !important;
}

.navbar-brand {
  color: #007bff !important;
  font-size: 1.5rem;
}

/* === Footer Styling === */
.custom-footer {
  background-color: #222;
  color: #ccc;
}

.custom-footer h5,
.custom-footer h6 {
  color: #fff;
  margin-bottom: 1rem;
}

.footer-link {
  color: #bbb;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #007bff;
}

.social-links a {
  display: inline-block;
  margin-right: 10px;
  color: #bbb;
  font-size: 1.25rem;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #007bff;
}

/* === Responsive Adjustments === */
@media (max-width: 767px) {
  .navbar-brand {
    font-size: 1.25rem;
  }
  .custom-footer {
    text-align: center;
  }
  .social-links {
    margin-top: 1rem;
  }
}

/* header */

    .product-section {
      display: flex;
      flex-wrap: wrap;
      gap: 40px;
      padding: 40px;
      background-color: #fff;
      border-radius: 12px;
      margin: 40px auto;
      max-width: 1100px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    }

    /* Left Image Section */
    .image-gallery {
      flex: 1;
      min-width: 250px;
    }

    .main-image {
      width: 100%;
      border-radius: 10px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }

    .thumbs {
      display: flex;
      gap: 10px;
      margin-top: 15px;
    }

    .thumbs img {
      width: 60px;
      height: 60px;
      object-fit: cover;
      border-radius: 6px;
      border: 1px solid transparent;
      cursor: pointer;
      transition: 0.2s;
    }

    .thumbs img.active,
    .thumbs img:hover {
      border: 2px solid #e91e63;
    }

    /* Right Content */
    .product-info {
      flex: 1.2;
      min-width: 300px;
    }

    .product-title {
      font-size: 1.8rem;
      font-weight: 600;
      margin-bottom: 10px;
    }

    .tagline {
      color: #555;
      font-size: 1rem;
      margin-bottom: 20px;
    }

    .price-section {
      margin: 15px 0;
    }

    .price-section .discounted {
      font-size: 1.8rem;
      font-weight: 600;
      color: #e91e63;
    }

    .price-section .original {
      text-decoration: line-through;
      color: #888;
      margin-left: 10px;
      font-size: 1.1rem;
    }

    .price-section .off {
      color: #4caf50;
      margin-left: 10px;
      font-weight: 500;
    }

    /* Size & Quantity */
    .sizes {
      margin: 20px 0;
    }

    .sizes label {
      margin-right: 12px;
      border: 1px solid #ddd;
      padding: 6px 14px;
      border-radius: 20px;
      cursor: pointer;
      transition: 0.2s;
    }

    .sizes input[type="radio"] {
      display: none;
    }

    .sizes input[type="radio"]:checked + label {
      background-color: #e91e63;
      color: white;
      border-color: #e91e63;
    }

    .quantity-box {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-top: 15px;
    }

    .quantity-box input {
      width: 70px;
      text-align: center;
      border-radius: 8px;
      border: 1px solid #ccc;
      padding: 4px;
    }

    .action-buttons {
      margin-top: 25px;
      display: flex;
      gap: 10px;
    }

    .btn-cart {
      background-color: #ff9f00;
      color: white;
      font-weight: 600;
      border: none;
      padding: 10px 20px;
      border-radius: 6px;
    }

    .btn-buy {
      background-color: #fb641b;
      color: white;
      font-weight: 600;
      border: none;
      padding: 10px 20px;
      border-radius: 6px;
    }

    /* Description Section */
    .detail-section {
      background-color: #fff;
      margin: 30px auto;
      padding: 40px;
      max-width: 1100px;
      border-radius: 12px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    }

    .detail-section h3 {
      font-weight: 600;
      margin-bottom: 20px;
    }

    .notes {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      margin-bottom: 20px;
    }

    .note-box {
      flex: 1;
      min-width: 250px;
      background: #f9f9f9;
      border-radius: 8px;
      padding: 15px;
    }

    .note-box h5 {
      font-weight: 600;
      color: #e91e63;
      margin-bottom: 10px;
    }

    .note-box p {
      color: #555;
      margin: 0;
    }

    @media(max-width:768px){
      .product-section{
        padding:20px;
        margin:20px;
      }
      .search-bar input{
        width:150px;
      }
      .price-section .discounted{
        font-size:1.5rem;
      }
    }




    /* product card */
    .product-section-grid {
  text-align: center;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;

}

.product-section-grid h2 {
  font-size: 28px;
  color: #2c2c2c;
  margin-bottom: 20px;
}

.product-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  width: 280px;
  margin: 0 auto;
  text-align: left;
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-image {
  width: 100%;
  height: 280px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-info {
  padding: 16px;
}

.product-info h3 {
  font-size: 18px;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.product-info p {
  color: #555;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 12px;
}

.product-price {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  margin-bottom: 10px;
}

.new-price {
  font-weight: 600;
  color: #1a1a1a;
}

.old-price {
  text-decoration: line-through;
  color: #999;
}

.discount {
  color: #2e8b57;
  font-weight: 500;
}

.add-btn {
  background-color: #e5efff;
  color: #000;
  border: none;
  font-size: 16px;
  border-radius: 20px;
  /* width: 36px; */
  height: 36px;
  cursor: pointer;
  transition: background-color 0.3s;
  padding: 5px 10px;
}

.add-btn:hover {
  background-color: #c7dbff;
}





#productCarousel img {
  height: 390px;
  object-fit: cover;
  border-radius: 8px;
}

@media (max-width: 768px) {
  #productCarousel img {
    height: 280px;
  }
}
#about .primary-color {
  color: #ffb400; /* Customize to your theme color */
}

#about .primary-bg {
  background-color: #ffb400;
  border: none;
}

#about .primary-bg:hover {
  background-color: #e6a000;
}
