/* Style for the product container */
.product {
    position: relative;
    display: inline-block;
}

/* Grayscale effect when the product is out of stock */
.product.out-of-stock .product-image {
    filter: grayscale(100%);
    opacity: 0.5; /* Optional: makes the grayscale effect more subtle */
}

/* Style for the overlay text */
.product .overlay {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    background-color: rgba(0, 0, 0, 0.7); /* Semi-transparent background */
    padding: 10px 10px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    display: none; /* Initially hidden */
}

/* Show the overlay when the product is out of stock */
.product.out-of-stock .overlay {
    display: block;
}

.bskt-opt button.btn.btn-outstock {
    text-transform: uppercase;
    border-radius: 4px;
    border: 1px solid #2d2915;
    background: #fee67c;
    background: linear-gradient(180deg, #e0e0e0 0, #afafaf);
    width: 70px;
    height: 36px;
}

.price-sale{
    font-size: 18px !important;
    font-weight: bold;
    /* float: right; */
}

.price-mrp{
  text-decoration: line-through; /* Crosses out the MRP price */
  color: #999; /* Optional: a lighter color to differentiate */
  margin-right: 10px; /* Adds some spacing between MRP and offer price */
  margin-left: 10px;
}
.price-disc{
    color: green;
}

.input-group input{
    height: 36px !important;
}

.search-box{
    margin-left: 20vw;
}

div#disclaimer_popup {
    z-index: 99999;
    background-color: rgba(0,0,0,0.54);
}
body.modal-open, body.modal-open .modal {
    overflow: visible;
}
.modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto;
}

.modal-backdrop.in {
    opacity: .5;
    filter: alpha(opacity=50);
}
.modal-backdrop.fade {
    opacity: 0;
    filter: alpha(opacity=0);
}


.fade {
    opacity: 0;
    -webkit-transition: opacity .15s linear;
    -o-transition: opacity .15s linear;
    transition: opacity .15s linear;
}
@media only screen and (min-width: 701px)
div#disclaimer_popup .modal-dialog {
    top: 20%;
}
@media (min-width: 768px)
.modal-dialog {
    width: 600px;
    margin: 60px auto !important;
    vertical-align: middle;
    margin-left: auto;
	margin-right: auto;
}
img  {
    vertical-align: middle;
}
@media only screen and (min-width: 701px)
button.close {
    position: relative !important;
    top: 6px;
    left: 0;
    text-shadow: none;
    background-color: transparent !important;
    color: #ffff;
    opacity: 1;
    font-size: 200%;
    z-index: 2;
}
button.close {
    padding: 0;
    cursor: pointer;
    background: transparent;
    border: 0;
    -webkit-appearance: none;
}
.close {
    float: right;
    font-size: 18px;
    font-weight: bold;
    line-height: 1;
    color: #000;
    filter: alpha(opacity=20);
    cursor: pointer;
}
.modal.in .modal-dialog {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
}

.menu-link{
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
}

.menu-icon{
    width: auto;
    height: 46px;
    padding: 2px;
    display: inline-block;
    font-size: 36px;
    text-rendering: auto;
    vertical-align: middle;
    -webkit-font-smoothing: antialiased;
}

