 /* Floating WhatsApp Button */
    .whatsapp-float {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #25d366;
      border-radius: 50%;
      padding: 10px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.2);
      z-index: 1000;
      transition: all 0.3s ease;
    }

    .whatsapp-float:hover {
      transform: scale(1.1);
      box-shadow: 0 6px 15px rgba(0,0,0,0.3);
    }

    .whatsapp-icon {
      width: 45px;
      height: 45px;
      display: block;
    }

 

/* Style the dropdown itself */
.product-info .qty {
  padding: 6px 12px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: rgba(0,0,0,0.15); /* darker dropdown background */
  font-size: 0.95rem;
  font-weight: 500;
  color: #fff; /* white text */
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Hover and focus effects */
.product-info .qty:hover,
.product-info .qty:focus {
  border-color: var(--accent);
  box-shadow: 0 0 6px rgba(0,0,0,0.15);
  outline: none;
}

/* Style the dropdown options */
.product-info .qty option {
  background-color: black; /* black background */
  color: #fff;            /* white text */
  font-size: 0.95rem;
  padding: 6px;
}

.product-info .order-btn {
  display: inline-block;
  margin-top: 8px;
  color: #ffd166;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.product-info .order-btn:hover {
  color: #ffd166; /* brighter gold on hover */
  text-decoration: underline;
}
/* Rating Stars */
.stars {
  display: flex;
  gap: 10px;
  font-size: 26px;
  color: var(white); /* subtle default */
  cursor: pointer;
  transition: color 0.3s ease;
  padding: 1px 0;
}

.stars span {
  transition: color 0.3s ease, transform 0.2s ease;
}

.stars span:hover {
  color: var(--accent); /* hover color from your theme */
  transform: scale(1.2);
}

.stars span.active {
  color: gold;
}




/* .hero {
  min-height: 100vh;
  width: 100%;
  background-image: url('../images/gallery/background-1.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;
}


.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.hero-content {
  position: relative;
  text-align: center;
  color: #fff;
  padding: 20px;
  max-width: 90%;
}

.hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 16px;
}

.hero-content p {
  font-size: clamp(1rem, 3.5vw, 1.2rem);
  line-height: 1.6;
}


@media (max-width: 768px) {
  .hero {
    background-size: contain;
    background-color: #000; 
  }
}
 */

 .hero {
  min-height: 100vh;
  width: 100%;
  background-image: url('../images/gallery/home.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;
}


.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.hero-content {
  position: relative;
  text-align: center;
  color: #fff;
  padding: 20px;
  max-width: 90%;
}

.hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 16px;
}

.hero-content p {
  font-size: clamp(1rem, 3.5vw, 1.2rem);
  line-height: 1.6;
}


/* @media (max-width: 768px) {
  .hero {
    min-height: 0vh;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-content {
    padding: 0;
    max-width: 80%;
    text-align: center;
  }
  
} */

@media (max-width: 768px) {
  .hero {
    min-height: 85vh;          /* 🔥 KEY FIX */
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    
  }

  .hero-content {
    max-width: 85%;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 2.5rem;
    line-height: 1.25;
  }

  .hero-content p {
    font-size: 1.85rem;
    line-height: 1.4;
  }
}

/* Scroll To Top Button */
#scrollTopBtn {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #000;
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

#scrollTopBtn:hover {
  background: #4ca998; /* match your brand color if needed */
  transform: translateY(-3px);
}

/* Show button */
#scrollTopBtn.show {
  opacity: 1;
  visibility: visible;
}


/* .cart {
    margin-top:20px; 
    padding:10px; 
    border:2px solid green;
  }
  .cart ul { list-style:none; padding:0; }
  .cart ul li { margin:5px 0; }
  .checkout-btn {
    background:green; 
    color:white; 
    padding:10px; 
    text-decoration:none; 
    display:inline-block;
    margin-top:10px;
  } */

  
  /* .cart-icon {
    position: relative;
    display: inline-block;
    float: right;
    margin-left: 20px;
    cursor: pointer;
  }
  .cart-icon img {
    width: 40px;
    height: 40px;
  }
  #cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: red;
    color: white;
    border-radius: 50%;
    padding: 3px 7px;
    font-size: 14px;
  } */

  .cart-icon {
  position: relative;
  cursor: pointer;
  float: right;
  font-size: 30px;
  color: #333;
}



#cart-count {
  position: absolute;
  top: -8px;
  right: -10px;
  background: red;
  color: white;
  border-radius: 50%;
  padding: 2px 6px;
  font-size: 12px;
}


/* .cart-panel {
  display: none; 
  position: absolute;
  right: 0;
  top: 40px; 
  width: 280px;
  background: #fff;
  border: 2px solid #ccc;
  padding: 15px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  z-index: 1000;
}
.cart-panel ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cart-panel ul li {
  margin: 5px 0;
  display: flex;
  justify-content: space-between;
}
.checkout-btn {
  background: green;
  color: white;
  padding: 10px;
  border: none;
  cursor: pointer;
  margin-top: 10px;
  width: 100%;
}
 */
 

/* Popup panel */
.cart-panel {
  display: none;
  position: fixed;
  right: 20px;
  top: 70px;
  width: 300px;
  background: black;
  border: 2px solid #ccc;
  padding: 15px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  z-index: 1000;
}
.cart-panel ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cart-panel ul li {
  margin: 5px 0;
}
.checkout-btn {
  background: green;
  color: white;
  padding: 10px;
  border: none;
  cursor: pointer;
  margin-top: 10px;
  width: 100%;
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.close-btn {
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
}


.qty-selector {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #333;        /* light background */
  border: 2px solid #333;     /* subtle border */
  border-radius: 6px;         /* rounded corners */
  padding: 5px 10px;

}

.qty-selector button {
  background: #4ca998;        /* vibrant orange/red */
  color: white;                /* white text */
  border: none;
  border-radius: 4px;
  width: 25px;
  height: 25px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.qty-selector button:hover {
  background: #4ca998;        /* darker shade on hover */
}

.qty-selector .qty-value {
  min-width: 24px;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  color: white;
}







