$primary: #72bf78 !default;
$bg-light: #f8f8f8 !default;
$bg-gray: #9999991a !default;
$gray-100: #99999980 !default;
$gray-200: #999999 !default;
$gray-300: #e6e6ec !default;
$gray-400: #e5e3e4 !default;
$white: #ffffff !default;
$black: #000000 !default;
$black-100: #141414 !default;



@font-face {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 400;
    src: url('../../../fonts/Poppins-Regular.ttf') format("truetype");
    font-display: swap;
}

@font-face {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 500;
    src: url('../../../fonts/Poppins-Medium.ttf') format("truetype");
    font-display: swap;
}

@font-face {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 600;
    src: url('../../../fonts/Poppins-SemiBold.ttf') format("truetype");
    font-display: swap;
}

@font-face {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 700;
    src: url('../../../fonts/Poppins-Bold.ttf') format("truetype");
    font-display: swap;
}

.text-gray-200 {
    color: $gray-200 !important;
}

body {
    font-family: "Poppins";
    font-weight: 400 !important;
    -webkit-font-smoothing: antialiased;
}

.btn {
    border-radius: 10px;
    font-weight: 500;
    padding: 8px 12px;
    font-size: 14px;
    transition: all 0.3s ease-in-out;

    &:focus,
    &:focus-visible {
        box-shadow: none !important;
        outline: none !important;
    }
}

.btn-primary {
    color: $black;
    background-color: $primary;
    border: 1px solid $primary;

    &:hover,
    &:focus,
    &.active {
        color: $primary;
        background-color: $black;
        border: 1px solid $primary;
    }
}

.section-heading {
    margin-bottom: 30px;

    @media (max-width: 575px) {
        margin-bottom: 20px;
    }

    h2 {
        font-size: 28px;
        font-weight: 500;

        @media (max-width: 991px) {
            font-size: 26px;
        }

        @media (max-width: 575px) {
            font-size: 24px;
        }
    }
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;

    @media (max-width: 575px) {
        margin-bottom: 20px;
    }
}

.mb-40 {
    margin-bottom: 40px;

    @media (max-width: 575px) {
        margin-bottom: 30px;
    }
}

.px-50 {
    padding-left: 50px;
    padding-right: 50px;

    @media (max-width: 991px) {
        padding-left: 30px;
        padding-right: 30px;
    }

    @media (max-width: 575px) {
        padding-left: 12px;
        padding-right: 12px;
    }
}

.pt-30 {
    padding-top: 30px;
}

.ps-45 {
    padding-left: 45px !important;
}

.fw-5 {
    font-weight: 500;
}

.fw-6 {
    font-weight: 600;
}

.fw-7 {
    font-weight: 700;
}

.fs-14 {
    font-size: 14px;

    @media (max-width: 575px) {
        font-size: 13px;
    }
}

.fs-16 {
    font-size: 16px;

    @media (max-width: 575px) {
        font-size: 14px;
    }
}

.fs-18 {
    font-size: 18px;

    @media (max-width: 575px) {
        font-size: 16px;
    }
}

.fs-20 {
    font-size: 20px;

    @media (max-width: 991px) {
        font-size: 18px;
    }

    @media (max-width: 575px) {
        font-size: 16px;
    }
}

.fs-22 {
    font-size: 22px;

    @media (max-width: 991px) {
        font-size: 18px;
    }

    @media (max-width: 575px) {
        font-size: 16px;
    }
}

.fs-24 {
    font-size: 24px;

    @media (max-width: 991px) {
        font-size: 18px;
    }

    @media (max-width: 575px) {
        font-size: 16px;
    }
}

a {
    text-decoration: none;
}

.main-content {
    max-width: 1300px;
    min-height: 100vh;
    position: relative;
    background-color: $bg-light;

    .bg-vector {
        position: absolute;
        z-index: 0;

        img {
            width: 100%;

            @media (max-width: 991px) {
                width: 75%;
            }

            @media (max-width: 575px) {
                width: 50%;
            }
        }

        &.bg-vector-1 {
            top: 45%;
            left: -45px;

            @media (max-width: 991px) {
                top: 30%;
                left: -35px;
            }

            @media (max-width: 575px) {
                top: 17%;
                left: -22px;
            }
        }

        &.bg-vector-2 {
            top: 52%;
            right: -55px;

            @media (max-width: 991px) {
                right: -40px;
            }

            @media (max-width: 575px) {
                top: 38%;
                right: -25px;
            }
        }

        &.bg-vector-3 {
            top: 63%;
            left: -26px;

            @media (max-width: 991px) {
                left: -24px;
            }

            @media (max-width: 575px) {
                top: 55%;
                left: -13px;
            }
        }

        &.bg-vector-4 {
            top: 74%;
            right: -26px;

            @media (max-width: 991px) {
                right: -16px;
            }

            @media (max-width: 575px) {
                top: 75%;
                right: -12px;
            }
        }

        &.bg-vector-5 {
            bottom: 10%;
            left: -62px;

            @media (max-width: 991px) {
                left: -47px;
            }

            @media (max-width: 575px) {
                bottom: 4%;
                left: -30px;
            }
        }

        &.bg-vector-6 {
            bottom: 18px;
            right: -24px;
            z-index: 1;

            @media (max-width: 991px) {
                bottom: 24px;
                right: -20px;
            }

            @media (max-width: 575px) {
                bottom: 30px;
                right: -12px;
            }
        }
    }
}

