/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Quattrocento Sans', sans-serif;
  line-height: 1.6;
  color: #333;
  background: #fff;
}



.hamburger {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}
.product-wrapper{
  display:flex;
  gap:30px;
  align-items:flex-start;
  padding:20px;
  margin-left: 226px;
}

/* Left thumbnails */
/* Container for main image + thumbnails */
/* Desktop: thumbs left */
.product-image-wrapper {
    display: flex;
    flex-direction: row; /* thumbs left, main image right */
    gap: 15px;
    align-items: flex-start;
}
/* Mobile: thumbs below main image */
/* Mobile: thumbs below main image */
@media (max-width: 768px) {
    .product-image-wrapper {
        flex-direction: column !important; /* ensure column on mobile */
        align-items: center !important;
    }

    .zoom-container {
        width: 100% !important;
        height: auto !important;
    }

    .zoom-container img {
        width: 100% !important;
        height: auto !important;
    }

    .thumb-box {
        display: flex !important;
        flex-direction: row !important;    /* horizontal thumbnails */
        margin-top: 10px !important;       /* space below main image */
        gap: 10px !important;
        justify-content: center !important;
        order: 2 !important;               /* push below main image */
    }

    .zoom-container {
        order: 1 !important;               /* main image first */
    }

    #lens {
        display: none !important; /* hide lens on mobile */
    }
}




/* Thumbnails stacked vertically */
.thumb-box {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.thumb-box img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border: 2px solid transparent;
    cursor: pointer;
}

.thumb-box img.active {
    border: 2px solid #000;
}

/* Main Image */
.zoom-container {
    width: 450px;
    height: 450px;
    overflow: hidden;
    position: relative;
}

.zoom-container img {
    width: 100% !important;
    height: 100%;
    object-fit: contain;
    cursor: crosshair;
}



/* lens */
/* #lens{
  position:absolute;
  width:150px;
  height:150px;
  background:rgba(255,255,255,.2);
  border:1px solid #aaa;
  display:none;
  pointer-events:none;
  backdrop-filter: blur(3px);
} */

/* Right info */
.info-box{
  margin-top: 71px;
  width:280px;
  display:flex;
  flex-direction:column;
  gap:9px;
  margin-left: 61px;
}

.qty-box{
  display:flex;
  gap:10px;
}

.qty-box button{
  width:35px;
  height:35px;
  font-size:18px;
  cursor:pointer;
}

.qty-box input{
  width:50px;
  text-align:center;
}

 
@media(max-width:768px){
  .product-wrapper{
    flex-direction:column;
    align-items:center;
    margin-left: 0px;
  }
 
  .info-box {
    margin-left: 0px;
  }
  .zoom-container{
    width:100%;
    height:auto;
  }
  .thumb-box {
    display: flex;
    flex-direction: row;
    gap: 10px;
}
}

/* Red ml Size Text */
.size {
       position: relative;
    padding: 7px 10px;
    display: block;
    margin-left: 5px;
    background: #DBACAC;
    color: black;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    width: 65px;
    margin-top: 9px;
    border-radius: 7px;
    top: -3px;
}
.ml {
       position: relative;
    padding: 7px 10px;
    /* display: block; */
    /* margin-left: 5px; */
    background: #DBACAC;
    color: black;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    /* width: 62px; */
    /* margin-top: 9px; */
    border-radius: 7px;
    top: -3px;
}
.product-card img {
     object-fit: cover;
    width: 185px;
    height: 185px;
    margin-left: 36px;
}

@media (max-width: 992px) {
 
  
.detail-image {
    display: none;
  }
.product-card img {
    margin-left: 53px !important;
  }
}

