@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&display=swap');

.auth-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    transition: all 0.3s ease;
    overflow-y: auto;
}

.searchbutton
{
    background-color: transparent !important;
    border: none !important;
    padding: 0px !important;
}

button[type=submit]:hover {
    background-color: #FF3D3C ;
    border-color: #FF3D3C;
}

.auth-modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 0;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
    width: 800px;
    max-width: 90%;
    position: relative;
    animation: modalFadeIn 0.4s ease;
    display: flex;
    overflow: hidden;
}

.auth-modal-left {
    flex: 1;
    padding: 40px;
    position: relative;
}

.auth-modal-right {
    flex: 1;
    background:linear-gradient(7deg, rgb(254 240 34), rgb(232 228 228));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    color: #1a1a1a;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.auth-modal-right::before {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.auth-modal-right::after {
    content: "";
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.auth-form-container {
    padding-right: 10px;
}

/* Rest of your existing CSS remains the same */
.auth-modal-right img {
    max-width: 48%;
    height: auto;
    margin-bottom: 20px;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
    z-index: 1;
    /*animation: float 6s ease-in-out infinite;*/
}
.card-2:hover {
  
    border: 1px solid #aeaeae !important;
   
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

.auth-modal-right h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;
    color: #131313;
    z-index: 1;
}

.auth-modal-right p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
    z-index: 1;
}

.auth-benefits {
    text-align: left;
    margin-top: 20px;
    z-index: 1;
}

.auth-benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    z-index: 1;
}

.auth-benefit-icon {
    width: 30px;
    height: 30px;
    background-color: rgb(255 255 255 / 51%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: #060606;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* custom tool tip */

.tooltip-container {
    position: relative;
    cursor: pointer;
    display: inline-block;
}

.custom-tooltip {
    visibility: hidden;
    opacity: 0;
    background-color: #3333339e;
    color: #fff;
    text-align: center;
    padding: 4px 8px;
    border-radius: 4px;
    position: absolute;
    top: 44px;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    transition: opacity 0.3s ease;
    white-space: nowrap;
    z-index: 10000;
    font-size: 12px;
}

.tooltip-container:hover .custom-tooltip {
    visibility: visible;
    opacity: 1;
}

.close-icon {
    display: inline-block;
    font-size: 38px;
    font-weight: bold;
    color: #888;
    transition: all 0.3s;
}

.tooltip-container:hover .close-icon {
    color: #ff3d3d;
    transform: rotate(90deg);
}


/* custom tooltip close  */

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 38px;
    font-weight: bold;
    color: #888;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
}

body.modal-open {
    overflow: hidden !important;
}

.auth-tabs {
    display: flex;
    margin-bottom: 25px;
    border-bottom: 2px solid #eeeeee00;
    position: relative;
    background: #eeeeee00;
    z-index: 5;
}

.auth-tab {
    padding: 12px 25px;
    cursor: pointer;
    font-weight: 700;
    color: #616162;
    font-family: "Josefin Sans", sans-serif !important;
    position: relative;
    transition: all 0.3s;
}

.auth-tab.active {
    color: #000000;
    width: 100%;
}

.auth-tab.active:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 30%;
    height: 2px;
    background-color: #feee00;
}

.auth-form {
    display: none;
}

.auth-form.active {
    display: block;
}

.auth-form h3 {
    font-size: 28px;
    margin-bottom: 25px;
    color: #253D4E;
    font-family: "Josefin Sans", sans-serif !important;
    font-weight: 700;
    position: relative;
}

.auth-form h3:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background-color:#feee00;
    border-radius: 3px;
}

.form-group {
    margin-bottom: 20px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #253D4E;
    font-family: "Josefin Sans", sans-serif !important;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ececec;
    border-radius: 10px;
    font-size: 14px;
    transition: all 0.3s;
    font-family: "Josefin Sans", sans-serif !important;
}

.form-control:focus {
    border-color: #3bb77e;
    box-shadow: 0 0 0 3px rgba(59, 183, 126, 0.2);
    outline: none;
}

.auth-btn {
        background-color: #feee00 !important;
    color: #000000 !important;
    border: 1px !important;
    padding: 14px 25px;
    border-radius: 10px;
    font-weight: 700;
    font-family: "Josefin Sans", sans-serif !important;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 16px;
    margin-top: 10px;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.auth-btn:hover {
    background-color: rgb(255, 255, 255) !important;
    color: #7c7c7c;
    border: 1px solid #f5eb72 !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgb(248 238 105);
}

.auth-btn:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%);
    transform-origin: 50% 50%;
}

.auth-btn:focus:not(:active)::after {
    animation: ripple 1s ease-out;
}

