#slider-img {
  width: 100%;
  padding: 0px 0;
  background: #f8f8f8;
  position: relative;
}

.owl-carousel .item {
  /* padding: 10px; */
}




.card {
  position: relative;
  /* border-radius: 10px;
  overflow: hidden; */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  background: #fff;
}

.card img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 1 / 1;
}

.card h2 {
  position: absolute;
  bottom: 15px;
  left: 15px;
  color: white;
  font-size: 20px;
  font-weight: bold;
  background: rgba(0, 0, 0, 0.6);
  padding: 5px 10px;
  border-radius: 5px;
}

/* Navigation buttons inside image area */
.owl-theme .owl-nav.disabled+.owl-dots {
  width: fit-content;
  margin: 10px auto;
  background: #fff;
  height: 16px;
  padding: 0px 10px;
  border-radius: 0px !important;
  box-shadow: 0px 0px 10px 0px #fbad462f;
}

.owl-theme .owl-dots .owl-dot span {
  width: 30px;
  height: 5px;
  margin: 5px 2px;
  background: #F9CDBD;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: #8a1344;
  width: 30px;
  height: 5px;
  border-radius: 0px !important;
  transition: .5s;
}

.owl-theme .owl-dots .owl-dot.active span {
  position: relative;
}

.owl-theme .owl-dots .owl-dot.active span::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 0%;
  height: 100%;
  background: #00000049;
  border-radius: inherit;
  animation: activedots 4.7s linear;
}

@keyframes activedots {
  0% {
    width: 0%;
  }

  100% {
    width: 100%;
  }
}






.deal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding-inline: 5%;
  margin-top: 20px;
}

.deal-title {
  font-size: 30px;
  font-weight: 700;
  margin-right: 20px;
}

.countdown-box {
  background: linear-gradient(to right, #8a1344, #9c9a9b);
  color: white;
  padding: 12px 20px;
  border-radius: 5px;
  font-weight: 600;
  font-size: 20px;
}

.shop-link {
  text-decoration: underline;
  font-weight: 500;
  cursor: pointer;
  text-underline-offset: 7px;
}

.categray {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: 5%;
  margin-top: 20px;
}

.cat-divded {
  font-weight: 800;
  font-size: 40px;
}





.container {
  max-width: calc(1370px + 5%);
  margin: 70px auto;
  padding: 0 5%;
  /* 👈 Reduced left/right padding */
  margin-bottom: 60px;
}

/* Header */
.home_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* margin-bottom: 24px; */
  border-bottom: 1px solid #ddd;
  padding-bottom: 6px;
  padding: 10px;
  flex-wrap: wrap;
  row-gap: 20px;
  /* display: none; */
}

.home_header h2 {
  font-size: 30px;
  font-weight: 400;
  /* line-height: 1.36em; */
}

.underline-link {
  position: relative;
  text-decoration: none;
  color: #000;
  font-size: 14px;
  font-weight: 500;
}

.underline-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 2px;
  width: 0%;
  background-color: #000;
  transition: width 0.4s ease-out;
}

.underline-link:hover::after {
  width: 100%;
}

