* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Titillium Web", sans-serif;
}
body {
  background-color: #f0f8ff;
    overflow-x: hidden;
}
.custom-container{
    width: 90% !important;
    margin-left: auto;
    margin-right: auto;

}
@media screen and (max-width: 768px) {
      .custom-container{
    width: 100% !important;

}
    }
/* Add to Cart Button */
.offer-addtocart,
.offer-buynow {
  color: #fff;
  font-size: 13px;
  margin-top: 5px;
  padding: 4px;
  width: 100%;
}
.offer-addtocart {
  background: linear-gradient(90deg, #ec7474, #d96123);
  border: 1px solid #f57224;
  border-radius: 3px;
}
.offer-addtocart:hover {
  background: #d0611e;
  cursor: pointer;
}
.offer-buynow {
  background-color: #c9151bc2;
  border: 1px solid #c9151b7d;
  border-radius: 3px;
}
.offer-buynow:hover {
  background-color: #8e0005;
  border-color: #8e0005;
  cursor: pointer;
}
.Offer-Product:hover {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  transition: 0.4s;
  border: 3px solid #ee6d05;
}

/* Cart Header */
.cart-header {
  font-size: 24px;
  color: #fff;
  background-color: rgba(156, 89, 202, 0.91);
  padding: 8px 0;
}
.cart-text {
  align-items: center;
  background-color: #c9151b;
  border-radius: 50%;
  display: flex;
  font-size: 14px;
  height: 20px;
  justify-content: center;
  left: 19px;
  position: absolute;
  top: -5px;
  width: 20px;
}
.cart-checkout-button {
  background-color: #ff821e03;
  border: 1px solid #fff;
  border-radius: 6px;
  color: #fff;
  cursor: pointer;
  font-size: 20px;
  font-weight: 700;
  /* margin: 9px; */
  padding: 2px 10px;
}

/* Navbar Start */
.navbar {
  background: linear-gradient(
    50deg,
    rgba(242, 198, 193, 1) 0%,
    rgba(214, 103, 45, 1) 75%
  );
  position: relative;
}
.logo {
  font-family: "Kalam", cursive;
  font-size: 30px;
  font-weight: 700;
}
.nav-link {
  color: white;
  font-weight: 700;
  font-size: 18px;
}
.nav-link:hover {
  color: red;
}
/* Background overlay styles */
.navbar-collapse {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: #cd6526; /* Adjust the overlay color and opacity */
  width: 50%;
  transform: translateX(100%);
  transition: transform 0.5s ease-out;
  padding: 30px;
}

@media (min-width: 992px) {
  .navbar-collapse {
    position: static;
    transform: translateX(0);
    background-color: transparent;
    padding: 0;
    width: auto;
  }
  /* .navbar-collapse.show {
    transform: translateX(0);
  }

  .navbar-collapse.show .close-icon {
    display: block;
    z-index: 50000;
    color: #fff;
  } */
}
/* Media query for smaller devices */
@media (max-width: 992px) {
  .close-icon {
    display: block !important; /* Show the close icon in smaller devices */
    z-index: 50000;
  }

  .navbar-collapse.show .close-icon {
    display: block !important; /* Ensure close icon is shown when the menu is open */
    z-index: 50000;
    color: #fff;
  }
}
.navbar-collapse.show .close-icon {
  display: block; /* Show the close icon when the menu is open on smaller devices */
  z-index: 50000;
}

.navbar-collapse.show {
  transform: translateX(0);
  z-index: 50;
}
.close-icon {
  position: absolute;
  top: 10px;
  right: 40px;
  cursor: pointer;
  display: none; /* Initially hide the close icon */
  color: red;
  font-size: 24px;
}
/* Navbar End */

/* Searchbar Start */
.searchbar {
  background-color: #f2e9e6;
}

.searchbar-input {
  align-items: center;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 9999px;
  display: flex;
  grid-area: 16px;
  padding: 8px 20px;
}
.searchbar-input:focus {
  box-shadow: none;
}
.searchbar-icon {
  color: rgba(0, 0, 0, 0.62);
  font-size: 20px;
  position: absolute;
  right: 15px;
}
/* Searchbar End */

/* Carousel start */
.carousel-image {
  border-radius: 50px;
}
@media (max-width: 992px) {
  .carousel-image {
    border-radius: 0px;
    height: 200px;
  }
}

.dot-indicators {
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
}

.dot {
  height: 10px;
  width: 10px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
  cursor: pointer;
}

.dot.active {
  background-color: #717171;
}
.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 50px;
  color: white;
  background-color: #00000073;
  margin-top: -15px; /* Adjust as needed */
  z-index: 5;
}