@media (max-width: 600px) {
 .detail-content {
    margin-top: -54px;
  }
  /* #prodName {
    margin-left: -22px;
  } */
 .detail-image {
    display: none;
  }
  .product-card {
    /* position: relative; */
    margin-top: 0px !important;
  }
  .product-card img {
  margin-left: 53px !important;
  }
}
/* Blue Background Sub Line */
.sub-line {
    font-weight: normal;
    background: #dbacac;
    color: #000000;
    padding: 0px 12px !important;
    border-radius: 5px;
    /* font-size: 11px !important; */
    /* width: fit-content; */
    margin: 4px -3px;
    font-size: 16px;}


#prodName {
  font-size: 27px;
  width: 340px;
  height: auto;
  /* height: 78px !important; */
}

#price {
  font-size: 27px;
  /* font-weight: bold; */
}
.stock {
  /* background-color: #efefef;  */
    padding: 2px 3px;
    width: 101px;
    font-size: 15px;
    border-radius: 8px;
    font-weight: bold;}
.total {
    font-size: 24px;
    /* font-weight: bold; */
}


















/* Highlights */
.highlights {
  display: flex;
  justify-content: space-around;
  text-align: center;
  padding: 30px 10%;
  background: #f9f9f9;
}

.highlight i {
  font-size: 2rem;
  color: #b75a00;
  margin-bottom: 10px;
}

  .highlights {
  display: flex;
  flex-wrap: wrap;      /* row break allow karega */
  justify-content: center;
  gap: 20px;
  text-align: center;
  padding: 30px 0%;
  font-size: 14px;
  background: #f9f9f9;
}

.highlights > div {
  flex: 0 1 20%; 
}

/* Mobile: 2 per row */
@media (max-width: 768px) {
  .highlights > div {
    flex: 0 1 44%;  /* 2 ek row me */
  }
}

/* Featured Product Banner */
.featured-product {
  padding: 60px 10%;
  background: #fff8f5;
}
.btn {
    cursor: pointer;
}

.product-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.product-banner img {
  width: 392px;
  max-width: 75%;
  border-radius: 15px;
  /* box-shadow: 0 6px 15px rgba(0,0,0,0.15); */
  margin-right: 110px;
}

.product-info {
  max-width: 500px;
}

.product-info h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.product-info .price {
  font-size: 1.5rem;
  color: #ff6f61;
  font-weight: bold;
  margin-bottom: 15px;
}

.product-info .desc {
  margin-bottom: 20px;
  font-size: 1rem;
  color: #0e0e0e;
}

.product-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn {
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

/* ✅ Base BTN */
.btn {
  position: relative;
  padding: 6px 18px;
  border-radius: 7px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
  background: #f0f0f0;
  color: #000000;
  --border-width: 3px;
  --border-radius: 8px;
}

/* ✅ WhatsApp Btn */
.btn.whatsapp {
 background: #ffffff;
    color: #000000;
    border-radius: 9px;
    border: 1px solid #b75a00;
}

.btn { 
  background: #830101;
  color: #fff;
} 

.btn:hover { 
  background: #e73636;
  color: #ffffff;
} 

.btn.whatsapp:hover .fa-whatsapp {
  color: #fff !important;
}
.cta .btn:hover .fa-cart-plus:before {
  color: #fff !important;
}
@media (max-width: 768px) {
    .product-buttons {
        margin-left: 31px;
    }
    .product-banner img {
     margin-right: 0px;
     max-width: 335px;
    }
    .featured-product {
        padding: 0px 0px;
    }
    }
/* Responsive */
@media (max-width: 768px) {
  .product-banner {
    flex-direction: column;
    text-align: center;
  }
}



/* Product Detail Section */
.product-detail {
  padding: 70px 12%;
  background: #fdfdfd;
}

.detail-wrapper {
  display: flex;
  align-items: center;
  gap: 50px;
}

/* Left Image */
.detail-image img {
  width: 100%;
  max-width: 380px;
  border-radius: 10px;
}

/* Right Content */
.product-detail h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #333;
}