/* Scrollable categories */
.categories {
  display: flex;
  gap: 30px;
  /* padding: 40px 0 10px; */
  margin-left: -13px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Each category item */
.category-item {
  width: 160px;
  min-width: 160px;
  padding: 0 13px;
  text-align: center;
  flex-shrink: 0;
  cursor: pointer;
}

.category-item img {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 20px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.category-item img:hover {
  transform: scale(1.1);
  /* Smooth zoom-in */
}

.category-item p {
  margin-top: 10px;
  font-size: 15px;
  color: #333;
}















.icon-container {

  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  gap: 10px;
  opacity: 0;
  flex-direction: column;
  transition: opacity 0.3s ease;
}





.product:hover .icon-container {
  opacity: 1;
}

.icon-container i {
  color: white;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 8px;
  border-radius: 50%;
  font-size: 18px;
  transition: background-color 0.3s;
}

.icon-container i:hover {
  background: #8a1344;

}


/* top text cateries section  */

.tabs-container {
  padding-inline: 5%;
  margin-top: 70px;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #eee;
  flex-wrap: wrap;
  row-gap: 15px;
}

.tabs-container h2 {
  margin-right: auto;
  font-size: 30px;
  font-weight: 400;
}

.tabs {
  display: flex;
  gap: 20px;
}

.tab {
  cursor: pointer;
  padding: 10px 0;
  position: relative;
  font-weight: 500;
  color: #555;
  line-height: 22px;
}

.tab.active {
  color: black;
}

.tab:hover {
  color: black;
}

/* .tab.active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: black;
} */

.tab::after {
  content: '';
  width: 0;
  transform: translateX(0);
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  background-color: #000;
  transition: all 0.45s ease-in-out;
}


.tab.active::after {
  transform: translateX(1);
  width: 100%;
}




/* 2 .categray section css  */


.custom-card-container {
  max-width: 100%;
  margin: 85px auto 40px;
  display: flex;
  gap: 30px;
  padding: 0 5%;
}

.custom-card {
  position: relative;
  width: 100%;
  /* flex: 1; */
  overflow: hidden;
  /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); */
  box-shadow: 1px 1px 10px -2px rgba(0, 0, 0, 0.1);
  height: 240px;
}

.custom-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.custom-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.custom-card-price {
  color: #f45a3b;
  font-weight: bold;
  font-size: 18px;
}

.custom-card-old-price {
  text-decoration: line-through;
  color: #666;
  font-weight: normal;
  margin-left: 10px;
}

.custom-card-title {
  font-size: 24px;
  color: #000;
  margin: 10px 0;
  font-weight: 500;
}

.custom-card-link {
  text-decoration: underline;
  color: #000;
  font-size: 16px;
  margin-top: 10px;
  text-underline-offset: 5px;
  font-weight: 500;
}

@media (max-width: 768px) {
  .custom-card-container {
    flex-direction: column;
  }

  .custom-card {
    height: 250px;
  }

  .custom-card-img {
    object-fit: fill;
    transform: scale(1.4);
  }
}











/* shop categray  */
.shop_category {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  width: 100%;
  padding-inline: 5%;
  flex-wrap: wrap;
}

.shop2 {

  width: calc(100%/3 - 60px/3);
  min-width: calc(100%/3 - 60px/3);
  min-height: 250px;
  aspect-ratio: 400/250;
  /* width: 400px;
  height: 250px;
  margin-top: 20px; */
  position: relative;
}

.shop2-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.shop2-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .5s ease-in-out;
}

.shop2-content:hover+.shop2-img img {
  transform: scale(1.2);
}




.shop2-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.shop2-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
}


.shop2-text h1 {
  color: #fff;
  font-size: 26px;
  font-weight: 600;
}

.shop2-text h2 {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
}

.dark h1 {
  color: #000;
  text-transform: capitalize;
  font-size: 30px;
}

.dark h2 {
  color: #8a1344;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 2px;
  width: fit-content;
  padding-inline: 2%;
  border-radius: 8px;
  border: 1px solid #8a1344;
  background-color: #ffffff8d;
  filter: blur(0.4px);
}



.img-text {
  height: 45px;
}

.img-text a {
  display: flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  padding: 0 25px;
  height: 100%;
  background-color: #fff;
  border-radius: 5px;
  transition: transform .3s ease-in-out;

}

.shop2-content:hover>.img-text a {
  transform: scale(1.13);
}

.dark a {
  background-color: #000;
  color: #fff;
}




/* .shop2 {
  position: relative;
  width: fit-content;
} */

/* .shop2 a {
  position: absolute;
  left: 30%;
  transform: translateX(-50%);
  bottom: 20px;
  background-color: white;
  text-decoration: none;
  width: 150px;
  height: 60px;
  font-size: 20px;
  color: black;
  text-align: center;
  border-radius: 10px;
  padding-top: 20px;
} */
/* 
.shop2 h1 {
  position: absolute;
  left: 30%;
  transform: translateX(-50%);
  top: 50px;
  width: 150px;
  height: 60px;
  font-size: 20px;
  color: black;
  color: #fff;
}

.shop2 h2 {
  position: absolute;
  left: 30%;
  transform: translateX(-50%);
  top: 90px;
  width: 150px;
  height: 60px;
  font-size: 17px;
  color: #fff;
} */

.black h1 {
  color: #000;
}

.b {
  color: #000;
}


@media (width <=768px) {
  .shop_category {
    flex-direction: column;
  }
}


/* ====================== product section style start here ================== */

.product-section {
  display: block;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 20px;
  width: 100%;
  overflow: hidden;
  overflow-x: auto;
  position: relative;
  padding-inline: 5%;
}

.product {
  width: calc(100%/5 - 80px/5);
  min-width: calc(100%/5 - 80px/5);
}



.product-relative h1 {
  font-size: 40px;
  margin-top: 60px;
  margin-bottom: 30px;
  text-align: center;

}