.object-fit-cover {
    object-fit: cover;
}

.view-more-btn {
    width: fit-content;
    background-color: $primary;
    color: $black;
    box-shadow:
        inset 0 4px 4px 0 rgba(0, 0, 0, 0.25),
        0 4px 4px 0 rgba(0, 0, 0, 0.25);
    padding: 8px 20px;
    border-radius: 30px;

    &:hover {
        background-color: $black;
        color: $primary;

        .arrow-btn {
            background-color: $primary;
            color: $white;
        }
    }

    .arrow-btn {
        width: 40px;
        height: 40px;
        border-radius: 40px;
        background-color: $white;
        box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

.slick-dots {
    li {
        width: 8px !important;
        height: 8px !important;
        padding: 0;

        button {
            width: 8px !important;
            height: 8px !important;
            padding: 0;
            border-radius: 8px;
            background-color: $gray-200 !important;

            &:before {
                display: none;
            }
        }

        &.slick-active {
            width: 24px !important;
            height: 8px !important;

            button {
                width: 24px !important;
                height: 8px !important;
                background-color: $primary !important;
            }
        }
    }
}

.slick-arrow {
    width: 40px;
    min-width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    border: none;
    background-color: #72bf781a;
    color: $primary;
    position: absolute;
    top: -60px;

    @media (max-width: 991px) {
        width: 36px;
        min-width: 36px;
        height: 36px;
        top: -55px;
    }

    svg {
        fill: $primary;
    }

    &:hover,
    &:focus,
    &.active {
        background-color: $primary;
        color: $white;

        svg {
            fill: $white;
        }
    }

    &.prev-arrow {
        left: auto;
        right: 55px;

        @media (max-width: 991px) {
            right: 60px;
        }
    }

    &.next-arrow {
        right: 0;
    }
}

.navbar {
    padding: 10px 15px;
    border-radius: 15px;
    background-color: $primary;

    @media (max-width: 575px) {
        padding: 8px 10px;
    }

    .navbar-brand {
        width: 50px;
        min-width: 50px;
        height: 50px;
        border-radius: 10px;
        overflow: hidden;

        @media (max-width: 575px) {
            width: 40px;
            min-width: 40px;
            height: 40px;
        }
    }

    .language-dropdown {
        .dropdown-item {
            padding: 4px 10px;
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 500;
            font-size: 14px;

            &:hover {
                background-color: $primary;
                color: $white;
            }

            .flag {
                width: 20px;
                height: 20px;
                min-width: 20px;
                border-radius: 4px;
            }
        }

        .flag {
            width: 26px;
            height: 26px;
            min-width: 26px;
            border-radius: 5px;

            @media (max-width: 991px) {
                width: 20px;
                height: 20px;
                min-width: 20px;
            }
        }

        .dropdown-btn {
            border: none;
            background-color: transparent;
            font-weight: 500;
            font-size: 16px;
            padding: 0 26px 0 0;
            display: flex;
            align-items: center;
            gap: 8px;

            @media (max-width: 991px) {
                font-size: 14px;
                gap: 6px;
                padding: 0 22px 0 0;
            }
        }

        .dropdown-arrow {
            position: absolute;
            right: 4px;
            top: 0;
            bottom: 0;
            margin: auto;
            pointer-events: none;

            @media (max-width: 991px) {
                width: 10px;
            }
        }

        .dropdown-menu {
            right: 0;
            left: auto;
            min-width: 80px;
        }
    }

    .add-to-cart-btn {
        width: 50px;
        height: 50px;
        min-width: 50px;
        border-radius: 10px;
        background-color: #29292912;
        border: none;

        svg {
            fill: $black-100;
        }

        @media (max-width: 991px) {
            width: 40px;
            min-width: 40px;
            height: 40px;

            svg {
                width: 22px;
            }
        }

        @media (max-width: 360px) {
            width: 35px;
            min-width: 35px;
            height: 35px;

            svg {
                width: 21px;
            }
        }
    }
}

footer {
    padding: 13px 12px;
    background-color: $black-100;
    color: $white;
}



.category-section {
    .category-slider {
        margin-left: -6px;

        .slick-slide {
            padding: 6px;
        }
    }

    .category-item {
        box-shadow: 0 1px 5px #00000040;
        background-color: $white;
        border-radius: 15px;
        padding: 10px 15px;
        display: flex;
        align-items: center;
        gap: 15px;
        height: 70px;

        @media (max-width: 991px) {
            padding: 10px 20px;
            gap: 16px;
        }

        .category-item-grocery-desc {
            min-height: 43px !important;
            overflow: visible;
            max-height: 43px;
            display: flex;
            align-items: center;

            @media (max-width:576px) {
                display: -webkit-box;
                -webkit-line-clamp: 3;
                -webkit-box-orient: vertical;
                overflow: hidden;
                min-height: auto !important;
                max-height: fit-content !important;
            }
        }

        .category-img {
            width: 50px;
            height: 50px;
            min-width: 50px;

            @media (max-width: 991px) {
                width: 40px;
                height: 40px;
                min-width: 40px;
            }
        }

        h3 {
            word-break: break-word;
        }
    }
}

.product-section {
    margin-bottom: 190px;

    @media (max-width: 575px) {
        margin-bottom: 50px;
    }

    .product-card {
        border-radius: 40px;
        overflow: hidden;
        padding: 10px;
        border: 1px solid $gray-100;
        background-color: $white;

        @media (max-width: 575px) {
            max-width: 300px;
            margin: 0 auto;
        }

        .product-img {
            width: 100%;
            max-height: 180px;
            border-radius: 30px;
            overflow: hidden;
            display: flex;
            justify-content: center;
            align-items: center;
            aspect-ratio: 1.51;

            img {
                aspect-ratio: 1.51;
            }
        }

        .product-details {
            // background-color: $white;
            padding: 10px 0;
            // border: 1px solid $black;
            // border-radius: 0 0 20px 20px;
            // border-top: 0;

        }
    }
}


.items-section {
    margin-bottom: 285px;

    @media (max-width: 575px) {
        margin-bottom: 50px;
    }

    .items-filter-wrapper {
        padding: 10px;
        border-radius: 10px;
        box-shadow: 0 0 5px #00000040;
        background-color: $white;

        .form-control {
            border-radius: 6px;
            background-color: $white;
            border: 1px solid $gray-100;
            font-size: 14px;
            font-weight: 600;
            color: $gray-200;
            line-height: normal;

            padding: 8px 15px;

            &::placeholder {
                color: $gray-200;
            }

            &:focus {
                box-shadow: none;
                outline: none;
            }
        }

        .apply-btn {
            border-radius: 6px;
        }

        .heading-text {
            position: relative;
            border-bottom: 1px solid $gray-100;

            h3 {
                font-size: 18px;
                font-weight: 500;

                @media (max-width: 991px) {
                    font-size: 22px;
                }

                @media (max-width: 575px) {
                    font-size: 20px;
                }
            }
        }

        .form-check {
            .form-check-input {
                box-shadow: none !important;
                cursor: pointer;
                min-width: 16px;

                &:focus {
                    border-color: $primary;
                }

                &:checked {
                    background-color: $primary;
                    border-color: $primary;
                }
            }

            .form-check-label {
                color: $black;
                cursor: pointer;
            }
        }
    }

    .item-card {
        border-radius: 40px;
        overflow: hidden;
        padding: 10px;
        border: 1px solid $gray-100;
        background-color: $white;
        display: block;
        color: $black;

        @media (max-width: 575px) {
            max-width: 300px;
            margin: 0 auto;
        }

        .item-img {
            width: 100%;
            max-height: 180px;
            border-radius: 30px;
            overflow: hidden;
            display: flex;
            justify-content: center;
            align-items: center;
            aspect-ratio: 1.4;

            img {
                aspect-ratio: 1.4;
            }
        }

        .item-details {
            // background-color: $white;
            padding: 10px 0;
            // border: 1px solid $black;
            // border-radius: 0 0 20px 20px;
            // border-top: 0;

        }
    }

    .form-control {
        background-color: #9999991a;
        border: 1px solid $gray-200;
        border-radius: 10px;
        color: $gray-200;
        font-size: 16px;
        line-height: 1;
        font-weight: 600;
        padding: 12px 20px;

        &::placeholder {
            color: $gray-200;
        }

        &:focus {
            box-shadow: none;
        }
    }

    .search-icon {
        position: absolute;
        top: 13px;
        left: 10px;
        margin: auto;
    }

    .pagination {
        gap: 15px;

        .page-item {

            &:first-child,
            &:last-child {
                .page-link {
                    font-size: 28px !important;
                }
            }
        }
    }

    .page-item {
        .page-link {
            border: none;
            background-color: transparent;
            color: $black;
            width: 40px;
            height: 40px;
            min-width: 40px;
            border-radius: 10px;
            border: 1px solid $gray-100;
            padding: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 16px;
            font-weight: 500;
            box-shadow: none !important;

            @media (max-width: 991px) {
                font-size: 16px;
                width: 40px;
                height: 40px;
                min-width: 40px;
            }

            @media (max-width: 575px) {
                font-size: 14px;
                width: auto;
                height: auto;
                min-width: auto;
                border: none !important;
            }

            &.prev {
                margin-right: 20px;
                border: none;
                font-size: 20px !important;

                @media (max-width: 575px) {
                    margin-right: 10px;
                }

                &:hover {
                    background-color: transparent;
                    color: $black;
                }
            }

            &.next {
                margin-left: 20px;
                border: none;
                font-size: 20px !important;

                @media (max-width: 575px) {
                    margin-left: 10px;
                }

                &:hover {
                    background-color: transparent;
                    color: $black;
                }
            }

            &:hover,
            &.active {
                color: $white;
                background-color: $primary;
                border-color: $primary;
            }
        }

        &.disabled {
            .page-link {
                color: $gray-200;
            }
        }
    }
}

.modal {
    .modal-dialog {
        max-width: 1000px;
        padding: 12px;
        .modal-content {
            background-color: white;
            border: none;
            border-radius: 15px;
            padding: 20px;

            @media (max-width: 575px) {
                margin: 0;
            }

            .modal-body {
                table {
                    white-space: nowrap;

                    th {
                        background-color: $primary;
                        color: $white;
                    }

                    tbody {
                        td {
                            background-color: #72bf781f;
                            color: $black;
                        }
                    }

                    tfoot {
                        td {
                            background-color: #1414140d;
                            color: $black;
                        }
                    }

                    td,
                    th {
                        vertical-align: middle;
                        padding: 10px 20px;
                        border-top: 5px solid white;
                        border-bottom: 5px solid white;

                        &:first-child {
                            border-top-left-radius: 20px;
                            border-bottom-left-radius: 20px;
                        }

                        &:last-child {
                            border-top-right-radius: 20px;
                            border-bottom-right-radius: 20px;
                        }
                    }

                    tr.rtl {

                        td,
                        th {
                            &:first-child {
                                border-top-left-radius: 0px;
                                border-bottom-left-radius: 0px;
                                border-top-right-radius: 20px;
                                border-bottom-right-radius: 20px;
                            }

                            &:last-child {
                                border-top-right-radius: 0px;
                                border-bottom-right-radius: 0px;
                                border-top-left-radius: 20px;
                                border-bottom-left-radius: 20px;
                            }

                        }
                    }

                    .product-img {
                        max-width: 70px;
                        max-height: 70px;
                        min-width: 70px;
                        min-height: 70px;
                        border-radius: 10px;
                        padding: 12px;
                        overflow: hidden;

                        @media (max-width: 575px) {
                            max-width: 60px;
                            max-height: 60px;
                            min-width: 60px;
                            min-height: 60px;
                            padding: 8px;
                        }
                    }

                    .minus-btn,
                    .plus-btn,
                    .count-btn {
                        width: 30px;
                        height: 30px;
                        min-width: 30px;
                        border-radius: 10px;
                        padding: 0 !important;
                        background-color: transparent !important;
                        font-weight: 500;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        font-size: 18px;

                        @media (max-width: 575px) {
                            font-size: 16px;
                        }
                    }
                }

                .order-btn {
                    padding: 10px !important;
                }
            }
        }
    }
}

.modal-backdrop {
    background-color: transparent !important;
    opacity: 0 !important;
}

.custom-select-box {
    cursor: pointer;
    padding: 18px;
    background-color: $white;
    border-radius: 10px;

    @media (max-width: 991px) {
        padding: 17px 25px;
    }

    @media (max-width: 576px) {
        padding: 14px 20px;
    }
}

.custom-select-options {
    position: absolute;
    top: 54px;
    left: 0;
    right: 0;
    background-color: white;
    border-top: none;
    border-radius: 5px;
    overflow-y: auto;
    display: none;
    z-index: 10;
    box-shadow: 0px 1px 6px 0px #00000040;

    @media (max-width: 991px) {
        top: 62px !important;
    }

    @media (max-width: 576px) {
        top: 55px !important;
    }
}

.custom-select-option {
    padding: 8px 10px;
    cursor: pointer;

    &:hover,
    &.active,
    &:active &:focus {
        background-color: $primary;
        color: $white !important;
    }

}

.custom-arrow-select {
    right: 18px;
    top: 0;
    bottom: 0;

    @media (max-width: 576px) {
        right: 22px;
    }

    &.rtl-arrow {
        left: 20px;
        right: auto;
    }
}

.custom-dropdown {
    border-radius: 10px;
    padding: 19px 30px 19px 38px;

    @media (max-width: 991px) {
        padding: 15px 25px;
    }

    @media (max-width: 576px) {
        padding: 12px 20px;
    }

    .dropdown-toggle {
        svg {
            transition: 0.3s all ease-in-out;
        }

        &.show {
            svg {
                transform: rotate(180deg);
            }
        }

        &::after {
            content: none !important;
        }
    }
}


.item-details-section {
    .item-details-card {
        background-color: $white;
        box-shadow: 0 2px 10px 0 #00000040;
        padding: 25px 20px;
        border-radius: 10px;

        @media (max-width: 575px) {
            padding: 15px;
        }

        .details-img {
            background-color: #72bf780d;
            border-radius: 15px;
            padding: 10px;
            aspect-ratio: 1.083;

            img {
                border-radius: 10px;
            }
        }

        .left-slider {
            @media (min-width: 992px) {
                max-width: 124px !important;
            }
        }

        .slider-nav {
            margin: -5px 0;

            @media (max-width: 575px) {
                margin: 0 -5px;
            }

            .slick-slide {
                padding: 5px 0;

                @media (max-width: 575px) {
                    padding: 0 5px;
                }
            }
        }

        .thumbnail-img {
            width: 90px;
            aspect-ratio: 1;
            cursor: pointer;
            margin: auto;
            background-color: #f8fcf9;
            border-radius: 12px;
            padding: 5px;

            img {
                border-radius: 8px;
            }
        }
    }
}

.recommended-product-section {
    margin-bottom: 285px;

    @media (max-width: 575px) {
        margin-bottom: 50px;
    }

    .product-slider {
        margin-left: -10px;
        margin-right: -10px;

        .slick-slide {
            padding: 0 10px;

            .product-card {
                border-radius: 50px;
                overflow: hidden;
                padding: 10px;
                border: 1px solid $gray-100;
                background-color: $white;

                @media (max-width: 575px) {
                    max-width: 300px;
                    margin: 0 auto;
                }

                .product-img {
                    width: 100%;
                    max-height: 180px;
                    border-radius: 40px;
                    overflow: hidden;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    aspect-ratio: 1.51;

                    img {
                        aspect-ratio: 1.51;
                    }
                }

                .product-details {
                    padding: 10px 20px 20px 20px;

                }
            }
        }
    }
}

.bg-primary {
    background-color: $primary !important;
}

.btn-primary.disabled,
.btn-primary:disabled {
    background-color: $primary !important;
    border-color: $primary !important;
    color: $white !important;
}

.table-borderless {
    thead {
        tr {
            th {
                padding-top: 10px !important;
            }
        }
    }
}

.order-modal-dialog {
    .modal-content {
        padding: 20px 30px 30px 30px !important;
        border-radius: 20px !important;
        border: none !important;
        box-shadow: 0px 2px 10px 0px #00000040 !important;
        margin: 12px !important;
    }
}

.add-to-cart-w-140px {
    min-width: 140px !important;
}

.page-item {
    &.active {
        .page-link {
            background-color: $primary !important;
            border-color: $primary !important;
            color: $white !important;
        }
    }
}

.no-items-found {
    min-height: 500px;

    @media (max-width:576px) {
        min-height: 300px;
    }
}

.translate-middle {
    transform: translate(-135%, 20%) !important;
}

.banner-section {
    .banner-img {
        aspect-ratio: 1.857;
    }
        img {
            aspect-ratio: 1.857;
        }
.banner-video-wrapper{
    padding-top: 53.88%;
    position: relative;
    iframe{
        position: absolute !important;
        top:0;
        left: 0 !important;
        height: 100% !important;
    }
}
}
.slide-banner-arrow {
    position: absolute !important;
    top: 50% !important;
    z-index: 9999 !important;
    &.prev-arrow {
        left: 10px !important;

        @media (max-width: 991px) {
            left: 10px;
        }
    }

    &.next-arrow {
        right: 10px !important;
    }
    @media (max-width: 425px) {
        top: 40% !important;
    }
}
.slide-trending-arrow {
    position: absolute !important;
    top: 42% !important;
    z-index: 9999 !important;
    background-color: $primary !important;
    color: $white !important;
    &.prev-arrow {
        left: 0px !important;

        @media (max-width: 991px) {
            left: 10px;
        }
    }

    &.next-arrow {
        right: 0px !important;
    }
    @media (max-width: 425px) {
        top: 50% !important;
    }
}
.out-of-stock-text {
    font-size: .60em !important;
}

.pwa-support {
    width: 100%;
    max-width: 400px;
    height: auto !important;
    position: fixed !important;
    bottom: 20px;
    z-index: 99999 !important;
    background: white;
    padding: 24px;
    border-radius: 32px;
    box-shadow: 0 7px 8px 0 #848181, 0 0px 11px 0 #000000;
    ;
    left: 0;
    right: 0;
    margin: 0 auto;

    .pwa-heading {
        font-size: 20px;
        margin-bottom: 12px;
        font-weight: 600;
    }

    .pwa-text {
        margin-bottom: 16px;
        font-size: 0.875rem !important;
    }
}

.pwa-install-button {
    border-radius: 15px !important;
    color: $black;
    background-color: $primary;
    border: 1px solid $primary;

    &:hover,
    &:focus,
    &.active {
        color: $black;
    }
}

.pwa-cancel-button {
    background-color: #adb5bd !important;
    color: #000000 !important;
    border-radius: 15px !important;
    padding: 9px 26px !important;
    border: none !important;
    font-weight: 500 !important;
    font-size: 0.875rem !important;

    &:hover {
        background-color: #d1d5db !important;
        border: none !important;
        color: #000000 !important;
    }
}

.count-product {
    right: -12px;
    top: -3px;
}
.main-content{
    &.rtl{

        .category-section{
            .category-slider{
                .prev-arrow{
                    left: 10px !important;
                    right: auto !important;
                }
                .next-arrow{
                    left: 66px !important;
                    right: auto !important;
                }
            }
        }
    }
}

.modal-dialog.news-modal {
    max-width: 500px;
    width: 100%;
}

#newsLetter-content {
    padding: 1.75rem;
    border-radius: 0.475rem;
    background-color: $white;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

.newsmodal-title{
    color: $primary;
}


.email-input {
    max-width: 400px;
    margin: 0 auto;
    color: #5e6278 !important;
    display: flex;
    align-items: center;
    justify-content: space-between;

    input {
        flex-grow: 1;
        margin-right: 0.5rem;
    }

    .btn {
        padding: 5px 10px !important;
    }
}
.newsmodal-header {
    position: relative;

    .btn-close {
        position: absolute;
        top: -15px;
        right: -10px;
        width: 1.25rem;
        height: 1.25rem;
        background-size: 1.25rem;
        opacity: 1;
        filter: brightness(0) saturate(100%) invert(30%) sepia(20%) saturate(200%) hue-rotate(0deg) brightness(95%) contrast(95%);
    }
}

#email-send{
    background: $primary !important;
    color: white !important;
    font-size: 15px !important;
    border: none !important;
    border-radius: 8px !important;
}
.businesshour-item{
    border-radius: 25px;
    box-shadow: 0 1px 5px #00000040;
}
.time-icons{
    background-color: #72bf78;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: inset 0 4px 4px 0 rgba(0, 0, 0, 0.25), 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    @media (max-width: 575px) {
        width: 45px;
        height: 45px;
    }
}
.row-gap-3{
    row-gap: 16px !important;
}
.btn-section {
    position: absolute;
    top: 50%;
    right: 80px;
    z-index: 9;

    .fixed-btn-section {
        position: fixed;
        top: 50%;
        display: flex;
        align-items: center;

        .whatsapp-store-bars-btn {
            background-color: $primary;
        }

        .bars-btn {
            width: 65px;
            height: 65px;
            min-width: 65px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
        }

        .sub-btn {
            position: absolute;
            right: 75px;
            display: none;
            top: -55px;

            .whatsapp-store-btn-group {
                width: 50px;
                height: 50px;
                border-radius: 50%;
                display: flex;
                justify-content: center;
                align-items: center;
                background-color: $primary;
                border: none;

                i {
                    font-size: 24px;
                    color: white;
                }
            }
        }
    }
}