.product-detail p {
  font-size: 1rem;
  color: #0e0e0e;
  line-height: 1.7;
  margin-bottom: 25px;
}

.product-detail ul {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.product-detail ul li {
  font-size: 1rem;
  color: #0e0e0e;
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
  line-height: 1.6;
}

.product-detail ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #b75a00;
  font-weight: bold;
}

/* Button */
.product-detail .btn {
  background: white;
  color: black;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
  display: inline-block;
  border:1px solid #ff5183;
}

.product-detail .btn:hover {
   background: black;
  color: white;
}

/* Responsive */
@media (max-width: 768px) {
  .detail-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .detail-image img {
    max-width: 100%;
  }

  .product-detail {
    padding: 50px 8%;
  }

  .product-detail ul li {
    padding-left: 25px;
    text-align: left;
  }
  .product-detail h2 {
    font-size: 23px;
  }
}

/* Reviews Section */
.reviews {
  padding: 60px 10%;
  background: #fff8f5;
}

.reviews-header {
  text-align: center;
  margin-bottom: 30px;
}

.reviews-header h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #333;
}

.rating-summary {
  font-size: 1.1rem;
  color: #666;
}

.review-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.review-card {
  background: #fff;
  border: 1px solid #eee;
  padding: 20px;
  border-radius: 10px;
  transition: 0.3s;
}

.review-card:hover {
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.review-top {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.review-avatar {
  width: 105px;
  height: 105px;
  border-radius: 50%;
  margin-right: 12px;
}

.review-top h4 {
  margin: 0;
  font-size: 1rem;
  font-weight: bold;
  color: #333;
}

.review-top span {
  font-size: 0.9rem;
  color: #f3b311;
}

.date {
  font-size: 0.8rem;
  color: #888;
}

.review-text {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

/* Write Review */


/* .write-review {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  border: 1px solid #eee;
  max-width: 600px;
  margin: 0 auto;
}

.write-review h3 {
  margin-bottom: 15px;
  color: #333;
}

.write-review form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.write-review input,
.write-review select,
.write-review textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

.write-review textarea {
  resize: vertical;
  min-height: 100px;
}

.write-review button {
  padding: 12px 20px;
  border: none;
  border-radius: 5px;   
  background: #000000;
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 10px rgba(0,0,0,0.2);
}

.write-review button:hover {
   background: #b75a00;   
  color: #000;
  transform: translateY(-2px); 
  box-shadow: 0 8px 15px rgba(0,0,0,0.25);
}

.write-review input:focus,
.write-review select:focus,
.write-review textarea:focus {
  border-color: #b75a00 !important;
  box-shadow: 0 0 6px rgba(255, 111, 97, 0.3) !important;
  outline: none !important; 
} */

/* Responsive */
@media (max-width: 768px) {
  .reviews {
    padding: 40px 6%;
  }

  .review-list {
    grid-template-columns: 1fr;
  }

  .write-review {
    padding: 20px;
  }
}

/* CTA Main Box */
.cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 8%;
  background: linear-gradient(145deg, #1a1a2e, #2e3b50, #1c1c2a);
  /* border-radius: 10px; */
  color: #fff;
  gap: 40px;
  font-family: "Poppins", sans-serif;
}

/* Left Badge */
.cta-left {
  text-align: center;
}

.cta-badge {
  width: 143px;
  max-width: 100%;
}

/* Center Text */
.cta-center {
  text-align: center;
}

.cta-h2 {
  font-size: 26px;
  margin-bottom: 12px;
}

/* WhatsApp Button */
/* .whatsapp-btn {
  background: #25d366;
  padding: 12px 25px;
  color: white;
  border-radius: 6px;
  font-weight: bold;
  display: inline-block;
  text-decoration: none;
  transition: 0.3s;
} */

.whatsapp-btn:hover {
  background: #128c7e;
}

/* Right Side 2 Lines */

.cta-right {
  text-align: left;
}

.cta-point {
  font-size: 17px;
  color: #fff;
  margin: 2px 0;
}

.cta-line1,
.cta-line2 {
  font-size: 15px;
  opacity: 0.85;
}

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

  .cta-right {
   text-align: center;
   margin-bottom: -21px;
   margin-top: -24px;
  }

  .cta-h2 {
    font-size: 19px;
    margin-top: -52px;
  }

  .cta-line1,
  .cta-line2 {
    font-size: 14px;
  }
  .cta-badge {
    margin-top: -31px;
  }
}
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #25D366, #1ebe5d);
  color: #fff;
  /* font-weight: 600; */
  font-size: 14px;
  margin-top: 20px;
  padding: 6px 6px;
  border-radius: 15px;
  text-decoration: none;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  font-family: "Poppins", sans-serif;
  gap: 10px;
}

.whatsapp-btn i {
  font-size: 16px;
}

.whatsapp-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.3);
  background: linear-gradient(135deg, #1ebe5d, #25D366);
}
/* Footer */
/* footer {
  /* background: #111;
  color: #ccc;
  padding-top: 40px;
  font-size: 0.95rem;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding: 0 10% 30px;
  flex-wrap: wrap;
}

.footer-col h3 {
  color: #ff6f61;
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.footer-col h4 {
  color: #fff;
  margin-bottom: 10px;
  font-size: 1.2rem;
  position: relative;
}

.footer-col h4::after {
  content: "";
  width: 40px;
  height: 2px;
  background: #ff6f61;
  display: block;
  margin-top: 5px;
}

.footer-col p {
  line-height: 1.6;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin: 8px 0;
}

.footer-col ul li a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
  position: relative;
}

.footer-col ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: #ff6f61;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #fff;
}

.footer-col ul li a:hover::after {
  width: 100%;
} */