.product {
  position: relative;
  background: #fff;

  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  text-align: center;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s;
}

.product:hover {
  transform: translateY(-5px);
}



.product img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 10px;
  object-fit: contain !important;
  cursor: pointer;
  aspect-ratio: 244/325;

}

.product-img {
  width: 100%;
}

.discount-label {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: #8a1344;
  color: white;
  padding: 3px 8px;
  font-size: 12px;
  border-radius: 5px;
  font-weight: bold;
}

.product p {
  color: gray;
  font-size: 13px;
  margin: 5px 0;
  text-align: left;
}

.product h2 {
  font-size: 16px;
  font-weight: 500;
  margin: 10px 0;
  line-height: 1.3;
  color: #333;
  text-align: left;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.product h3 {
  color: #e91e63;
  font-size: 18px;
  margin: 5px
}


.icon-container {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  opacity: 0;
  /* transform: translateX(50px); */
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.product:hover .icon-container {
  opacity: 1;
  /* transform: translateX(0); */
  pointer-events: auto;
}

.icon-with-label {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 40px;
}

.icon-with-label i {
  width: 40px;
  height: 40px;
  background: #fff;
  color: #333;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  cursor: pointer;
}

.icon-with-label i:hover {
  background-color: #8a1344;
  color: white;
  transform: scale(1.1);
}

.icon-with-label.active i {
  background-color: #8a1344;
  color: white;
  transform: scale(1.1);
}



.icon-label {
  position: absolute;
  right: 100%;
  margin-right: 8px;
  background-color: #333;
  color: #fff;
  font-size: 12px;
  padding: 5px 8px;
  border-radius: 5px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.3s ease;
  pointer-events: none;
}

.icon-with-label:hover .icon-label {
  opacity: 1;
  transform: translateX(0);
}

.add-to-cart {
  padding: 10px 16px;
  background: white;
  /* Default is white */
  color: transparent;
  /* Hide text initially */
  border: 1px solid transparent;
  border-radius: 20px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 15px;

  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}

/* On hover of entire product */
.product:hover .add-to-cart {
  background-color: #8a1344;
  /* Icon hover color */
  color: white;
  /* Show text */
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  border: none;
}

/* Star Ratings ke liye CSS */
.star-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #facc15;
  /* Tailwind ka yellow-400 */
  font-size: 0.7rem;
}


.price-container {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  row-gap: 0;
  margin-top: 10px;
  font-family: Arial, sans-serif;
}

.old-price {
  color: #333;
  text-decoration: line-through;
  font-size: 16px;
}

.new-price {
  color: #8a1344;
  /* orange */
  font-weight: bold;
  font-size: 16px;
}


@media(width < 768px) {
  .product-section {
    gap: 20px;
  }

  .product {
    width: calc(100%/2 - 40px/2);
    min-width: calc(100%/2 - 40px/2);
  }
}





/* ====================== product section style end here ================== */






.bd-top-header {
  background: #944c13;
  color: white;
  text-align: center;
  padding: 8px;
  font-size: 14px;
}

.bd-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background-color: #fff;
  border-bottom: 1px solid #eee;
}

.bd-logo img {
  height: 40px;
}

.bd-menu {
  display: flex;
  gap: 20px;
  font-weight: bold;
}

/* // */
.bd-icons {
  display: flex;
  gap: 15px;
}


/* // */
.bd-icon-btn {
  cursor: pointer;
  position: relative;
  font-size: 18px;
}

/* // */
.bd-icon-badge {
  position: absolute;
  top: -8px;
  right: -10px;
  background-color: #8a1344;
  color: white;
  border-radius: 50%;
  font-size: 10px;
  padding: 2px 5px;
}

/* Cart Drawer */
.bd-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1000;
  display: none;
}


.bd-cart-item {
  display: flex;
  margin-bottom: 15px;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}

.bd-cart-item img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  margin-right: 10px;
  border-radius: 5px;
}

.bd-cart-item h4 {
  margin-bottom: 5px;
}

.bd-cart-item p {
  margin-bottom: 5px;
  color: #555;
}

.bd-cart-item div {
  display: flex;
  align-items: center;
}

.bd-cart-item button {
  background: #007bff;
  color: #fff;
  border: none;
  padding: 5px 10px;
  margin: 0 5px;
  cursor: pointer;
  border-radius: 3px;
}

.bd-cart-item a {
  color: red;
  margin-left: 0px;
  cursor: pointer;
  text-decoration: none;
}

