$primary: #BF9157 !default;
$primary-100: #FFFFFF2B !default;
$primary-200: #2650d91a !default;
$gray: #585858 !default;
$gray-200: #C7C7C7 !default;
$white: #ffffff !default;
$black: #000000 !default;
$black-100: #1D1D1D !default;
$white-100: #f8fafc80 !default;
$black-200: #4C4C4C !default;
$gray-100: #ADADAD !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;
}

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

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

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

.btn-primary {
    color: $white !important;
    background-color: $primary !important;
    border: 1px solid $primary !important;

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

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

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

    @media (max-width: 576px) {
        margin-bottom: 12px;
    }
}

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

    @media (max-width: 576px) {
        margin-bottom: 15px;
    }
}

.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: 25px;
    padding-right: 25px;

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

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

.pt-40px {
    padding-top: 40px;

    @media (max-width: 576px) {
        padding-top: 30px;
    }
}

.pb-40px {
    padding-bottom: 40px;

    @media (max-width: 576px) {
        padding-bottom: 30px;
    }
}

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

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

    @media (max-width: 576px) {
        margin-bottom: 16px;
    }
}

.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-24 {
    font-size: 24px;

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

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

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

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

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

.row-gap-30px {
    row-gap: 30px;

    @media (max-width:576px) {
        row-gap: 20px;
    }
}

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

.text-primary {
    color: $primary !important;
}

a {
    text-decoration: none;
}

.section-heading {
    padding: 0px 15px;

    &::after {
        position: absolute;
        content: "";
        left: 0;
        bottom: -10px;
        border: 2px solid transparent;
        /* Create a base border for the gradient to show */
        border-image: linear-gradient(90deg, #000000 0%, #c5955a 50%, #000000 100%);
        border-image-slice: 1;
        /* Ensures the gradient is applied across the border */
        width: 100%;
        height: 2px;
    }
}

.vector {
    img {
        width: 100%;

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

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

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

            &:before {
                display: none;
            }
        }

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

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

.slick-arrow {
    width: 46px;
    min-width: 46px;
    height: 46px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: $white;
    position: absolute;
    border: none !important;
    z-index: 1;
    top: 40%;

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

    svg {
        fill: $gray-200;
    }

    &:hover,
    &:focus,
    &.active {
        svg {
            fill: $primary;
        }
    }

    &.prev-arrow {
        left: 0;
    }

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

.main-content {
    max-width: 1300px;
    min-height: 100vh;
    background-color: $black;
}

.nav-top {
    padding-top: 20px;
    padding-bottom: 20px;

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

.navbar {
    padding: 10px 20px;
    background-color: $primary-100;
    backdrop-filter: blur(4px);
    border-radius: 15px;

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

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

        @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;
            transition: .3s all ease-in-out;

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

            .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 22px 0 0;
            display: flex;
            align-items: center;
            gap: 8px;

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

        .dropdown-arrow {
            position: absolute;
            right: 0px;
            top: 0;
            bottom: 0;
            margin: auto;
            pointer-events: none;
            width: 14px;
            height: 8px;
        }

        .dropdown-menu {
            right: 0;
            left: auto;
            max-width: 100px;
            min-width: 100px;

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

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

        svg {
            fill: $white;
            width: 28px;
            height: 28px;
        }

        .cart-count {
            background-color: $primary;
            width: 16px;
            height: 16px;
            color: $black;
            top: 6px;
            right: 7px;
            border-radius: 50%;
            font-size: 12px;
            font-weight: 600;

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

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

            svg {
                width: 22px;
            }
        }

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

            svg {
                width: 17px;
            }
        }
    }
}

footer {
    padding: 28px 30px;
    background-color: $black-100;

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


.hero-img {
    aspect-ratio: 1.685;
    max-height: 772px;

    &:after {
        position: absolute;
        content: "";
        left: 0;
        bottom: 0px;
        background-image: url('../../../../public/assets/img/whatsapp_stores/restaurant/hero-vector.png');
        background-size: 100%;
        background-repeat: no-repeat;
        width: 100%;
        height: 100%;
        background-position: bottom;
        z-index: 0;
        pointer-events: none;
    }

    .hero-img-vector {
        aspect-ratio: 1.685;
        -webkit-mask-image: url('../../../../public/assets/img/whatsapp_stores/restaurant/hero-img-1-mask.png');
        mask-image: url('../../../../public/assets/img/whatsapp_stores/restaurant/hero-img-1-mask.png');
        mask-repeat: no-repeat;
        mask-size: 100%;
    }

    .vector-1 {
        left: 50px;
        bottom: -60px;

        @media (max-width: 991px) {
            left: 20px;
            bottom: -30px;
        }
    }

.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;
    &.prev-arrow {
        left: 10px !important;

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

    &.next-arrow {
        right: 10px !important;
    }
    @media (max-width: 425px) {
        top: 50% !important;
    }
}

.category-section {
    .category-slider {
        background-image: url('../../../../public/assets/img/whatsapp_stores/restaurant/category-bg.png');
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;

        .slick-list {
            max-width: 932px;
            margin: auto;
        }

        .slick-slide {
            padding: 0 12px;
        }

        .slick-dots {
            bottom: -20px !important;
        }

        .category-box {
            p {
                white-space: normal;
                word-break: keep-all;
            }

            .category-img {
                max-width: 112px;
                max-height: 100px;
                aspect-ratio: 1.12;
                margin-bottom: 17px;

                img {
                    aspect-ratio: 1.12;
                }

                @media (max-width: 576px) {
                    margin-bottom: 10px !important;
                }
            }
        }
    }
}

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

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

    .vector-2 {
        bottom: -110px;
        right: 50px;

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

    .btn-primary {
        max-width: 218px;
    }

    .product-card {
        border-radius: 40px;
        background-color: $black-100;
        box-shadow: 7.27px 6.54px 18.18px 3.64px #00000030;
        padding: 24px 15px;

        .product-img {
            aspect-ratio: 1.49;
            margin-bottom: 6px;
            border-radius: 30px;

            img {
                aspect-ratio: 1.49;
                border-radius: 30px;
            }
        }

    }
}

.view-more {
    margin-bottom: 135px;

    @media (max-width: 991px) {
        margin-bottom: 80px;
    }

    .vector-3 {
        left: 48px;
        top: 60px;

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

    .view-more-button {
        box-shadow: 0px 0px 24px 0px #00000059 inset;
        max-width: 180px;
        padding: 14px 20px;
        color: $primary;
        background-color: $white;
        border-top-right-radius: 40px;
        transition: 0.3s all ease-in-out;

        @media (max-width: 991px) {
            max-width: 140px;
            padding: 10px 15px;
            border-top-right-radius: 30px;
        }

        &:hover {
            color: $white;
            background-color: $primary;
            transition: 0.3s all ease-in-out;

            .view-arrow {
                background-color: $white;
                border: 1px solid $primary;
                outline: 5px solid $white;
                color: $primary;

                svg {
                    path {
                        fill: $primary !important;
                        stroke: $primary !important;
                    }
                }
            }
        }
    }

    .view-arrow {
        left: -20px;
        top: 0;
        bottom: 0;
        margin: auto 0;
        background-color: $primary;
        max-width: 56px;
        max-height: 56px;
        border: 1px solid $white-100;
        min-height: 56px;
        outline: 5px solid $primary;
        color: $white;
        transition: 0.3s all ease-in-out;

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

        svg {
            transition: 0.3s all ease-in-out;

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


.header {
    z-index: 3;
    padding-top: 20px;
    padding-bottom: 30px;
}

.vector-2 {
    bottom: 184px;
    right: 50px;

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

.vector-3 {
    bottom: 85px;
    left: 48px;

    @media (max-width: 991px) {
        left: 20px;
        bottom: 70px;
    }
}

.item-details-section {
    .item-details-card {
        background-color: $black-100;
        border-radius: 20px;
        padding: 20px;

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

        .details-img {
            aspect-ratio: 1.24;
            max-width: 510px;
            max-height: 410px;
            border-radius: 10px;

            img {
                border-radius: 10px;
                aspect-ratio: 1.24;
            }
        }

        .slider-nav {
            margin-left: -7px;
            margin-right: -7px;

            .slick-slide {
                padding: 0 7px;
            }

            .slick-dots {
                bottom: -35px !important;
            }

            .slick-current {
                .thumbnail-img {
                    &::after {
                        content: none !important;
                    }
                }
            }

            .thumbnail-img {
                aspect-ratio: 1.17;
                cursor: pointer;
                max-width: 117px;
                max-height: 100px;
                border-radius: 10px;

                &:after {
                    position: absolute;
                    left: 0;
                    top: 0;
                    content: "";
                    background-color: #0009;
                    width: 100%;
                    height: 100%;
                    border-radius: 10px;
                }

                img {
                    aspect-ratio: 1.17;
                    border-radius: 10px;
                }
            }
        }

        .product-detail-content {
            .gap-20px {
                gap: 20px;
            }

            p {
                color: $white !important;
            }

            .veg-img {
                max-height: 20px;
                max-width: 20px;
                min-width: 20px;
            }

            .product-details-box {
                max-width: 363px;

                .items-img {
                    max-width: 40px;
                    max-height: 40px;
                    min-height: 40px;
                    aspect-ratio: 1;
                    border-radius: 5px;

                    img {
                        aspect-ratio: 1;
                        border-radius: 5px;
                    }
                }
            }

            .add-to-cart-items {
                padding: 10px 70px !important;

                @media (max-width: 991px) {
                    padding: 8px 40px !important;
                }
            }
        }
    }
}

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

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

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

        .slick-slide {
            padding: 0 10px;

            .product-card {
                border-radius: 40px;
                background-color: $black-100;
                box-shadow: 7.27px 6.54px 18.18px 3.64px #00000030;
                padding: 20px 15px;

                .product-img {
                    max-height: 172px;
                    max-width: 256px;
                    aspect-ratio: 1.49;
                    margin-bottom: 6px;
                    border-radius: 30px;

                    img {
                        aspect-ratio: 1.49;
                        border-radius: 30px;
                    }
                }

            }
        }
    }
}


.hero-img {
    aspect-ratio: 2.138;
    max-height: 608px;

    &:after {
        position: absolute;
        content: "";
        left: 0;
        bottom: 0px;
        background-image: url('../../../../public/assets/img/whatsapp_stores/restaurant/hero-item-vector.png');
        background-size: 100%;
        background-repeat: no-repeat;
        width: 100%;
        height: 100%;
        background-position: bottom;
        z-index: 0;
    }

    .hero-img-vector {
        aspect-ratio: 2.138;
        -webkit-mask-image: url('../../../../public/assets/img/whatsapp_stores/restaurant/hero-img-items-mask.png');
        mask-image: url('../../../../public/assets/img/whatsapp_stores/restaurant/hero-img-items-mask.png');
        mask-repeat: no-repeat;
        mask-size: 100%;
    }

    .vector-1 {
        left: 157px;
        bottom: -17px;

        @media (max-width: 991px) {
            left: 20px;
            bottom: -30px;
        }
    }
}

.vector-3 {
    bottom: 85px;
    left: 48px;

    @media (max-width: 991px) {
        left: 20px;
        bottom: 60px;
    }
}

.vector-2 {
    bottom: 184px;
    right: 50px;

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

.vector-2-term {
    top: 50%;
    right: 50px;
}

.vector-3-term {
    top: 65%;
    left: 0;
}

.vector-2-product-detail {
    bottom: 260px;
    right: 50px;

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

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

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

    @media (max-width: 991px) {
        margin-bottom: 80px;
    }

    @media (max-width: 576px) {
        margin-bottom: 60px;
    }
}

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

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

    .btn-primary {
        max-width: 218px;
    }

    .product-card {
        border-radius: 40px;
        background-color: $black-100;
        box-shadow: 7.27px 6.54px 18.18px 3.64px #00000030;
        padding: 24px 15px;

        .product-img {
            aspect-ratio: 1.49;
            margin-bottom: 6px;
            border-radius: 30px;

            img {
                aspect-ratio: 1.49;
                border-radius: 30px;
            }
        }
    }



    .items-tabs {
        padding: 20px 15px;
        border-radius: 20px;
        background-color: $black-100;

        .tabs-heading {
            padding-bottom: 10px;
            border-bottom: 1px solid $gray-200;
        }

        .form-control {
            border-radius: 10px;
            background-color: $black-200;
            border: none !important;
            font-size: 14px;
            font-weight: 500;
            color: $white;
            line-height: normal;
            padding: 9px 12px;

            &::placeholder {
                color: $white;
                text-align: start;
            }

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

        .min-max-value {
            .form-control {
                color: $gray-200;

                &::placeholder {
                    color: $gray-200;
                    text-align: center;
                }
            }
        }

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

        .heading-text {
            padding-bottom: 5px;
            border-bottom: 1px solid $black-200;
        }

        .form-check-input {
            box-shadow: none !important;
            cursor: pointer;
            width: 18px;
            height: 18px;
            border-color: $black-200;
            margin-left: -32px;
            background-color: $black-100;

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

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

        .form-check {
            padding-left: 33px;
        }

        .btn {
            padding: 6px 10px !important;
            max-width: 100% !important;
        }

        .slider-container {
            height: 42px;
        }

        .slider-range {
            -webkit-appearance: none;
            appearance: none;
            top: 27px;
            height: 8px;
            background: $black-200;
            border-radius: 10px;
            pointer-events: none;
        }

        .slider-range::-webkit-slider-thumb {
            -webkit-appearance: none;
            appearance: none;
            height: 17px;
            width: 17px;
            background: $primary;
            border: 1px solid $white;
            border-radius: 50%;
            cursor: pointer;
            pointer-events: all;
            z-index: 2;
            position: relative;
        }

        .slider-range::after {
            content: attr(data-value);
            position: absolute;
            top: -30px;
            left: var(--tooltip-left, 0px);
            transform: translateX(-50%);
            color: $gray-200;
            font-size: 14px;
            font-weight: 500;
            white-space: nowrap;
            z-index: 5;
            pointer-events: none;
        }

        .search-icon {
            position: absolute;
            top: 7px;
            left: 15px;
            margin: auto;
        }
    }

    .pagination {
        gap: 20px;
    }

    .page-item {
        .page-link {
            border: none;
            background-color: $black-100;
            color: $gray-200;
            width: 40px;
            height: 40px;
            min-width: 40px;
            border-radius: 10px;
            padding: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 16px;
            font-weight: 600;
            box-shadow: none !important;
            transition: 0.3s all ease-in-out;

            @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;
            }

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

    .disabled {
        a {
            color: $gray-200;
        }
    }

    .arrow-page {
        border: none;
        background-color: $black-100;
        color: $primary;
        width: 64px;
        height: 64px;
        min-width: 64px;
        box-shadow: none !important;
        transition: 0.3s all ease-in-out;

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

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

    .prev {
        margin-right: 40px;
        transition: 0.3s all ease-in-out;

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

            svg {
                height: 16px;
            }
        }

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

    .next {
        margin-left: 40px;
        transition: 0.3s all ease-in-out;

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

            svg {
                height: 16px;
            }
        }

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

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

            .btn {
                font-size: 14px !important;
            }

            .recommended-section {
                padding: 20px;
                border-radius: 20px;
                background-color: $black-100;

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

                .recommended-box {
                    padding-bottom: 10px;
                    padding-top: 10px;
                    border-bottom: 1px solid $gray;

                    &:first-child {
                        padding-top: 0 !important;
                    }

                    &:last-child {
                        padding-bottom: 0 !important;
                        border-bottom: none !important;
                    }
                }

                .modal-img {
                    max-width: 60px;
                    max-height: 60px;
                    min-width: 60px;
                    aspect-ratio: 1;
                    border-radius: 10px;

                    img {
                        aspect-ratio: 1;
                        border-radius: 10px;
                    }
                }

                .modal-veg-img {
                    max-width: 15px;
                    max-height: 15px;
                    min-width: 15px;
                    aspect-ratio: 1;

                    img {
                        aspect-ratio: 1;
                    }
                }

                .add-to-cart {
                    padding: 5px 28px;
                }

                .count-btn {
                    padding: 7px 20px;
                    max-width: 107px;
                    min-width: 107px;
                }
            }

            .cart-section {
                padding: 20px;
                border-radius: 20px;
                background-color: $black-100;

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

                .cart-box {
                    .cart-details {
                        padding: 8px 0px;
                        border-bottom: 1px solid $gray;

                        &:first-child {
                            padding-top: 0 !important;
                        }
                    }
                }

                .cart-img {
                    max-width: 50px;
                    max-height: 50px;
                    min-width: 50px;
                    aspect-ratio: 1;

                    img {
                        aspect-ratio: 1;
                    }
                }

                .cart-count-btn {
                    padding: 5px 9px !important;
                }
            }
        }
    }
}

.modal-backdrop {
    background-color: #000000d9;
    backdrop-filter: blur(14px);
    opacity: 1 !important;
}

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

.restaurant-add-cart-modal {
    .product-img {
        max-width: 50px;
        max-height: 50px;
        min-width: 50px;
        border-radius: 10px;
        aspect-ratio: 1;

        img {
            border-radius: 10px;
            aspect-ratio: 1;
        }
    }

    .restaurant-white {
        color: white !important;
    }

    .gap-20 {
        gap: 20px;
    }

    .count-btn {
        border: 1px solid $white !important;
        border-radius: 25px !important;
        min-width: 75px !important;
        padding: 0 !important;
        max-width: 75px !important;

        button {
            padding: 4px 10px !important;
        }
    }

    .product-card-box {
        align-items: start !important;
    }

    table {
        thead {
            th {
                padding: 5px 10px;
            }
        }

        tbody {
            td {
                padding: 7px 10px;
            }
        }
    }
}

.custom-select-box {
    padding: 13px 13px 13px 15px;
    background-color: #9999991a;
    border-radius: 10px;
    color: $white !important;
}

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

.custom-select-option {
    padding: 10px;
    cursor: pointer;
    color: #ffffff !important;

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

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

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

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

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

    .modal-header {
        h5 {
            color: $white;
        }
    }

    label {
        color: $white !important;
    }

    .form-control {
        background-color: black !important;
        color: $white !important;

        &:focus {
            background-color: black !important;
        }
    }

    .iti__selected-dial-code,
    .iti__country {
        color: $white !important;
    }

    .iti__country-list {
        background-color: black !important;
    }

    .btn-close {
        background-image: url("../../../../public/assets/img/whatsapp_stores/restaurant/close-white.svg") !important;
    }
}

.addToCartBtn {
    width: 280px;
    height: 40px;

    @media (max-width: 991px) {
        width: 200px;
        height: 36px;
    }
}
.out-of-stock-text{
    font-size: .50em !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: $white;
    background-color: $primary;
    border: 1px solid $primary;
    &:hover,
    &:focus,
    &.active {
    color: $white;
    }
}
.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;
    }
}

.modal-backdrop {
    background-color: transparent;
}

.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: 30px 10px 30px 10px;
     position: relative;
    background: #1d1d1d;
    padding: 30px 10px 10px 10px;
    margin-top: 25px;
    text-align: center;
    justify-content: center;
    @media (max-width: 575px) {
        padding: 28px 10px 10px 10px;
    }
}
.time-icons{
    background-color: $primary;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: absolute;
    top: -25px;
    left: 0;
    right: 0;
    margin: auto;
    @media (max-width: 575px) {
        width: 45px;
        height: 45px;
        top: -23px;
    }
}
.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;
}

/* 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: #1d1d1d;
    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;
    }
}

.store-announcement {
    background: #1D1D1D;
    border-top: 2px solid #BF9157;
    border-bottom: 2px solid #BF9157;
    padding: 6px 0;
    font-weight: 600;
    color: white;
    overflow: hidden;

    &__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%);
    }
}

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

    .offcanvas-header {
        background-color: $black-100;

        .btn-close {
            filter: invert(1) grayscale(100%) brightness(200%);
        }
    }

    .offcanvas-body {
        background-color: $black-100;

        .items-tabs {
            padding: 0;
            background-color: transparent;
            box-shadow: none;
        }
    }
}

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

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

        .mobile-search-input {
            background-color: #1D1D1D !important;
            border: 1.5px solid rgba(255, 255, 255, 0.1) !important;
            border-radius: 16px !important;
            padding: 12px 16px 12px 48px !important;
            color: white !important;
            font-size: 15px !important;
            font-weight: 500 !important;
            transition: all 0.3s ease !important;
            height: 52px !important;

            &::placeholder {
                color: rgba(255, 255, 255, 0.4);
            }

            &:focus {
                border-color: #BF9157 !important;
                background-color: #252525 !important;
                box-shadow: 0 0 0 4px rgba(191, 145, 87, 0.1) !important;
            }
        }
    }

    .mobile-filter-btn {
        background-color: #1D1D1D;
        border: 1.5px solid rgba(255, 255, 255, 0.1);
        border-radius: 14px;
        width: 52px;
        height: 52px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        transition: all 0.3s ease;
        flex-shrink: 0;

        &:active {
            transform: scale(0.92);
            background-color: #BF9157;
            border-color: #BF9157;
            color: #121212;
        }
    }

    .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: #1D1D1D;
            border: 1.5px solid rgba(255, 255, 255, 0.08);
            border-radius: 12px;
            padding: 10px 24px;
            color: rgba(255, 255, 255, 0.9);
            font-size: 14px;
            font-weight: 700;
            white-space: nowrap;
            transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            outline: none;

            &.active {
                background-color: #BF9157;
                color: #000;
                border-color: #BF9157;
                box-shadow: 0 4px 12px rgba(191, 145, 87, 0.3);
                transform: translateY(-1px);
            }

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