/* .newsletter {
  margin-top: 10px;
}

.newsletter input {
  padding: 8px;
  border: none;
  border-radius: 5px 0 0 5px;
  outline: none;
}

.newsletter button {
  padding: 8px 15px;
  border: none;
  background: #ff6f61;
  color: #fff;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
  transition: 0.3s;
}

.newsletter button:hover {
  background: #e55b4f;
}

.socials {
  margin-top: 15px;
} */

/* .socials a {
  display: inline-block;
  margin: 0 8px;
  font-size: 1.2rem;
  color: #ccc;
  transition: 0.3s;
  border: 1px solid #444;
  border-radius: 50%;
  padding: 8px;
} */

/* .socials a:hover {
  color: #fff;
  background: #ff6f61;
  border-color: #ff6f61;
  transform: translateY(-3px);
  border: 1px solid #444;
} */

/* .footer-bottom {
  border-top: 1px solid #333;
  text-align: center;
  padding: 15px 10%;
  background: #0a0a0a;
  font-size: 0.9rem;
  color: #aaa; */


/* Responsive Footer */
/* @media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }
  .socials a {
    margin: 5px;
  }
} */ 

.wrapper {
  display: inline-flex;
  list-style: none;
  /* padding-top: 20px; */
  justify-content: center;
}

.wrapper .icon {
  position: relative;
  background: #fff;
  border-radius: 50%;
  margin: 10px;
  width: 50px;
  height: 50px;
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 5px 10px rgba(0,0,0,0.15);
  cursor: pointer;
  transition: all 0.3s ease;
}

.wrapper .tooltip {
  position: absolute;
  top: 0;
  font-size: 13px;
  background: #fff;
  color: #000;
  padding: 4px 8px;
  border-radius: 5px;
  box-shadow: 0 5px 10px rgba(0,0,0,0.15);
  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease;
}

.wrapper .tooltip::before {
  position: absolute;
  content: "";
  height: 8px;
  width: 8px;
  background: #fff;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
}

.wrapper .icon:hover .tooltip {
  top: -35px;
  opacity: 1;
}

