@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

body {
    padding-top: 100px; /* Adjusted for banner + navbar */
    margin: 0;
    padding: 0;
font-family: "Inter", sans-serif !important;

  }

.image-banner {
    background: url('images/fashion-banner.jpg') no-repeat center center;
    background-size: cover;
    height: 60vh;
    padding: 60px 20px;
    color: #fff;
    position: relative;
  }
  
  .image-banner::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }
  
  .image-banner .container {
    position: relative;
    z-index: 2;
  }
  
  .image-banner h2 {
    font-size: 2.5rem;
  }
  
  .image-banner p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .image-banner {
      height: auto;
      padding: 60px 20px;
      background-size: contain;
      background-position: top center;
    }
  
    .image-banner h2 {
      font-size: 1.6rem;
    }
  
    .image-banner p {
      font-size: 1rem;
    }
  }
  


  .card-img-top {
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
  }
  
  .badge {
    font-size: 0.75rem;
    padding: 6px 10px;
    border-radius: 20px;
  }
  
  .form-select-sm {
    min-width: 130px;
  }
  @media (max-width: 768px) {
    .offcanvas .offcanvas-title {
      font-size: 1rem;
    }
  
    .offcanvas-body select {
      font-size: 0.9rem;
    }
  
    .btn.btn-dark.btn-sm {
      font-size: 0.9rem;
    }
  }
    
  @media (max-width: 768px) {
    .product-img {
      object-fit: cover;
    }
  }

  .wishlist-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: white;
  border: none;
  border-radius: 50%;
  padding: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.wishlist-btn i {
  color: #ff009c;
  font-size: 18px;
  transition: color 0.3s ease;
}

.wishlist-btn:hover {
  background-color: #e98bc5;
}

.wishlist-btn:hover i {
  color: white;
}

  