@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 1;
    }

    20% {
        transform: scale(25, 25);
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: scale(40, 40);
    }
}

.auth-footer {
    text-align: center;
    margin-top: 20px;
    font-family: "Josefin Sans", sans-serif !important;
    color: #616162;
    position: relative;
    background: #ffffff00;
}

.auth-footer a {
    color: #fec000;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.auth-footer a:hover {
    color: #ff3d3d;
    text-decoration: underline;
}

.social-login {
    margin-top: 25px;
    text-align: center;
    position: relative;
}

.social-login p {
    position: relative;
    margin-bottom: 20px;
    color: #7E7E7E;
    font-family: "Josefin Sans", sans-serif !important;
}

.social-login p:before,
.social-login p:after {
    content: "";
    position: absolute;
    top: 50%;
    width: 30%;
    height: 1px;
    background-color: #eee;
}

.social-login p:before {
    left: 0;
}

.social-login p:after {
    right: 0;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.social-icon:hover {
    transform: translateY(-3px) scale(1.1);
}

.social-icon:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 70%);
    transform: scale(0);
    transition: transform 0.5s;
}

.social-icon:hover:after {
    transform: scale(2);
}

.header-style-1 .search-style-2 form input {
    max-width: 97% !important;

}

.facebook {
    background-color: #3b5998;
}

.google {
    background-color: #db4437;
}

.twitter {
    background-color: #1da1f2;
}

.forgot-password {
    text-align: right;
    margin-top: -15px;
    margin-bottom: 15px;
}

.forgot-password a {
    color: #7E7E7E;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.3s;
}

.forgot-password a:hover {
    color: #ff3d3d;
    text-decoration: underline;
}

.password-toggle {
    position: absolute;
    right: 15px;
    top: 40px;
    cursor: pointer;
    color: #7E7E7E;
    transition: all 0.3s;
}

.password-toggle:hover {
    color: #3bb77e;
    transform: scale(1.2);
}

.auth-alternative {
    margin-top: 20px;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 10px;
    text-align: center;
    border-left: 4px solid #3bb77e;
    position: relative;
}

.auth-alternative a {
    color: #3bb77e;
    font-weight: 600;
}

.auth-alternative a:hover {
    color: #ff3d3d;
}

@media (max-width: 768px) {
    .auth-modal-content {
        flex-direction: column;
        width: 90%;
        max-height: 90vh;
    }

    .auth-modal-right {
        display: none;
    }

    .auth-form h3 {
        font-size: 22px;
    }
}

/* New decorative elements */
.auth-form-decoration {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgb(251 239 81);
    z-index: 0;
}

.decoration-1 {
    top: -30px;
    right: -30px;
    width: 150px;
    height: 150px;
}

.decoration-2 {
    bottom: -20px;
    left: -20px;
    width: 80px;
    height: 80px;
}

.form-header-icon {
    position: absolute;
    right: 0;
    top: 0;
    font-size: 60px;
    color: rgba(59, 183, 126, 0.1);
    z-index: 0;
}

/* Floating animation for right side image */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Glow effect for active tabs */
.auth-tab.active {
    text-shadow: 0 0 5px rgb(255 255 255);
}

/* Input focus animation */
.form-control:focus {
    animation: inputFocus 0.5s ease;
}

@keyframes inputFocus {
    0% {
        box-shadow: 0 0 0 0 rgba(59, 183, 126, 0.2);
    }

    100% {
        box-shadow: 0 0 0 8px rgba(59, 183, 126, 0);
    }
}

/* Loading spinner for submit button */
.auth-btn.loading:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.otp-verification {
    display: none;
}

.otp-inputs {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
}

.otp-input {
    width: 50px;
    height: 50px;
    text-align: center;
    font-size: 20px;
    border: 2px solid #ececec;
    border-radius: 10px;
    transition: all 0.3s;
}

.otp-input:focus {
    border-color: #3bb77e;
    box-shadow: 0 0 0 3px rgba(59, 183, 126, 0.2);
    outline: none;
}

.resend-otp {
    text-align: center;
    margin-top: 15px;
}

.resend-otp a {
    color: #3bb77e;
    cursor: pointer;
}

.resend-otp a:hover {
    text-decoration: underline;
}

.otp-timer {
    color: #ff3d3d;
    font-weight: bold;
}

.back-to-login {
    text-align: center;
    margin-top: 15px;
}

.back-to-login a {
    color: #3bb77e;
    cursor: pointer;
}

.back-to-login a:hover {
    color: #3bb77e;
    text-decoration: underline;
}

.cart-dropdown-wrap .shopping-cart-footer .shopping-cart-button a:hover {
    background-color: #3bb77e;
}