/* Default Icon Colors */
.facebook i { color: #1877f2; }
.instagram i { color: #e4405f; }
.tiktok i { color: #000; }

/* Hover States */
.facebook:hover { background: #1877f2; }
.facebook:hover i { color: #fff; }
.facebook:hover .tooltip,
.facebook:hover .tooltip::before { background: #1877f2; color: #fff; }

.instagram:hover { background: #e4405f; }
.instagram:hover i { color: #fff; }
.instagram:hover .tooltip,
.instagram:hover .tooltip::before { background: #e4405f; color: #fff; }

.tiktok:hover { background: #000; }
.tiktok:hover i { color: #fff; }
.tiktok:hover .tooltip,
.tiktok:hover .tooltip::before { background: #000; color: #fff; }

.footer-bottom {
  border-top: 1px solid #333;
  text-align: center;
  padding: 15px 10%;
  background: #0a0a0a;
  font-size: 0.9rem;
  color: #aaa;
}

/* Hamburger */

.hamburger {
  display:none;
  cursor:pointer;
  font-size:24px;
}
@media(max-width:768px){
  nav {display:none;}
  .hamburger {display:block;}
  nav.active {display:block;
  position:absolute;
  top:60px;right:10%;
  background:#fff;
  padding:20px;
  border-radius:5px;
  box-shadow:0 2px 5px rgba(0,0,0,0.2);
  }
  nav ul {
  flex-direction:column;
  gap:15px;
  }
} 



/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 100px;
  right: 20px;
  background: #009939;
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px; 
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  z-index: 9999;
  transition: transform 0.3s ease;
  animation: pulse 1.8s infinite ease-in-out; 
  text-decoration: none;   
}

.whatsapp-float:hover {
  transform: scale(1.2);
  box-shadow: 0 6px 12px rgba(0,0,0,0.4);
}

/* Pulse animation (bada–chhota) */
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.15); }
  100% { transform: scale(1); }
}
@media (max-width: 768px) {
.whatsapp-float {
         bottom: 88px;
        right: 8px;
  }
}

.socials a {
  margin-right: 12px;
  font-size: 1.3rem;
  color: #ff6f61;
  transition: 0.3s;
}

.socials a:hover {
  color: #e55b4f;
}


/* Responsive */

/* Mini Cart */
#mini-cart {
  position: fixed;
  right: -350px;
  top: 0;
  width: 350px;
  height: 100%;
  background:#fff;
  box-shadow: -2px 0 10px rgba(0,0,0,0.2);
  transition: right 0.3s;
  padding:20px;
  z-index: 2000;
  overflow-y:auto;
}
#mini-cart.active {right:0;}
#mini-cart h3{margin-bottom:15px;}
.cart-item {display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:10px;
  border-bottom:1px solid #ccc;
  padding-bottom:5px;
}
.place-order-btn {
  width: 100%;
  padding: 10px 15px;
  background: #ffffff;
  color: #000000;
  font-size: 16px;
  border: none;
  margin-top: 10px;
  cursor: pointer;
  border-radius: 6px;
  Border: 1px solid #ff4f81;
}

.place-order-btn:hover {
  background: #000000;
  color: white;
}

.cart-item span {
  margin:0 5px;
}
.cart-item button {
  padding:2px 8px;
}
#close-cart {
    margin-left: 267px;
    margin-top: 25px;
  /* background:gold; */
  border:none;
  cursor:pointer;
  width:100%;
  border-radius:5px;
  font-size: 41px;
}
#close-cart:hover {
  color: #b75a00;
}
.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 5px;
}

.cart-item span {
  margin: 0 5px;
}

.cart-item button {
  padding: 2px 8px;
  cursor: pointer;
  border: none;
  background: #eee;
  border-radius: 3px;
}

.delete-item {
  background: none;
  color: rgb(10, 10, 10);
  font-size: 18px;
  cursor: pointer;
  margin-left: 10px;
}

.mini-card {
  display: flex;
  gap: 10px;
  border: 1px solid #ccc;
  background: #fff;
  padding: 10px;
  border-radius: 8px;
  margin-bottom: 10px;
}

.mini-card img.mini-img {
  width: 70px;
  height: 70px;
  border-radius: 6px;
  object-fit: cover;
}

.mini-details h4 { margin: 0; }

.product-buttons-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
}

.product-buttons-head button,
.product-buttons-head a {
  flex: 1;
  text-align: center;
  padding: 9px 21px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  text-decoration: none;
  display: flex;
  gap: 4px;
  justify-content: center;
  align-items: center;
  border: 1px solid #ff5183;
}

/* small icons */
.product-buttons-head i {
  font-size: 13px;
}

/* Colors */
.add-cart-head {
  background: white;
  color: black;
}
.add-cart-head:hover {
 background: black;
  color: white;

}
.checkout-btn-head {
  background: white;
  color: black;
  width: 170px;
}

.checkout-btn-head:hover {
  background: black;
  color: white;
}
.whatsapp-btn-head {
    background: white;
    color: black;
    padding: 7px 0px !important;
    /* margin-right: 51px; */
}
.whatsapp-btn-head:hover {
   background: black;
  color: white;
}


.checkout-btn-head:hover i {
  color: white !important;
}


/* Products */
.products {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* Desktop par hamesha 4 cards */
  gap: 20px;
  padding: 20px 10%;
  justify-content: center;
}

.cart2 {
  border: 1px solid #ccc;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  background: #fff;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s;
  max-width: 341px;   /* Card ki max size fix */
  margin: -4px;    
}



.price {
  font-size: 20px !important;
  font-weight: 700;
}

.cart2 img {
  /* width: 100%;
  height: 200px;       Sab images same height */
  object-fit: cover;   /* Proportion maintain */
}

.cart2 h3 {
  padding: 10px 5px 0 5px;
  text-align: left;
}

.cart2 p {
  padding: 5px 10px;
  font-size: 14px;
  flex: 1;
  text-align: left;
}

.btns {
  display: flex;
  justify-content: space-around;
  padding: 10px 0 20px 0;
}

.btns button {
  padding: 10px 11px;
  
  cursor: pointer;
  border-radius: 5px;
   border: 1px solid #ff5183;
}
 .add-cart { 
  background: white;
  color: black;
} 

.add-cart:hover { 
background: black;
  color: #ffffff;
} 

 .view-detail { 
  background: white;
  color: black;
} 

.view-detail:hover { 
  background: black;
  color: #ffffff;
} 


/* ✅ Responsive (Mobile & Tablet) */
@media (max-width: 992px) {
  .products {
    grid-template-columns: repeat(2, 1fr); 
  }
}

@media (max-width: 600px) {
  .products {
    grid-template-columns: 1fr; 
  }
}

.card-icons button {
    background: #ffffff;
    border: 1px solid #ddd;
    padding: 6px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}
.card-icons {
    position: absolute;
       margin-left: 223px;
    margin-top: 11px;
    display: flex;
    gap: 8px;
}

.card-icons button {
    background: #ffffff;
    border: 1px solid #ddd;
    padding: 6px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}
.card-icons {
    position: absolute;
    top: 10px;
    right: 10px; /* ← Automatically right side par stable rahega */
    display: flex;
    gap: 8px;
}
.product-card {
    position: relative;
}
.heading-simi{
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
  font-size: larger;
  margin-top: 24px;
}
.desc {
  display: -webkit-box;
  -webkit-line-clamp: 2;   /* 2 lines only */
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 20px;
  max-height: 45px; /* 2 × 20 */
}


.product-card h3 {
  /* padding: 10px 5px 0 5px; */
  text-align: left;
  font-size: 20px;
  height: 73px;
}