.bd-empty-cart-img {
  width: 100%;
  max-width: 200px;
  display: block;
  margin: 20px auto;
}

.bd-cart-btn {
  background: #28a745;
  color: #fff;
  border: none;
  padding: 10px;
  width: 100%;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  margin-top: 10px;
}




/* oppsinal css cart cheakout  */
.bd-cart-footer {
  border-top: 1px solid #eee;
  padding: 16px;
  background-color: #fff;
}

.bd-cart-options {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
  text-align: center;
}

.bd-cart-option {
  flex: 1;
  color: #999;
  font-size: 14px;
}

.bd-cart-option i {
  display: block;
  font-size: 18px;
  margin-bottom: 4px;
}

.bd-cart-summary .bd-cart-line {
  display: flex;
  justify-content: space-between;
  margin: 8px 0;
  font-size: 14px;
}

.bd-cart-summary .bd-cart-total {
  font-weight: bold;
  font-size: 16px;
  margin-top: 10px;
}

.bd-cart-btn-checkout {
  width: 100%;
  padding: 12px;
  background-color: #8a1344;
  color: white;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  margin: 12px 0;
  cursor: pointer;
}

.bd-view-cart {
  display: block;
  text-align: center;
  color: #333;
  text-decoration: underline;
  font-size: 14px;
}



.bd-cart-footer {
  border-top: 1px solid #ccc;
  padding-top: 15px;
  margin-top: 20px;
}

.bd-cart-footer i {
  margin-right: 8px;
}

.bd-cart-note,
.bd-cart-shipping,
.bd-cart-coupon {
  margin: 8px 0;
  font-size: 14px;
}

.bd-cart-summary {
  margin: 10px 0;
}

.bd-cart-summary p {
  display: flex;
  justify-content: space-between;
  margin: 4px 0;
}

.bd-cart-buttons {
  margin-top: 15px;
  display: flex;
  gap: 10px;
}


/* viewcar css  */



/* responsive */
/* product  */



/* owl careaswell  */

/* slider-responsive.css */
.slider-container {
  padding: 0 10px;
  /* margin-top: 130px; */
}

.card {
  background: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.card img {
  width: 330px;
  height: auto;
  display: block;
}

.card h2 {
  margin: 10px 0;
  font-size: 1rem;
}


.slider-container .owl-prev,
.slider-container .owl-next {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50% !important;
  border: 1px solid #8a1344fc !important;
  background: rgb(138 19 68 / 50%) !important;
  color: #8a1344 !important;
  font-size: 20px !important;
  position: absolute;
  top: calc(50% - 45px);
  transition: all 0.1s ease-in;
}



.slider-container .owl-next {
  right: 2%;
}

.slider-container .owl-prev {
  left: 2%;
}

.slider-container .owl-prev:hover,
.slider-container .owl-next:hover {
  background-color: #8a1344 !important;
  color: #fff !important;
  transform: scale(1.12);
}


.page-scroll-up {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: #8a1344;
  position: fixed;
  bottom: 5%;
  right: 2%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transform: translateY(200%);
  font-size: 20px;
  cursor: pointer;
  transition: transform .3s ease-in-out;
  z-index: 767;
}

.page-scroll-up.show {
  transform: translateY(0);
}




@media (max-width: 1080px) {
  .search-box {
    position: relative;
    /* width: fit-content !important; */
  }
}

@media (max-width: 1080px) {

  .add-to-cart {
    transform: translateY(0);
    opacity: 1;
    background-color: #8a1344;
    color: #fff;
  }

  .product-card img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
  }



  .product {
    width: calc(100% / 4 - 60px / 4);
    min-width: calc(100% / 4 - 60px / 4);
  }

  .header {
    padding-inline: 5%;
  }

  .categories {
    padding-inline: calc(5% - 20px);
  }

  .shop2 {

    width: 100%;
    min-width: 100%;
    height: 240px;
    min-height: 240px;

  }

  .shop2-content {
    padding: 15px;
  }



}




.product-section {

  margin-top: 30px;
  /* overflow-x: hidden; */
  /* prevent sideways scroll */
}

@media (max-width: 820px) {
  .category-item {
    width: calc(100% / 4 - 90px / 4);
    min-width: calc(100% / 4 - 90px / 4);
  }

  .product-section {
    display: block;
    /* flex-direction: column; */
    align-items: center;
    padding-inline: 10px;
    gap: 10px;
    top: 30px;
    /* overflow-x: hidden; */
    /* prevent sideways scroll */
  }

  .product {
    width: 100%;
    min-width: calc(100% / 2 - 10px / 2);
    border: 1px solid #eee;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.03);
    position: relative;
    background: #fff;
    padding: 10px;
  }

  .product img {
    width: 100%;
    height: auto;
    object-fit: contain !important;
  }


}