.shopping-cart-title h4 {
    white-space: nowrap;
    /* Prevent the name from wrapping to the next line */
    overflow: hidden;
    /* Hide the overflowed part of the text */
    text-overflow: ellipsis;
    /* Show '...' at the end of the truncated text */
    max-width: 150px;
    /* Set the max width 
to control how much of the name to show */
}

.wishlist-btn .action-btn:hover {
    background: #ff3d3d !important;
    color: white !important;
    transform: scale(1.1);
}

.offer-badge span {
    transition: all 0.3s ease;
}

.offer-badge:hover span {
    transform: scale(1.1) rotate(-15deg);
}

.header-style-1 .search-style-2 form input {
    max-width: 600px;
    border-width: 0px;
    border-radius: 0 5px 5px 0;
    /*margin-left: 5px !important;*/
    background-color: #fff;
    border: none;
    padding-left: 15px;
        height: 36px;
}

.main-menu>nav>ul>li>a {
    display: inline-block;
    font-size: 14px !important;
    font-weight: 600;
    color: #2e2d2d;
    font-family: "Josefin Sans", sans-serif !important;
}
.main-menu.main-menu-padding-1 > nav > ul > li
{
    padding:0px 9px !important;
}
.main-menu.main-menu-lh-2 > nav > ul > li{
    line-height: 55px;
}
.header-style-1 .search-style-2 form {
    border: 3px solid #ffffff;
    border-radius: 7px;
    max-width: 97%;
      position: relative;
   height: 45px;
    
    background-color: #fff;
}
.header-style-1 .main-categori-wrap > a {
    color: #fff;
    line-height: 70px;
    background: #feee00 !important;
    padding: 0 30px;
}

.header-style-1 .main-categori-wrap>a.categories-button-active {
    line-height: 44px;
    border-radius: 12px;
    padding: 17px 22px !important;
    font-family: "Josefin Sans", sans-serif !important;
    font-size: 16px;
}

.section-padding {
    padding: 0px 0 !important;
}

.header2 {
    padding: 6px 27px !important;
    background: #feee00;
}
.searchbutton:hover {
    background-color: #ffffff00 !important;
}
.logo.logo-width-1 a img {
        min-width: 89px !important;
        width:49px !important;
    /* min-width: 68px; */
}

.offcanvas {
    position: fixed;
    top: 0;
    right: 0;
    width: 450px;
    height: 100%;
    background-color: #eaeaea;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.3);
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    z-index: 1050;
    display: flex;
    flex-direction: column;
    will-change: transform, opacity;
}

.offcanvas-body {
    flex-grow: 1;
    padding: 7px !important;
    overflow-y: auto;
    padding-bottom: 80px;
}

.offcanvas-footer {
    padding: 15px;
    background-color: #fff;
    text-align: center;
    position: sticky;
    bottom: 0;
    z-index: 10;
}

.checkout-btn {
    background-color: #fec62f;
    border: 1px solid #FEEE00;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: bold;
    color: #000000;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
}

.checkout-btn:hover {
    background-color: #fff !important;
    color: #2122b8 !important;
    border: 3px solid #2122b8 !important;
}

.offcanvas.show {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
}

.offcanvas-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid #dee2e6;
}

.offcanvas-body {
    padding: 1rem;
}

#offcanvasOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.521);
    z-index: 1049;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

#offcanvasOverlay.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}


.btn-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.cart-text {
    padding-left: 0px;
    font-size: 16px !important;
}

.offcanvas-body::-webkit-scrollbar {
    width: 14px;
}

.offcanvas-body::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.offcanvas-body::-webkit-scrollbar-thumb {
    background-color: #888;
    border-radius: 4px;
}

.offcanvas-body::-webkit-scrollbar-thumb:hover {
    background-color: #555;
}

.offcanvas-body {
    scrollbar-width: thin;
    scrollbar-color: #a5a0a057 #f1f1f1e0;
    padding-bottom:100px !important;
}

.item-img {
    height: 60px;
    width: 60px;
    border: 1px solid #E0E0E0;
    padding: 5px;
    border-radius: 5px;
}

.cart-body {
    display: flex;
    justify-content: space-between;
    background-color: #fff;
    border: 1px solid #fff;
    border-radius: 5px;
    /* padding: 5px; */
    align-items: center;
    margin-bottom: 19px;
}

.cart-product-details {
    margin-left: 0px;
}

/* .cart-product-details p {
    font-size: 15px;
    line-height: 19px;
    color: #000;
    outline: none;
} */

.cart-product-name1
{
    font-weight: 400 !important;
    font-size: 13px;
    line-height: 12px;
    color: #000;
    outline: none;
}

