
.custom-box {
  position: relative;
  background: #e0f1ff;
  z-index: 1;
  margin-top: -34px;
  overflow: hidden;
  margin-bottom: -20px;
  padding-bottom: 10px;
  border-radius: 0px 0px 30px 30px;
}



.custom-box .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px;
}

/* Hide logo and cart on desktop */
@media only screen and (min-width: 601px) {
  .nav-logoss,
  .carthome-button {
    display: none !important;
  }
}

.nav-logoss img {
  height: 30px;
}

.carthome-button {
  background-color: rgb(24, 24, 24);
  border: 2px solid #32697f;
  border-radius: 50%;
  padding: 10px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  transition: 0.3s ease;
}

.carthome-button i {
  color: rgb(243, 243, 243);
  font-size: 20px;
}

.badge-number {
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: #32697f;
  color: white;
  border-radius: 50%;
  padding: 2px 6px;
  font-size: 11px;
  font-weight: bold;
}

.search-containermosam {
  width: 90%;
  margin: 5px auto;
  display: block;
  padding-top: 10px;
}

.search-boxmosam {
  display: flex;
  align-items: center;
  width: 100%;
  background-color: white;
  border-radius: 30px;
  padding: 5px;
  border: 1px solid #eeeeee;
  position: relative;
}

.search-iconsss {
  padding: 10px;
  font-size: 18px;
  color: rgb(148, 148, 148);
}

.search-inputmosam {
  flex: 1;
  padding: 10px;
  font-size: 14px;
  border: none;
  outline: none;
  background: white;
  color: #333;
  border-radius: 30px;
  padding-right: 60px;
}

.search-buttonmosam {
  padding: 10px 15px;
  border: none;
  background-color: #32697f;
  color: white;
  font-size: 14px;
  cursor: pointer;
  border-radius: 30px;
  transition: background 0.3s ease-in-out;
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
}

.search-buttonmosam:hover {
  background-color: #32697f;
}

.search-boxmosam:focus-within {
  box-shadow: 0 3px 12px rgba(180, 180, 180, 0.4);
}

/* Hide mobile search bar on desktop */
@media only screen and (min-width: 601px) {
  .search-containermosam {
    display: none;
  }
}

/* Categories Styling */
.categories-container-mosamm {
  display: flex;
  align-items: center;
  gap: 2px;
  overflow: hidden;
  white-space: nowrap;
  padding-left: 10px;
  margin-top: 5px;
  margin-bottom: -5px;
}

.view-all-mosamm {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 5px;
  cursor: pointer;
  font-size: 14px;
  font-weight: bold;
  white-space: nowrap;
  text-decoration: none;
  color: #32697f;
  border-radius: 10px;
}

.view-all-mosamm img {
  width: 45px;
  height: 45px;
  object-fit: cover;
}

.categories-slider-mosamm {
  display: flex;
  overflow-x: auto;
  gap: 10px;
  scroll-behavior: smooth;
  padding-left: 5px;
}

.categories-slider-mosamm::-webkit-scrollbar {
  display: none;
}

.category-mosamm {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 5px;
  cursor: pointer;
  font-size: 14px;
  font-weight: bold;
  white-space: nowrap;
  background-color: transparent;
  border-radius: 10px;
  transition: background-color 0.3s, color 0.3s;
}


.category-mosamm img {
  width: 45px;
  height: 45px;
  object-fit: cover;
}

.category-mosamm span,
.view-all-mosamm span {
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 600px) {
  .categories-slider-mosamm {
    width: 80%;
    display: flex;
    justify-content: start;
  }

  .category-mosamm,
  .view-all-mosamm {
    flex: 0 0 30%;
  }
}






/* View All Category Card Css*/
.mosamcat {
    width: 100%;
    padding: 50px 0;
    background-color: #ffffff;
}

.mosamcat .image-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    border-radius: 5px;
}

.mosamcat .image-container img {
    width: 120px;  /* Width Set */
    height: 120px; /* Height Set */
    object-fit: contain; /* Image पूरी तरह दिखे */
    border-radius: 10px;
    border: soid 2px #32697f;
}


/* Title under Image */
.mosamcat .image-title {
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    margin-top: 5px;
    color: #333;
}

/* Mobile View Adjustments */
@media (max-width: 767px) {
    .mosamcat .col-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .mosamcat .image-container img {
        max-width: 80px;
        height: 80px;
    }

    .mosamcat .image-title {
        font-size: 12px;
    }
}
/* View All Category Card Css End  */










 /* Product Details Page */
 .product-main-2 {
    max-width: 500px;
    margin: auto;
}
.product-slider img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Mobile Product Buttons */
.mobile-product-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-around;
    background: #fff;
    padding: 10px;
    gap: 10px; /* Buttons के बीच Space */
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;  /* Default Hide */
}



