@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");
@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Lato", serif;
    /* font-family: "Montserrat"; */
    user-select: none;

    ::-webkit-scrollbar {
        width: 0px;
        height: 0px;
    }
}

html,
body {
    width: 100%;
    height: 100%;

    padding-bottom: 80px;
    /* fallback */

    touch-action: manipulation;
    -ms-touch-action: manipulation;

}


:root {
    --pad: 5%;
    --pad2: 0px 5%;
    --pad3: 5% 0px;
    --mt: 10px;
    --mt-15: 15px;
    --txt-clr: #fff;
    --theme-color: #fff;
    --icon-filter: none;
    /* --main-clr: #3c00ff; */
    --main-clr: #2E7702;
    --secoundry-clr: #2E770297;
    /* --main-clr: #ff2f00;
    --secoundry-clr: #ff2f0097; */

    --bg-clr: #e9f5fa;
}

/* 🔶 Top Safe Area Handling */


/* 🔶 Bottom Safe Area Handling */


.pad-inline {
    padding: var(--pad2);
}

.header {
    padding: var(--pad2);
}

.header h3 {
    font-size: 20px;
    font-weight: 600;
    /* line-height: 20px; */
    /* text-wrap: nowrap; */
    width: 80%;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 1;
}

.header p {
    font-size: 12px;
    color: #000;
    font-weight: 500;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #00000049;
    border-radius: 5px;
}

.header span {
    font-size: 14px;
    color: var(--main-clr);
    font-weight: 500;
}

.header i {
    font-size: 20px;
}

.padding-bottom {
    padding-bottom: 120px;
}

.flex {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-col {
    flex-direction: column;
}

.space-between {
    justify-content: space-between;
}

.flex-start {
    justify-content: flex-start;
}

.flex-end {
    justify-content: flex-end;
}

.items-start {
    align-items: flex-start;
}

.flex-wrap {
    flex-wrap: wrap;
}

.gap-2 {
    gap: 2px;
}

.gap-5 {
    gap: 5px;
}

.gap-10 {
    gap: 10px;
}

.gap-15 {
    gap: 15px;
}

.gap-20 {
    gap: 20px;
}

.gap-25 {
    gap: 25px;
}

.gap-30 {
    gap: 30px;
}

.wrapper-overlay {
    transition: all .4s ease-in-out;
}

.wrapper-overlay.active {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: .5;
    z-index: 999;
}




.cart-container {
    position: fixed;
    width: 180px;
    min-width: fit-content;
    left: 50%;
    transform: translateX(-50%) scale(.1);
    padding: 8px 10px;
    padding-left: 20px;
    border-radius: 100vw;
    background: linear-gradient(90deg, var(--main-clr) 0%, var(--secoundry-clr) 100%);
    bottom: 0;
    opacity: 0;
    /* scale: .1; */
    z-index: -1000;
    transition: all .4s ease-in-out;
}

.cart-container.active {
    z-index: 1000;
    opacity: 1;
    transform: translateX(-50%) scale(1);
    bottom: 60px;
}





.cart-container h3 {
    font-size: 16px;
    color: var(--txt-clr);
    font-weight: 700;
}

.cart-container p {
    font-size: 14px;
    color: var(--txt-clr);
    font-weight: 400;
}

.right-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--main-clr);
    color: var(--txt-clr);
    font-size: 20px;
}


/* sweet alert designed*/

.custom-confirm-class {
    all: unset;
    width: 100%;
    min-width: 150px;
    padding: 10px;
    font-size: 15px;
    background: var(--main-clr);
    border-radius: 5px;
    border: none;
    outline: none;
    color: #fff;
    text-align: center;
}

.custom-icon {
    /* background: var(--main-clr); */
    color: var(--main-clr);
}

div:where(.swal2-icon).swal2-success .swal2-success-ring {
    border: 5px solid var(--main-clr) !important;
}

div:where(.swal2-icon).swal2-success [class^=swal2-success-line] {
    background: var(--main-clr) !important;
}




