@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: #FFB700;
    --secoundry-clr: #ffb70097;
    ;
    --bg-clr: #e5f3f3;
}

.pad-inline {
    padding: var(--pad2);
}

.header {
    padding: var(--pad2);
    align-items: flex-start!important;
}

.header h3 {
    font-size: 20px;
    font-weight: 600;
    line-height: 20px;
    text-wrap: wrap;
    width: 70%;
}

.header p {
    font-size: 14px;
    color: var(--main-clr);
    font-weight: 500;
    text-wrap: nowrap;
}

.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: 9999;
}




.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;
}