.carousel-control-prev {
  left: 0;
}

.carousel-control-next {
  right: 0;
}

/* Category Carousel Cart */

.carousel-cart2{
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 50px;
}
#wrapper {
    width: 100%;
    position: relative;
}

#carousel {
    overflow: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

#carousel::-webkit-scrollbar {
    height: 0;
}

#prev,
#next {
    display: flex;
    justify-content: center;
    align-content: center;
    background: white;
    border: none;
    padding: 8px;
    border-radius: 50%;
    outline: 0;
    cursor: pointer;
    position: absolute;
}

#prev {
    top: 50%;
    left: 0;
    transform: translate(50%, -50%);
    display: none;
}

#next {
    top: 50%;
    right: 0;
    transform: translate(-50%, -50%);
}

#content {
    display: grid;
    grid-gap: 16px;
    grid-auto-flow: column;
    margin: auto;
    box-sizing: border-box;
}

.item {
    width: 180px;
    height: 180px;
    background: #fff;
}
a{
    text-decoration: none;
}
.category-image-card {
    width: 180px;
    height: 190px;
    background-color: white;
    padding: 8px;
    border: 2px solid #ee6d05bf;
    border-radius: 7px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.24);
    cursor: pointer;
    transition: 0.4s;
    margin-right: 65px;
}
@media (max-width: 992px) {
    .category-image-card {
        margin-right:20px;
    }
}
.category-image-card img:hover {
    transform: scale(0.9);
    transition: transform 0.5s ease-in-out;
}
.category-image-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}
.category-image-card h4 {
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    margin-top: 3px;
}

/* Hot Deal Section */
.hot-deal {
  margin-top: 20px;
}
.hot-deal-content {
  background-color: #f2e9e6;
  padding: 20px;
  margin-bottom: 15px;
}
@media only screen and (max-width: 600px) {
    .hot-deal-content {
  padding: 0px;
}
}

.hot-deal-heading {
  font-family: 'Kalam';
  font-size: 20px;
  font-weight: bold;
  color: #aa1818;
  margin-bottom: 10px;
}
.hot-deal-link {
  color: #aa1818;
  cursor: pointer;
  font-size: 13px;
  margin-bottom: -10px;
  text-decoration: underline;
}
.offer-product {
  background-color: #fbfbfb;
  border: 3px solid #fff;
  border-radius: 5px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  flex-direction: column;
  height: 90%;
  margin: 10px;
  padding: 10px;
  position: relative;
  width: 18%;
  margin-bottom: 15px;
}
@media (max-width: 992px) {
  .offer-product {
    width: 45%;
  }
  .card-img-top{
      max-height: 150px !important;
      min-height: 150px !important;
  }
  .card-img-size{
      max-height: 150px !important;
      min-height: 150px !important;
  }
}
@media only screen and (max-width: 600px) {
    .card-img-size{
      max-height: 150px !important;
      min-height: 150px !important;
  }
  .price-line{
      margin-bottom: 0;
  }
  .price{
      margin-bottom: 0;
  }
}
@media (max-width: 600px) {
  .offer-product {
    width: 47%;
    margin: 5px !important;
    padding: 0 !important;
  }
   .card-img-size{
      max-height: 150px !important;
      min-height: 150px !important;
  }
}
.sale-out {
  background-color: #312f2fa7;
  border: 1px solid #312f2fd1;
  border-radius: 10px;
  color: #fff;
  padding: 0 8px;
  position: absolute;
  right: 17px;
  top: 16px;
}
.discount-price {
  align-items: center;
  display: flex;
  justify-content: center;
  margin-top: 4px;
}
.price-line {
  color: #918080;
  font-size: 16px;
  text-decoration: line-through;
}
.price {
  color: #e05d0f;
  font-size: 20px;
  margin-left: 10px;
}
.card-img-new {
  max-height: 250px;
  min-height: 250px;
}
.offer-product h4 {
  color: #474444;
  cursor: pointer;
  font-size: 14px;
  line-height: 19px;
  font-weight: 700;
  padding: 4px;
  text-align: center;
}
.offer-product h4:hover {
  text-decoration: underline;
}