.loader,
.sloader {
    width: 100%;
    height: 100%;
    max-height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999999;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.spin {
    position: relative;
    width: 80px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
}

.spin::after {
    content: "";
    position: absolute;
    width: 50px;
    height: 50px;
    background: var(--main-clr);
    border-radius: 50%;
    bottom: 25px;
    animation: pulse-glow 2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    z-index: 0;
}

.spin:before {
    content: "";
    width: 55px;
    height: 55px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    animation: 
        blinkit-bounce 0.6s alternate infinite cubic-bezier(0.5, 0.05, 1, 0.5),
        spin-products 2.5s infinite step-end;
    position: absolute;
    bottom: 15px;
    z-index: 1;
}

.spin_shadow {
    content: "";
    width: 45px;
    height: 8px;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 50%;
    position: absolute;
    bottom: 0px;
    animation: blinkit-shadow 0.6s alternate infinite cubic-bezier(0.5, 0.05, 1, 0.5);
}

@keyframes pulse-glow {
    0% {
        transform: scale(0.8);
        opacity: 0.8;
    }
    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

@keyframes blinkit-bounce {
    0% {
        transform: translateY(0) scale(1.05, 0.95);
    }
    100% {
        transform: translateY(-50px) scale(0.95, 1.05);
    }
}

@keyframes spin-products {
    0% {
        background-image: url('../images/loader/loader-1.png');
    }
    20% {
        background-image: url('../images/loader/loader-2.png');
    }
    40% {
        background-image: url('../images/loader/loader-3.png');
    }
    60% {
        background-image: url('../images/loader/loader-4.png');
    }
    80% {
        background-image: url('../images/loader/loader-5.png');
    }
    100% {
        background-image: url('../images/loader/loader-1.png');
    }
}

@keyframes blinkit-shadow {
    0% {
        transform: scale(1.2);
        opacity: 1;
    }
    100% {
        transform: scale(0.6);
        opacity: 0.2;
    }
}

.hideOffer {
    display: none;
}



.outOfStock {
    pointer-events: none;
    position: relative;
}

.outOfStock::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: #000;
    /* z-index: 10; */
    opacity: .5;
    border-radius: 10px;
}

.outOfStock::before {
    position: absolute;
    content: "Out Of Stock";
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 11;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-wrap: nowrap;
    text-align: center;
}


.not_in_stock {
    background: #ff000054;
    padding: 10px;
    border-radius: 5px;
    animation: glow 1.4s ease-in-out infinite;
}

@keyframes glow {
    0% {
        transform: scale(1);
        box-shadow: 0 0 6px rgba(255, 60, 60, 0.45);
        filter: saturate(1);
    }

    40% {
        transform: scale(1.06);
        box-shadow: 0 0 18px rgba(255, 60, 60, 0.9);
        filter: saturate(1.25);
    }

    60% {
        transform: scale(1.02);
        box-shadow: 0 0 14px rgba(255, 60, 60, 0.75);
        filter: saturate(1.1);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 6px rgba(255, 60, 60, 0.45);
        filter: saturate(1);
    }
}

.in_stock {
    font-weight: 600 !important;
    font-size: 16px !important;
}

.out_of_stock_varient {
    position: relative;
}

.out_of_stock_varient::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 10;
    opacity: .5;
    border-radius: 10px;
}

.out_of_stock_varient::before {
    position: absolute;
    content: "Out Of Stock";
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 11;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-wrap: nowrap;
    text-align: center;
}

.hide_product_img {
    position: relative;
}

.hide_product_img::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 10;
    opacity: .5;
    border-radius: 10px;
}


.hide_product_img::before {
    position: absolute;
    content: "Out Of Stock";
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 11;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-wrap: nowrap;
    text-align: center;
}


.single-product-box  button:disabled ,.product-box  button:disabled{
    background: #ccc !important;
    pointer-events: none;
    color: #666 !important;
    border: none !important;
}
.var-option-txt {
    box-shadow: 0px 0px 2px 0px var(--main-clr);
    background: var(--main-clr);
    color: #fff;
    padding-bottom: 2px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    display: block;
    margin-top: -4px;
    font-size: 10px;
    text-align: center;
    position: relative;
    font-weight: 500;
}
.items-baseline {
    align-items: baseline;
}