@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;

    ::-webkit-scrollbar {
        width: 0px;
        height: 0px;
    }
}

html,
body {
    width: 100%;
    height: 100%;
}

:root {
    --pad: 5%;
    --pad2: 0px 5%;
    --pad3: 5% 0px;
    --mt: 20px;
    --mt-15: 15px;
    --light: #fff;
    --dark: #000;
    --txt-clr: #000;
    --main-clr: #628F30;
    --secoundry-clr: #628F3297;
    ;
    --bg-clr: #e5f3f3;
}

.pad-inline {
    padding: var(--pad2);
}

.header {
    padding: var(--pad2);
}

.header h3 {
    font-size: 20px;
    font-weight: 600;
    line-height: 15px;
    text-wrap: nowrap;
}

.header p {
    font-size: 14px;
    color: var(--main-clr);
    font-weight: 500;
    cursor: pointer;
}
.header span {
    font-size: 14px;
    color: var(--main-clr);
    font-weight: 500;
    cursor: pointer;
}

.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 {
    width: 100%;
    height: 100%;
    max-height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999999;
    background: #ffff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.spin {
    display: inline-flex;
    gap: 5px;
    animation: l3-0 1s infinite;
    transform-origin: 50% calc(100% + 2.5px);
}

.spin:before,
.spin:after {
    content: "";
    width: 25px;
    aspect-ratio: 1;
    box-shadow: 0 0 0 3px inset var(--main-clr);
}

.spin:after {
    transform-origin: -2.5px calc(100% + 2.5px);
    animation: l3-1 1s infinite;
}

@keyframes l3-1 {

    50%,
    100% {
        transform: rotate(180deg)
    }
}

@keyframes l3-0 {

    0%,
    50% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(90deg)
    }
}

.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;
}

.curs-pointer,
button {
    cursor: pointer;
}

.bi-trash3 , .bi-plus-lg {
    cursor: pointer;
}


/* closed shop style added 
 */

 @import url("https://fonts.googleapis.com/css?family=Open+Sans:400,400i,700");

.main-wrapper {
    font-size: 15vmin;

    display: none;

}

.main-wrapper.active {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    width: 100vw;
    height: 100vh;
    position: fixed;
    z-index: 100000;
    inset: 0;
}

.closed_msg{
    position: fixed;
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
    bottom: 70px;
    font-size: 30px;
    text-align: center;
}

.signboard-wrapper {
    width: 75vmin;
    height: 55vmin;
    margin: 20px;
    position: relative;
    flex-shrink: 0;
    transform-origin: center 2.5vmin;
    animation: 1000ms init forwards, 1000ms init-sign-move ease-out 1000ms, 3000ms sign-move 2000ms infinite;
}

.signboard-wrapper .signboard {
    color: #fff;
    font-family: "Open Sans", sans-serif;
    font-weight: bold;
    background-color: #ff5625;
    width: 100%;
    height: 35vmin;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 0;
    border-radius: 4vmin;
    text-shadow: 0 -0.015em #be2b00;
    box-shadow: 0 2vmin 4vmin 1vmin rgba(107, 107, 107, 0.8);
}

.signboard-wrapper .string {
    width: 30vmin;
    height: 30vmin;
    border: solid 0.9vmin #893d00;
    border-bottom: none;
    border-right: none;
    position: absolute;
    left: 50%;
    transform-origin: top left;
    transform: rotate(45deg);
}

.signboard-wrapper .pin {
    width: 5vmin;
    height: 5vmin;
    position: absolute;
    border-radius: 50%;
}

.signboard-wrapper .pin.pin1 {
    background-color: #9f9f9f;
    top: 0;
    left: calc(50% - 2.5vmin);
}

.signboard-wrapper .pin.pin2,
.signboard-wrapper .pin.pin3 {
    background-color: #d83000;
    top: 21.5vmin;
}

.signboard-wrapper .pin.pin2 {
    left: 13vmin;
}

.signboard-wrapper .pin.pin3 {
    right: 13vmin;
}

@keyframes init {
    0% {
        transform: scale(0);
    }

    40% {
        transform: scale(1.1);
    }

    60% {
        transform: scale(0.9);
    }

    80% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes init-sign-move {
    100% {
        transform: rotate(3deg);
    }
}

@keyframes sign-move {
    0% {
        transform: rotate(3deg);
    }

    50% {
        transform: rotate(-3deg);
    }

    100% {
        transform: rotate(3deg);
    }
}


/* new style added here */

.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;
}

.custom-btn{
    background: var(--main-clr);
    border: none;
    outline: none;
    color: var(--txt-clr);
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}