/* Footer Start */
.footerTop {
  background-color: #fff;
  padding: 30px 20px;
}
.best-categories h3 {
  font-size: 20px;
  font-weight: 700;
}
.footerTop ul {
  list-style: none;
  padding: 0;
}
.footerTop ul li a {
  text-decoration: none;
  color: black;
  font-size: 18px;
}
.footerTop ul li a:hover {
  text-decoration: underline;
  color: #8a4b4b;
}
.footerTop ul li {
  text-decoration: none;
  color: black;
  font-size: 18px;
}
.footerTop ul li:hover {
  cursor: pointer;
  color: #8a4b4b;
}
.fa-brands {
  width: 16px;
}

/* Footer Bottom */
.footer-bottom {
  background: linear-gradient(90deg, #ab6565, #b86335);
  padding: 15px;
  color: #fff;
}
.footer-bottom p {
  font-size: 15px;
  margin-bottom: 0;
  text-align: center;
}

/* Product Details Page */
/* Product Details Page */
/* Product Details Page */
/* Product Details Page */
/* Product Details Page */
/* Product Details Page */
.img-description {
  padding: 20px 40px;
}
.img-description h3 {
  font-size: 22px;
  font-weight: 700;
}
.product-price-line {
  color: #1d1e1f8c;
  font-size: 22px;
  padding: 10px;
  text-decoration: line-through;
}
.product-price {
  color: #08c;
  font-size: 22px;
  font-weight: 700;
  padding: 10px;
}
.product-code {
  background: #41b468;
  border-bottom: 10px solid transparent;
  border-right: 10px solid #fff;
  border-top: 10px solid transparent;
  color: #fff;
  display: inline-block;
  font-size: 17px;
  line-height: 0;
  margin-bottom: 10px;
  padding: 2px;
}
.color-img {
  border: 3px solid #fff;
  border-radius: 7px;
  cursor: pointer;
  height: 13%;
  margin: 2px;
  width: 13%;
  transition: 0.4s;
}



.color-img:hover {
  border: 3px solid #ffb2b2;
}
.img-and-size {
  border: 1px solid #ccc;
  border-radius: 5px;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 5px;
  padding: 5px;
}
.size-button {
  border: 2px solid #e6dddd;
  cursor: pointer;
  margin: 5px;
  padding: 10px;
}
.size-button:hover {
  border: 2px solid #ffb2b2;
}
.decrease,
.increase {
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 9999px;
  cursor: pointer;
  font-size: 20px;
  height: 30px;
  width: 30px;
}
.decrease span,
.increase span {
  margin-top: -2px;
}
.quantity {
  padding: 2px 8px;
  border: 1px solid #d6672d;
}
.contact {
  align-items: center;
  background-color: #008000e0;
  border-radius: 5px;
  color: #fff;
  cursor: pointer;
  display: flex;
  font-size: 20px;
  justify-content: center;
  margin-bottom: 20px;
  margin-top: 10px;
  padding: 5px 16px;
  border: 1px solid #fff;
}
.contact a {
  text-decoration: none;
  color: #fff;
}
.contact i {
  font-size: 18px;
}
.delivery-charge {
  border: 2px dotted #ccc;
  display: flex;
  font-size: 19px;
  justify-content: space-between;
  margin-bottom: 10px;
  padding: 9px;
  width: 100%;
}
.delivery-charge p {
  margin-bottom: 0;
}

/* Product Description */
.product-description {
  border: 1px solid #ccc;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.16);
  margin: 0 auto;
  padding: 20px;
  width: 100%;
}
.description {
  border: 1px solid #5958581d;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10px;
}
.description h3 {
  background-color: #fff;
  color: #555454;
  font-size: 22px;
  text-align: center;
  width: 100%;
  font-weight: 600;
  padding: 3px 0;
}


.image-indicators {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.image-indicator {
    width: 13%;
    margin: 0 5px; /* Adjust margin as needed */
    cursor: pointer;
    border: 1px solid #ddd; /* Set border styles */
}

.image-indicator.active {
    border-color: #007bff; /* Set the active indicator color */
}

/* Checkout page */
/* Checkout page */
/* Checkout page */
/* Checkout page */
/* Checkout page */
/* Checkout page */
/* Checkout page */

.address {
    align-items: center;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 8px 60px 0 rgba(103, 151, 255, 0.11),
    0 12px 90px 0 rgba(103, 151, 255, 0.11);
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 10px;
    padding: 30px 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
}
.address-note {
    border: 1px solid rgba(255, 136, 3, 0.42);
    color: #d83030c2;
    font-size: 17px;
    margin-bottom: 10px;
    padding: 15px;
}
.address-input {
    background-color: rgba(109, 124, 144, 0.1);
    color: #20292f;
    display: block;
    font-weight: 700;
    letter-spacing: 0.5px;
    line-height: 1.8;
    margin: 16px 0;
    padding: 8px 12px;
    text-align: left;
    border: 2px solid rgba(255, 136, 3, 0.42);
    border-radius: 5px;
    outline: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
}
.delivery-location {
    align-items: center;
    border: 2px solid rgba(255, 136, 3, 0.42);
    border-radius: 3px;
    display: flex;
    justify-content: center;
    margin-bottom: 12px;
    padding-right: 6px;
    width: 100%;
    padding: 8px 0;
}
.delivery-location label {
    font-size: 16px;
    font-weight: 600;
    margin-left: 5px;
}
.checkout-order-button {
    padding: 10px 0;
}
.total-cart {
    display: flex;
    width: 100%;
}
.total-item-cart {
    background-color: #f0f8ff;
    border-radius: 10px;
    font-size: 22px;
    margin: 10px;
    padding: 20px;
    text-align: center;
    width: 50%;
}
.checkout-head {
    display: flex;
    justify-content: space-between;
    background-color: #f0f8ff;
    padding: 17px;
    width: 100%;
}
.checkout-head p {
    margin-bottom: 0;
}
.cart-item {
    display: flex;
    border: 1px solid #ccc;
    border-radius: 5px;
    justify-content: space-between;
    margin: 5px;
    padding: 5px 10px;
    width: 100%;
    align-items: center;
}
.cart-item img {
    border-radius: 6px;
    height: 60px;
    width: 60px;
}
.checkout-quantity {
    width: 25px;
    height: 25px;
}
.checkout-quantity span {
    font-size: 17px;
}
.checkout-quantity-value {
    padding: 0 5px;
}
.cart-remove {
    background-color: #c9151bc9;
    border: 1px solid #c9151b;
    border-radius: 8px;
    color: #fff;
    padding: 4px;
}
.cart-remove:hover {
  color: #fff;
  background-color: #e63233;
  border-color: #e42728; 
}

.cart-remove:focus, .cart-remove.focus {
  color: #fff;
  background-color: #e63233;
  border-color: #e42728;
  box-shadow: 0 0 0 0.2rem rgba(237, 110, 111, 0.5); }

.btn-danger {
    background-color: #c9151bc9;
    border: 1px solid #c9151b;
    border-radius: 8px;
    color: #fff;
    padding: 4px;
}