.page_head
{
    margin-left: 5%;
    color: #2122b8 !important;
}

.cart-product-varient, .product-price-display {
    font-size: 12px;
    color: black;
    font-weight: 600;
    line-height: 18px;
}

.product-price
{
    font-weight: 900 !important;
    font-size: 15px;
    line-height: 19px;
    color: #000;
    outline: none;
}

.cart-2nd-line {
    margin-top: -4px;
}

.cart-btn-group {
    display: flex;
}

.cart-add-btn {
    border: none !important;
    background-color: #d3f1e3;
    margin: 0px;
    height: 35px;
    width: 26px;

}

.first-btn {
    border-bottom-left-radius: 5px;
    border-top-left-radius: 5px;
}

.last-btn {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

.cart-details {
    background-color: #fff;
    border: 1px solid #fff;
    padding: 10px;
    border-radius: 5px;
}

.cart-details1 {
    background-color: #fff;
    border: 1px solid #fff;
    padding: 5px;
    border-radius: 5px;
    margin-top: 10px;
}

.cart-items-text {
    font-size: 15px;
    font-weight: 600;
    color: #000;
    margin-left: 5px;
    display: flex;
    align-items: baseline;
    height: 4px;
}

.add-cart {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px;
    /* border-top: 1px dashed #7E7E8E; */
    /* margin-top: 20px; */
    /* padding-top: 12px; */
}

.add-cart p {
    color: #000;
    font-size: 13px !important;
}

.add-more-btn {
    background-color: #2122b8;
    border: 1px solid #2122b8;
    border-radius: 5px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 15px;
}
.add-cart a:hover {
    color: #ffffff;
}

/* accordion style */

ul.accordion-list {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    margin: 0;
    list-style: none;
    background-color: #ffffff;

    li {
        position: relative;
        display: block;
        width: 100%;
        height: auto;
        background-color: #FFF;
        padding-top: 20px;
        cursor: pointer;

        &.active {
            h3 {
                &:after {
                    transform: rotate(180deg);
                }
            }
        }

        h3 {
            font-weight: 700;
            position: relative;
            display: block;
            width: 100%;
            height: auto;
            padding: 0 0 0 0;
            margin: 0;
            font-size: 15px;
            letter-spacing: 0.01em;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;

            &:after {
                content: "\f2f2";
                font-family: "material-design-iconic-font";
                position: absolute;
                right: 0;
                top: 0px;
                color: #2122b8;
                transition: all 0.3s ease-in-out;
                font-size: 26px;
            }

        }

        div.answer {
            position: relative;
            display: block;
            width: 100%;
            height: auto;
            margin: 0;
            padding: 0;
            cursor: pointer;

            p {
                position: relative;
                display: block;
                font-weight: 400;
                cursor: pointer;
                line-height: 150%;
                margin: 0 0 10px 0;
                font-size: 13px;
            }

        }
    }
}

.topay {
    max-width: 160px;
    margin-left: -21%;
    text-align: left;
    font-size: 13px;
}

.topay span {
    font-size: 12px;
    color: #000000;
    font-weight: 400 !important;
}

.topay2 {
    max-width: 213px;
    margin-left: 6px;
    text-align: left;
}

.topay2 span {
    font-size: 12px;
    color: #7E7E8E;
    font-weight: 300;
}

.payamount {
    font-size: 11px;
    text-align: right;
    margin-right: 6%;
    color: #000;
}

.savings-text {
       font-size: 9px !important;
    color: rgb(33 34 184) !important;
    padding: 2px 6px !important;
    border-radius: 20px !important;
    background: linear-gradient(270deg, rgb(179 179 255), rgba(34, 155, 82, 0)) !important;
    font-weight: 900;
}

.accordionheader, .delivery-body {
    padding-top: 10px;
}

h4 {
    font-size: 18px !important;
    display: flex;
    align-items: center;
    margin-left: -7px;
}

.accordionbody {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
}

.accordionbody-amount {
    text-align: right;
}

.accordionbody-amount p {
    color: #000;
}

.accordionbody-text p {
    font-size: 12px;
    color: #000;
}

.answer-border {
    border-top: 1px solid #7E7E8E;
    margin-top: 13px;
    width: 100%;
}

.payment-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.topay1 {
    font-size: 15px !important;
    font-weight: 600 !important;
    color: #000;
}

.text-muted1 {
    font-size: 14px;
    font-weight: 900 !important;
    color: #000000 !important;
}

.card {
    text-align: center;
    max-width: 167px;
}

.card-body1 {
    flex: 1 1 auto;
    padding: 10px;
    color: var(--bs-card-color);
}

.delivery-body {
    display: flex;
}

.second-card {
    margin-left: 10px;
}