.btn-section.rtl {
    right: auto !important;
    left: 80px !important;
    top: 50% !important;

    .fixed-btn-section {
        .sub-btn {
            right: auto;
            left: 75px;
            top: -55px;
        }
    }
}
.zoom-container {
    overflow: hidden;
    cursor: crosshair;
    position: relative;
}
.zoomable-image {
    transition: transform 0.3s ease;
    transform-origin: center center;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.trending-videos-section {
    padding: 40px 0;
    width: 100%;
}

.trending-videos-slider {
    width: 100%;
    margin: 0 auto;
    padding: 0;
}

.trending-videos-slider .slick-list {
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.trending-videos-slider .slick-track {
    display: flex;
    align-items: flex-start;
}

.trending-videos-slider .slick-slide {
    padding: 0 5px;
    box-sizing: border-box;
}

.trending-video-slide {
    display: flex !important;
    justify-content: center;
}

.video-wrapper {
    position: relative;
    width: 210px;
    height: 430px;
    border-radius: 15px;
    overflow: hidden;
    margin: 0 auto;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.video-wrapper:hover {
    transform: translateY(-8px);
}

.video-wrapper iframe {
    width: 210px;
    height: 360px;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    display: block;
}

.video-click-overlay {
    position: absolute;
    top: 25px;
    left: 0;
    width: 210px;
    height: 360px;
    background: transparent;
    cursor: pointer;
    z-index: 10;
    border-radius: 15px;
}

.video-click-overlay:hover {
    background: rgba(255, 255, 255, 0.1);
    transition: background 0.3s ease;
}

/* Modal styles */
.video-popup-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    animation: videoFadeIn 0.3s ease;
}

@keyframes videoFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.video-modal-content {
    position: relative;
    margin: 2% auto;
    width: 90%;
    max-width: 1200px;
    height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
    transition: color 0.3s ease;
}

.video-modal-close:hover {
    color: #ff6b6b;
}

.video-modal-container {
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    position: relative;
    background: #000;
    border-radius: 10px;
    overflow: hidden;
}

.video-modal-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-wrapper iframe{
    border-radius: 30px 30px 30px 30px;
    position: relative;
    background: #72bf78;
    padding: 5px 5px 5px 5px;
    margin-top: 25px;
    text-align: center;
    justify-content: center;
    @media (max-width: 575px) {
        padding: 5px 5px 5px 5px;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .trending-videos-section {
        padding: 30px 0;
    }

    .trending-videos-slider .slick-slide {
        padding: 0 3px;
    }
}

@media (max-width: 768px) and (min-width: 481px) {
    .trending-videos-section {
        padding: 25px 0;
    }

    .video-modal-content {
        margin: 5% auto;
        width: 95%;
        height: 85%;
    }

    .video-modal-close {
        top: -35px;
        font-size: 30px;
    }
}

@media (max-width: 480px) {
    .trending-videos-section {
        padding: 20px 0;
    }

    .trending-videos-slider {
        padding: 0 15px;
    }

    .trending-videos-slider .slick-slide {
        padding: 0;
    }

    .video-wrapper {
        width: 180px;
        height: 375px;
    }

    .video-wrapper iframe {
        width: 180px;
        height: 350px;
    }

    .video-click-overlay {
        width: 180px;
        height: 350px;
    }

    .video-modal-content {
        margin: 8% auto;
        width: 95%;
        height: 80%;
    }

    .video-modal-close {
        top: -35px;
        font-size: 28px;
    }
}

@media (max-width: 360px) {
    .trending-videos-section {
        padding: 15px 0;
    }

    .trending-videos-slider {
        padding: 0 10px;
    }

    .video-wrapper {
        width: 160px;
        height: 335px;
    }

    .video-wrapper iframe {
        width: 160px;
        height: 310px;
    }

    .video-click-overlay {
        width: 160px;
        height: 310px;
    }
}

.main-content-term {
    max-width: 1300px;
    min-height: 100vh;
    position: relative;
    background-color: $bg-light;

    .bg-vector {
        position: absolute;
        z-index: 1;

        img {
            width: 100%;

            @media (max-width: 991px) {
                width: 75%;
            }

            @media (max-width: 575px) {
                width: 50%;
            }
        }

        &.bg-vector-1 {
            top: 45%;
            left: -45px;

            @media (max-width: 991px) {
                top: 30%;
                left: -35px;
            }

            @media (max-width: 575px) {
                top: 17%;
                left: -22px;
            }
        }

        &.bg-vector-2 {
            top: 52%;
            right: -55px;

            @media (max-width: 991px) {
                right: -40px;
            }

            @media (max-width: 575px) {
                top: 38%;
                right: -25px;
            }
        }

        &.bg-vector-3 {
            top: 63%;
            left: -26px;

            @media (max-width: 991px) {
                left: -24px;
            }

            @media (max-width: 575px) {
                top: 55%;
                left: -13px;
            }
        }

        &.bg-vector-4 {
            top: 74%;
            right: -26px;

            @media (max-width: 991px) {
                right: -16px;
            }

            @media (max-width: 575px) {
                top: 75%;
                right: -12px;
            }
        }

        &.bg-vector-5 {
            bottom: 10%;
            left: -62px;

            @media (max-width: 991px) {
                left: -47px;
            }

            @media (max-width: 575px) {
                bottom: 4%;
                left: -30px;
            }
        }

        &.bg-vector-6 {
            bottom: 18px;
            right: -24px;
            z-index: 1;

            @media (max-width: 991px) {
                bottom: 24px;
                right: -20px;
            }

            @media (max-width: 575px) {
                bottom: 30px;
                right: -12px;
            }
        }
    }
}

.store-announcement {
    background: #72bf781a;
    border-top: 2px solid #72bf78;
    border-bottom: 2px solid #72bf78;
    padding: 6px 0;
    font-weight: 600;
    color: #444;

    &__track {
        display: inline-flex;
        width: max-content;
        min-width: 100%;
        animation: beauty-store-announcement-scroll 30s linear infinite;
        will-change: transform;
    }

    &__content {
        display: inline-flex;
        flex-shrink: 0;
    }

    &__item {
        display: inline-block;
        padding-right: 3rem;
    }
}

@keyframes beauty-store-announcement-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.mobile-header-wrapper {
    margin-bottom: 20px;

    .mobile-search-container {
        .search-icon-box {
            position: absolute;
            left: 16px;
            top: 50%;
            transform: translateY(-50%);
            color: $gray-200;
            display: flex;
            align-items: center;
            z-index: 5;
        }

        .mobile-search-input {
            background-color: $white !important;
            border: 1px solid $gray-300 !important;
            border-radius: 12px !important;
            padding: 10px 16px 10px 48px !important;
            color: $black !important;
            font-size: 15px !important;
            font-weight: 400 !important;
            transition: all 0.3s ease !important;
            height: 48px !important;

            &::placeholder {
                color: $gray-200;
            }

            &:focus {
                border-color: $primary !important;
                box-shadow: 0 0 0 3px rgba(114, 191, 120, 0.1) !important;
            }
        }
    }

    .mobile-filter-btn {
        background-color: $white;
        border: 1px solid $gray-300;
        border-radius: 12px;
        width: 48px;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: $black;
        transition: all 0.3s ease;
        flex-shrink: 0;

        &:active {
            transform: scale(0.95);
            background-color: $primary;
            border-color: $primary;
            color: $white;
        }
    }

    .mobile-categories-nav {
        margin-top: 15px;

        .categories-track {
            display: flex;
            overflow-x: auto;
            gap: 10px;
            padding: 4px 0 10px;
            -ms-overflow-style: none;
            scrollbar-width: none;

            &::-webkit-scrollbar {
                display: none;
            }
        }

        .category-pill {
            background-color: $white;
            border: 1px solid $gray-300;
            border-radius: 10px;
            padding: 8px 20px;
            color: $black;
            font-size: 14px;
            font-weight: 500;
            white-space: nowrap;
            transition: all 0.25s ease;
            cursor: pointer;
            outline: none;

            &.active {
                background-color: $primary;
                color: $white;
                border-color: $primary;
                box-shadow: 0 4px 10px rgba(114, 191, 120, 0.2);
            }

            &:active {
                transform: scale(0.95);
            }
        }
    }
}

.offcanvas {
    &.bg-black-100 {
        background-color: $white !important;
    }

    .offcanvas-header {
        background-color: $white;
        border-bottom: 1px solid $gray-300 !important;

        .btn-close {
            filter: none;
        }
        .offcanvas-title {
            color: $black !important;
            font-weight: 600;
        }
    }

    .offcanvas-body {
        background-color: $white;

        .items-tabs, .items-filter-wrapper {
            background-color: transparent !important;
            padding: 0 !important;
        }

        .apply-btn {
            border-radius: 10px;
        }

        .heading-text {
            position: relative;
            padding-bottom: 15px;
            border-bottom: 1px solid #9993;
        }

        .date-posted {
            border: 1px solid #9999994d;
            padding: 15px 10px;
            border-radius: 5px;
        }

        .form-check-input {
            box-shadow: none !important;
            cursor: pointer;
            width: 15px;
            height: 15px;
            border-color: $gray-200;

            &:focus {
                border-color: $primary;
            }

            &:checked {
                background-color: $primary;
                border-color: $primary;
            }
        }

        .form-check-label {
            cursor: pointer;
            color: $black !important;
        }

        .form-select {
            border-radius: 10px !important;
            padding: 10px 15px !important;
            font-size: 14px !important;
            color: $black !important;
            border-color: rgba(0, 0, 0, 0.1) !important;

            &::placeholder {
                color: $gray-200 !important;
            }
        }
    }
}