@media (max-width: 768px) {

  .page-scroll-up {
    bottom: 10%;
  }

  .card img {
    width: 100% !important;
  }

  .carousel-slide img {

    height: 300px !important;
    object-fit: cover;
  }

  .dots {
    bottom: 100px !important;
  }

  .slides img {
    width: 100%;
    height: 250px !important;
    object-fit: cover;
    flex-shrink: 0;
  }

  .prev,
  .next {
    position: absolute;
    top: 60% !important;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 18px;
    border-radius: 50%;
  }

  .categories {

    padding: 0px 0 100px;
  }


  .tabs-container h2 {
    font-size: 22px;
    text-align: center;
    margin-bottom: 10px;
  }

  .tabs {
    display: flex;
    overflow-x: scroll;
    justify-content: flex-start;
    gap: 10px;
    font-size: 14px;
    transform: translateX(-12px);
    scrollbar-width: thin;
  }

  /* .tabs::-webkit-scrollbar { 
    height: 3px;
  }


  .tabs::-webkit-scrollbar-track {
    height: 3px;
    background-color: red;
  }

  .tabs::-webkit-scrollbar-thumb {
    height: 3px;
    background-color: blue;
  } */



  .tab {
    padding: 6px 12px;
    /* padding-inline-end: 12px; */
    border-bottom: 2px solid transparent;
    cursor: pointer;
    white-space: nowrap;
  }

  .tab.active {
    border-bottom: 2px solid #000;
    font-weight: 600;
  }



  .discount-label {
    background: #8a1344;
    color: #fff;
    padding: 2px 8px;
    font-size: 12px;
    position: absolute;
    top: 10px;
    left: 10px;
    border-radius: 4px;
  }

  .price-container {
    display: flex;
    justify-content: flex-start;
    gap: 10px;
    margin-top: 10px;
  }

  .old-price {
    text-decoration: line-through;
    color: #888;
  }

  .new-price {
    font-weight: bold;
    color: #8a1344;
  }

  .icon-container {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;

  }

  .icon-with-label {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: #333;
  }

  .add-to-cart {
    margin-top: 15px;
    padding: 10px;
    width: 100%;
    background: #8a1344;
    color: #fff;
    border: none;
    font-weight: bold;
    cursor: pointer;
    border-radius: 4px;
  }

  .categories {
    gap: 20px;
    margin-left: 0;
  }

  .container {
    margin-bottom: 40px;
  }

  .category-item {
    width: 100px;
    min-width: auto;
  }

  .deal-header {
    flex-direction: column;
    align-items: start;
    row-gap: 20px;
  }

  .deal-header-content {
    justify-content: space-between;
    width: 100%;
    flex-wrap: wrap;
    row-gap: 20px;
  }

  .action-btn {
    width: 20px !important;
    height: 20px !important;
    font-size: 10px;
  }

  .product-actions {
    gap: 5px !important;
  }
}

@media (max-width: 480px) {
  .card h2 {
    font-size: .9rem;
  }
}

.carousel {
  position: relative;
  width: 100%;
  margin-top: 130px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.carousel-track {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

.carousel-slide {
  min-width: 100%;
  transition: 0.5s;
}

.carousel-slide img {
  width: 100%;
  display: block;
  border-radius: 12px;
  height: 500px;
  object-fit: cover;
}

/* Navigation buttons */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(138, 19, 69, 0.811);
  border: none;
  color: #fff;
  padding: 0;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  width: 40px;
  z-index: 2;
  height: 40px;
}

.prev {
  left: 15px;
}

.next {
  right: 15px;
}

/* Dots */
.carousel-dots {
  text-align: center;
  position: absolute;
  bottom: 12px;
  width: 100%;
}

.dot {
  display: inline-block;
  height: 12px;
  width: 12px;
  margin: 0 5px;
  background: #bbb;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
}

.dot.active {
  background: #333;
}


/* Product Actions */
.product-actions {
  position: absolute;
  top: 10px;
  right: -60px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: right 0.3s ease;
  z-index: 9999;
}

.card:hover .product-actions {
  right: 10px;
}

.action-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  color: #8a1344 !important;
  transition: all 0.3s ease;
}

.action-btn:hover {
  /* background: #8a1344; */
  color: #fff;
}