/* Button Styling */
.mobile-product-buttons button {
    flex: 1;
    padding: 12px;
    border: none;
    font-size: 16px;
    font-weight: bold;
    color: white;
    cursor: pointer;
    border-radius: 3px; /* Border Radius Reduced */
}

/* Buy Now Button */
.mobile-product-buttons .buy-now {
    background: #32697f;
}

/* Add to Cart Button */
.mobile-product-buttons .add-to-cart {
    background: rgb(15, 15, 15);
}

/* Show only in Mobile */
@media (max-width: 767px) {
    .mobile-product-buttons {
        display: flex;
    }
}

/* QTY CSS*/
.product-packagemosam {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  margin-top: 10px;
}

.product-titlemosam h4 {
  font-size: 16px;
  font-weight: bold;
  color: #333;
  margin: 0;
}

#quantity {
  width: 100%;
  max-width: 120px;
  padding: 4px 8px;
  font-size: 16px;
  border: 1px solid rgb(39, 39, 39);
  border-radius: 5px;
  background-color: #fff;
  color: #333;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

#quantitymosam:focus {
  outline: none;
  border-color: rgb(39, 39, 39);
  box-shadow: 0 0 5px rgb(39, 39, 39);
}

#quantitymosam:hover {
  border-color:rgb(39, 39, 39);
}

#quantitymosam option {
  font-size: 14px;
  padding: 5px;
  background-color: #fff;
  color: rgb(39, 39, 39);
}
/* QTY CSS*/

 /* Product Details Page */




 /* Mobile  Back Button and Title Container */
.back-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #EEF5F3;
  padding: 10px 15px;
  
  z-index: 1000;
  height: 55px;
}

/* Fix: Content should not go behind header */
.main-content {
  margin-top: 65px; 
  padding: 10px;
}

/* Back Button Styling */
.back-btn {
  padding: 8px;
  font-size: 25px;
  background: transparent;
  color: #32697f;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  display: none;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Page Title Styling */
.page-title {
  font-size: 20px;
  font-weight: bold;
  color: #333;
  flex-grow: 1;
  text-align: center;
}

/* Cart Button Styling */
.cart-btn {
  padding: 8px;
  font-size: 22px;
  background: transparent;
  color: #32697f;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  display: none;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* By default, hide header on desktop */
.back-container {
  display: none;
}

/* Show header only on mobile screens */
@media (max-width: 768px) {
  .back-container {
      display: flex;
  }
}





/* mobile Manu cart button Start*/

.cart-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px; /* आइकन को गोल करने के लिए */
  height: 35px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.2); /* हल्का ब्लैक बॉर्डर */
  background: transparent;
  text-decoration: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
}

.cart-btn:hover {
  background: #f8f8f8;
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.cart-btn i {
  font-size: 20px;
  color: black;
}

.cart-badge {
  position: absolute;
  top: -5px; /* बैज को थोड़ा ऊपर किया */
  right: -5px; /* बैज को थोड़ा दाईं ओर किया */
  background-color: #32697f; /* हरा रंग */
  color: white;
  font-size: 8px;
  font-weight: bold;
  padding: 5px 7px;
  border-radius: 50%;
  min-width: 20px;
  text-align: center;
  line-height: 1;
  border: 1px solid white; /* सफेद बॉर्डर */
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3); /* हल्का shadow */
}
/* mobile Manu cart button Start End */




/* coupon Code-container  */

.coupon-container {
  position: relative;
  width: 100%;
  max-width: 455px;
  margin: 10px auto;
}

.coupon-container input {
  width: 100%;
  padding: 12px;
  padding-right: 90px;
  border: 2px solid #32697f;
  border-radius: 10px;
  font-size: 16px;
  box-sizing: border-box;
}

.coupon-container button {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  background: #32697f;
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  white-space: nowrap;
}

.coupon-container button:hover {
  background: #32697f;
}

/* Responsive Design */
@media screen and (max-width: 480px) {
  .coupon-container {
      max-width: 100%;
  }

  .coupon-container input {
      font-size: 14px;
      padding: 10px;
      padding-right: 75px;
  }

  .coupon-container button {
      padding: 8px 10px;
      font-size: 13px;
  }
}

/* coupon Code-container  End */


