﻿.banner {
    width: 100%;
    height: 296px;
    margin-top: 96px;
    position: relative;
    /* important */
    overflow: hidden;
}

.banner-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: fit-content;
    display: flex;
    /* justify-content: center; */
    align-items: center;
    flex-direction: column;
    margin-top: 38px;
}

.banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.batch-content {
    border: 1px solid #3333331a;
    border-radius: 37px;
    background: #cccccc3b;
    padding: 14px 16px;
    height: fit-content;
    width: fit-content;
    font-weight: var(--fw-600);
    font-size: var(--fz-16);
    line-height: 100%;
    color: var(--bg-primary);
}

.content-title {
    font-weight: var(--fw-400);
    font-size: 62px;
    line-height: 107%;
    letter-spacing: -5%;
    color: var(--bg-secondary);
    padding-top: 16px;
}

.content-description {
    font-weight: var(--fw-300);
    font-size: var(--fz-16);
    /*line-height: 100%;*/ /*by neha*/
    letter-spacing: 0%;
    color: var(--bg-secondary);
    padding-top: 16px;
    width: 534px;
    text-align: center;
}

@media screen and (max-width: 1024px) {
    .banner {
        margin-top: 83px;
        height: 286px;
    }

    .banner-container {
        margin-top: 48px;
    }

    .batch-content {
        height: 50px;
        font-weight: var(--fw-400);
    }

    .content-title {
        font-weight: var(--fw-400);
        font-size: 32px;
        line-height: 100%; /*by neha*/
        letter-spacing: -5%;
        color: var(--bg-secondary);
        padding: 0px 24px;
        padding-top: 20px;
        text-align: center; /*by neha*/
    }

    .content-description {
        font-weight: var(--fw-400);
        font-size: var(--fz-16);
        line-height: 115%; /*by neha*/
        letter-spacing: 0%;
        color: var(--bg-secondary);
        padding: 0px 24px;
        padding-top: 8px;
        width: 100%;
        text-align: center;
    }
}

/* review detail */

.main-detail-container {
    padding: 60px 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--bg-primary);
    overflow-y: hidden;
    gap: 42px;
}

    .main-detail-container .detail-content {
        display: flex;
        align-items: center;
        flex-direction: column;
        gap: 10px;
        min-width: 288px;
    }

        .main-detail-container .detail-content .image-container {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 62px;
            height: 62px;
            background: #f6f4f1;
            border: 1px solid #cccccc26;
            border-radius: 0px;
        }

        .main-detail-container .detail-content .total-count {
            font-weight: var(--fw-700);
            font-size: 32px;
            line-height: 32px;
            letter-spacing: 0%;
            text-align: center;
            color: var(--primary-color);
        }

        .main-detail-container .detail-content .total-title {
            font-weight: var(--fw-400);
            font-size: 14px;
            line-height: 20px;
            letter-spacing: 0.7px;
            text-align: center;
            text-transform: uppercase;
            color: #6b7280;
        }

@media screen and (max-width: 1024px) {
    .main-detail-container {
        padding: 30px 16px;
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
        background: var(--bg-primary);
    }

        .main-detail-container .detail-content .image-container {
            width: 52px;
            height: 52px;
        }

            .main-detail-container .detail-content .image-container img {
                width: 24px;
                height: 24px;
                object-fit: cover;
            }

        .main-detail-container .detail-content .total-count {
            font-size: 24px;
        }

        .main-detail-container .detail-content .total-title {
            font-size: 12px;
        }
}

/* review items slider */

.luvanshNewPage .reviewItemsSliderSection {
    background-color: var(--bg-secondary);
    padding: 66px 0 0;
    position: relative;
    overflow: hidden;
}

    .luvanshNewPage .reviewItemsSliderSection .title {
        font-size: 32px;
        color: #003743;
        line-height: 120%;
        font-weight: 400;
        text-align: center;
        padding-bottom: 51px;
    }

        .luvanshNewPage .reviewItemsSliderSection .title span {
            font-weight: 700;
        }

.luvanshNewPage .reviewItemsSwiper {
    padding: 0 80px;
    box-sizing: border-box;
    position: relative;
    overflow: visible;
}

.luvanshNewPage .reviewItems-slide {
    width: 335px;
    height: auto;
    display: flex;
    justify-content: center;
    box-sizing: border-box;
}

.luvanshNewPage .reviewItems-card {
    position: relative;
    width: 335px;
    height: 539px;
    flex-shrink: 0;
    border-radius: 0px;
    overflow: hidden;
}

    .luvanshNewPage .reviewItems-card::before {
        content: "";
        position: absolute;
        inset: 0 0 auto;
        height: 38%;
        background: linear-gradient( 180deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0) 100% );
        z-index: 2;
        pointer-events: none;
    }

.luvanshNewPage .reviewItems-card__poster,
.luvanshNewPage .reviewItems-card__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.luvanshNewPage .reviewItems-card__video {
    opacity: 0;
    transition: opacity 0.25s ease;
}

.luvanshNewPage .reviewItems-card.is-playing .reviewItems-card__poster {
    opacity: 0;
}

.luvanshNewPage .reviewItems-card.is-playing .reviewItems-card__video {
    opacity: 1;
}

.luvanshNewPage .reviewItems-card__overlay--top {
    position: absolute;
    top: 14px;
    left: 14px;
    right: 14px;
    z-index: 3;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.luvanshNewPage .reviewItems-card__user {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
}

.luvanshNewPage .reviewItems-card__avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.luvanshNewPage .reviewItems-card__name {
    margin: 0 0 2px;
    font-weight: var(--fw-500);
    font-size: 20px;
    line-height: 16px;
    color: #fff;
    padding-bottom: 4px;
}

.luvanshNewPage .reviewItems-card__badge {
    margin: 0;
    font-weight: var(--fw-500);
    font-size: 12px;
    line-height: 14px;
    color: #ffffff;
}

.luvanshNewPage .reviewItems-card__mute {
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
}

.luvanshNewPage .reviewItems-card__mute-icon--unmuted {
    display: none;
}

.luvanshNewPage
.reviewItems-card__mute:not(.is-muted)
.reviewItems-card__mute-icon--muted {
    display: none;
}

.luvanshNewPage
.reviewItems-card__mute:not(.is-muted)
.reviewItems-card__mute-icon--unmuted {
    display: block;
}

.luvanshNewPage .reviewItems-card__play,
.luvanshNewPage .reviewItems-card__pause {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    width: 56px;
    height: 56px;
    border: 0;
    background: transparent;
    padding: 0;
    cursor: pointer;
}

.luvanshNewPage .reviewItems-card__play-ring,
.luvanshNewPage .reviewItems-card__pause-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.72);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.luvanshNewPage .reviewItems-card__play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 24px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: #fff;
}

    .luvanshNewPage .reviewItems-card__play-icon::after {
        content: "";
        position: absolute;
        top: 50%;
        left: 54%;
        transform: translate(-50%, -50%);
        width: 0;
        height: 0;
        border-top: 5px solid transparent;
        border-bottom: 5px solid transparent;
        border-left: 7px solid var(--primary-color);
    }

.luvanshNewPage .reviewItems-card__pause {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.luvanshNewPage .reviewItems-card__pause-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 24px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: #fff;
}

    .luvanshNewPage .reviewItems-card__pause-icon::before,
    .luvanshNewPage .reviewItems-card__pause-icon::after {
        content: "";
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 3px;
        height: 10px;
        border-radius: 1px;
        background: var(--primary-color);
    }

    .luvanshNewPage .reviewItems-card__pause-icon::before {
        left: calc(50% - 4px);
    }

    .luvanshNewPage .reviewItems-card__pause-icon::after {
        left: calc(50% + 1px);
    }

.luvanshNewPage .reviewItems-card.is-playing .reviewItems-card__play {
    opacity: 0;
    pointer-events: none;
}

.luvanshNewPage .reviewItems-card.is-playing:hover .reviewItems-card__pause {
    opacity: 1;
    pointer-events: auto;
}

.luvanshNewPage .reviewItemsSliderSection .slider-arrows .reviewItemsPrev {
    position: absolute;
    left: 30px;
    top: 50%;
    z-index: 1;
    rotate: 180deg;
}

.luvanshNewPage .reviewItemsSliderSection .slider-arrows .reviewItemsNext {
    position: absolute;
    right: 30px;
    top: 50%;
    z-index: 1;
}

.luvanshNewPage .reviewItemsPrev.swiper-button-disabled,
.luvanshNewPage .reviewItemsNext.swiper-button-disabled {
    opacity: 0.3;
    pointer-events: none;
    cursor: default;
}

.luvanshNewPage .reviewItemsSliderSection .reviewItems-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 39px;
    padding-bottom: 39px;
}

.luvanshNewPage .reviewItemsSliderSection .description-mobile {
    display: none;
}

@media screen and (max-width: 600px) {
    .luvanshNewPage .reviewItemsSliderSection {
        padding: 0px;
        margin-top: -4px;
    }

        .luvanshNewPage .reviewItemsSliderSection .title {
            font-size: 22px;
            padding-bottom: 16px;
        }

        .luvanshNewPage .reviewItemsSliderSection .description-mobile {
            font-size: 14px;
            color: #003743;
            font-weight: 400;
            line-height: 120%;
            text-align: center;
            padding-bottom: 42px;
            width: 211px;
            margin: 0 auto;
            display: block;
        }

    .luvanshNewPage .reviewItemsSwiper {
        padding: 0 20px;
    }

    .luvanshNewPage .reviewItemsSliderSection .slider-arrows {
        display: none;
    }

    .luvanshNewPage .reviewItems-card__avatar {
        width: 42px;
        height: 42px;
    }

    .luvanshNewPage .reviewItems-card__name {
        font-size: 20px;
    }

    .luvanshNewPage .reviewItemsSliderSection .reviewItems-pagination {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 52px;
        padding-bottom: 20px;
    }
}

/* testimonial */

.luvanshNewPage .customerSliderSectionTestimonial {
    background-color: var(--bg-secondary);
    padding-top: 45px;
    padding-bottom: 0px;
    position: relative;
    overflow: hidden;
}

    .luvanshNewPage .customerSliderSectionTestimonial h3 {
        font-size: var(--fz-32);
        font-weight: var(--fw-400);
        text-align: center;
        text-transform: uppercase;
        color: var(--primary-color);
        line-height: 120%;
        margin-bottom: 17px;
        letter-spacing: 1px;
    }

        .luvanshNewPage .customerSliderSectionTestimonial h3 span {
            font-weight: var(--fw-700);
        }

    .luvanshNewPage .customerSliderSectionTestimonial .description {
        font-size: var(--fz-16);
        font-weight: var(--fw-400);
        text-align: center;
        color: var(--primary-color);
        line-height: 100%;
        padding-bottom: 38px;
        letter-spacing: 0%;
        width: 386px;
        margin: 0 auto;
    }

.luvanshNewPage .swiper {
    width: 100%;
    height: 100%;
}

.luvanshNewPage .customerSwiperTestimonial {
    padding: 0 80px;
    box-sizing: border-box;
    position: relative;
}

.luvanshNewPage .customerSlider-slide {
    background: #fff;
    padding: 20px;
    border-radius: 0px;
    height: 365px;
}

.luvanshNewPage .customerSliderSectionTestimonial .slider-arrows .customerPrev {
    position: absolute;
    left: 30px;
    top: 58%;
    z-index: 1;
    rotate: 180deg;
}

.luvanshNewPage .customerSliderSectionTestimonial .slider-arrows .customerNext {
    position: absolute;
    right: 30px;
    top: 58%;
    z-index: 1;
}

.customerPrev.swiper-button-disabled,
.customerNext.swiper-button-disabled {
    opacity: 0.3;
    pointer-events: none;
    cursor: default;
}

.luvanshNewPage .customerSliderSectionTestimonial .customer-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 36px;
    padding-bottom: 24px;
}

.luvanshNewPage .customerSliderSectionTestimonial .customerSlider-content img {
    width: 100%;
    height: 162px;
}

.luvanshNewPage .customerSliderSectionTestimonial .customerSlider-contentImg {
    display: flex;
    align-items: center;
    gap: 4px;
    overflow: hidden;
}

.luvanshNewPage
.customerSliderSectionTestimonial
.customerSlider-content
.cardTitle {
    color: var(--primary-color);
    font-weight: var(--fw-500);
    font-size: var(--fz-22);
    line-height: 140%;
    padding: 16px 0 0;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    /* number of lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.luvanshNewPage
.customerSliderSectionTestimonial
.customerSlider-content
.cardPara {
    font-size: var(--fz-16);
    font-weight: var(--fw-400);
    color: var(--primary-color);
    line-height: 160%;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* number of lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    padding-top: 10px;
}

@media (max-width: 600px) {
    .luvanshNewPage
    .customerSliderSectionTestimonial
    .customerSlider-content
    .cardTitle {
        font-size: var(--fz-14);
        line-height: 120%;
        padding: 10px 0 0;
    }

    .luvanshNewPage
    .customerSliderSectionTestimonial
    .customerSlider-content
    .cardPara {
        font-size: var(--fz-12);
        line-height: 160%;
        padding-top: 6px;
    }
}

.luvanshNewPage
.customerSliderSectionTestimonial
.customerSlider-content
.date-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .luvanshNewPage
    .customerSliderSectionTestimonial
    .customerSlider-content
    .date-container
    .date {
        font-size: var(--fz-14) !important;
        font-weight: var(--fw-400);
        color: var(--text-light);
        line-height: 160%;
        padding-top: 6px;
    }

    .luvanshNewPage
    .customerSliderSectionTestimonial
    .customerSlider-content
    .date-container
    .orangeIcon
    img {
        width: 52px;
        height: 52px;
        cursor: pointer;
    }

@media screen and (min-width: 1024px) {
    .luvanshNewPage
    .customerSliderSectionTestimonial
    .customerSlider-content
    .date-container
    .date {
        font-size: var(--fz-14);
        font-weight: var(--fw-400);
        color: var(--text-light);
        line-height: 160%;
        margin-top: -36px;
        padding-top: 0px;
    }

    .luvanshNewPage
    .customerSliderSectionTestimonial
    .customerSlider-content
    .date-container
    .orangeIcon {
        padding-top: 10px;
    }
}

@media screen and (max-width: 1024px) {
    .luvanshNewPage .customerSwiperTestimonial {
        margin: 0;
    }

    .luvanshNewPage .customerSliderSectionTestimonial .slider-arrows {
        display: none;
    }

    .luvanshNewPage .customerSliderSectionTestimonial {
        overflow: visible;
    }

    .luvanshNewPage .customerSwiperWrapper {
        margin-left: -25px;
    }

    .luvanshNewPage .customerSwiperTestimonial {
        margin: 0;
        padding-left: 0px;
        padding-right: 0px;
    }

    .customerSwiperTestimonial .swiper-slide {
        display: flex;
        justify-content: center;
    }

    .luvanshNewPage .customerSliderSectionTestimonial h3 {
        font-size: var(--fz-22);
        margin-bottom: 30px;
        line-height: 130%;
    }

    .luvanshNewPage .customerSliderSectionTestimonial .description {
        font-size: var(--fz-16);
        font-weight: var(--fw-400);
        text-align: center;
        color: var(--primary-color);
        line-height: 100%;
        padding-bottom: 38px;
        letter-spacing: 0%;
        width: 300px;
        margin: 0 auto;
    }

    .luvanshNewPage .customerSliderSectionTestimonial {
        padding-top: 42px;
    }

        .luvanshNewPage
        .customerSliderSectionTestimonial
        .customerSlider-content
        img {
            height: 94px;
        }

    .luvanshNewPage .customerSlider-slide {
        padding: 16px;
        padding-top: 20px;
        height: 243px;
    }
}

.luvanshNewPage
.customerSliderSectionTestimonial
.customerSlider-content
.date-container
.date {
    font-size: 10px;
}

@media screen and (max-width: 380px) {
    .luvanshNewPage
    .customerSliderSectionTestimonial
    .customerSlider-content
    img {
        height: 85px;
    }
}

/* ======================= customer review ================ */

.luvanshNewPage .customer-review-main-section {
    background: #f6f4f1;
    padding: 42px 80px;
}

    .luvanshNewPage .customer-review-main-section .customer-review-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .luvanshNewPage .customer-review-main-section .customer-review-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-bottom: 68px;
    }

        .luvanshNewPage .customer-review-main-section .customer-review-header .title {
            font-weight: var(--fw-400);
            font-size: 32px;
            line-height: 120%;
            letter-spacing: 4%;
            text-align: center;
            color: var(--primary-color);
            text-transform: uppercase;
        }

            .luvanshNewPage
            .customer-review-main-section
            .customer-review-header
            .title
            span {
                font-weight: var(--fw-700);
            }

        .luvanshNewPage
        .customer-review-main-section
        .customer-review-header
        .customer-review-filter-dropdown {
            position: relative;
        }

        .luvanshNewPage
        .customer-review-main-section
        .customer-review-header
        .customer-review-filter-btn {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            min-width: 172px;
            height: 46px;
            padding: 0 14px;
            border: 1px solid #cccccc80;
            background: #fff;
            cursor: pointer;
            outline: none;
            box-shadow: none;
        }

            .luvanshNewPage
            .customer-review-main-section
            .customer-review-header
            .customer-review-filter-btn:focus,
            .luvanshNewPage
            .customer-review-main-section
            .customer-review-header
            .customer-review-filter-btn:active {
                outline: none;
                box-shadow: none;
            }

        .luvanshNewPage
        .customer-review-main-section
        .customer-review-header
        .customer-review-filter-text {
            margin: 0;
            font-size: var(--fz-14);
            font-weight: var(--fw-500);
            line-height: 130%;
            color: var(--primary-color);
            white-space: nowrap;
        }

        .luvanshNewPage
        .customer-review-main-section
        .customer-review-header
        .customer-review-filter-btn
        img {
            flex-shrink: 0;
            transition: transform 0.25s ease;
        }

        .luvanshNewPage
        .customer-review-main-section
        .customer-review-header
        .customer-review-filter-btn.show
        img {
            transform: rotate(180deg);
        }

        .luvanshNewPage
        .customer-review-main-section
        .customer-review-header
        .customer-review-filter-dropdown
        .filter-DropdownMenu {
            border-radius: var(--br-2);
            padding: 8px;
            overflow-y: auto;
            gap: 6px;
            min-width: 100%;
            border: 1px solid rgba(204, 204, 204, 0.5);
            -ms-overflow-style: none;
            scrollbar-width: none;
        }

            .luvanshNewPage
            .customer-review-main-section
            .customer-review-header
            .customer-review-filter-dropdown
            .filter-DropdownMenu::-webkit-scrollbar {
                display: none;
            }

        .luvanshNewPage
        .customer-review-main-section
        .customer-review-header
        .customer-review-filter-dropdown
        .dropdown-menu.show {
            display: flex;
            flex-direction: column;
        }

        .luvanshNewPage
        .customer-review-main-section
        .customer-review-header
        .customer-review-filter-dropdown
        .filter-DropdownMenu
        .dropdown-item {
            padding: 8px 10px;
            background-color: #f5f4f0;
            color: #333333;
            font-size: var(--fz-12);
            font-weight: var(--fw-600);
            line-height: 130%;
            letter-spacing: 2%;
            text-transform: uppercase;
            border: 1.5px solid transparent;
            width: 100%;
            text-align: left;
        }

            .luvanshNewPage
            .customer-review-main-section
            .customer-review-header
            .customer-review-filter-dropdown
            .filter-DropdownMenu
            .dropdown-item.active,
            .luvanshNewPage
            .customer-review-main-section
            .customer-review-header
            .customer-review-filter-dropdown
            .filter-DropdownMenu
            .dropdown-item:hover {
                border-color: var(--primary-color);
                color: #000000 !important;
            }

    .luvanshNewPage .customer-review-main-section .customer-review-section {
        display: flex;
        flex-direction: column;
        gap: 32px;
    }

        .luvanshNewPage
        .customer-review-main-section
        .customer-review-section
        .customer-review-card {
            padding-bottom: 32px;
            border-bottom: 1px solid #cccccc80;
        }

            .luvanshNewPage
            .customer-review-main-section
            .customer-review-section
            .customer-review-card
            .customer-review-detail {
                display: flex;
                justify-content: space-between;
                align-items: center;
                padding-bottom: 14px;
            }

                .luvanshNewPage
                .customer-review-main-section
                .customer-review-section
                .customer-review-card
                .customer-review-detail
                .customer-name {
                    display: flex;
                    align-items: center;
                    gap: 8px;
                }

                    .luvanshNewPage
                    .customer-review-main-section
                    .customer-review-section
                    .customer-review-card
                    .customer-review-detail
                    .customer-name
                    img {
                        width: 62px;
                        height: 62px;
                        border-radius: 100%;
                    }

                    .luvanshNewPage
                    .customer-review-main-section
                    .customer-review-section
                    .customer-review-card
                    .customer-review-detail
                    .customer-name
                    .user-detail
                    .name {
                        font-weight: var(--fw-500);
                        font-size: 20px;
                        line-height: 16px;
                        color: #000000;
                        padding-bottom: 4px;
                    }

                    .luvanshNewPage
                    .customer-review-main-section
                    .customer-review-section
                    .customer-review-card
                    .customer-review-detail
                    .customer-name
                    .user-detail
                    .buyer {
                        font-weight: var(--fw-500);
                        font-size: 12px;
                        line-height: 14px;
                        color: #776d66;
                    }

                .luvanshNewPage
                .customer-review-main-section
                .customer-review-section
                .customer-review-card
                .customer-review-detail
                .posted-date {
                    padding: 8px;
                    background: #f3f4f5;
                    border: 1px solid #cccccc80;
                }

                    .luvanshNewPage
                    .customer-review-main-section
                    .customer-review-section
                    .customer-review-card
                    .customer-review-detail
                    .posted-date
                    .title {
                        font-weight: var(--fw-500);
                        font-size: 12px;
                        line-height: 14px;
                        color: #776d66;
                    }

            .luvanshNewPage
            .customer-review-main-section
            .customer-review-section
            .customer-review-card
            .review-content {
                font-weight: var(--fw-400);
                font-size: 16px;
                line-height: 160%;
                letter-spacing: -1%;
                color: var(--primary-color);
            }

            .luvanshNewPage
            .customer-review-main-section
            .customer-review-section
            .customer-review-card
            .rating-container {
                display: flex;
                align-items: center;
                gap: 10px;
                padding-top: 14px;
            }

                .luvanshNewPage
                .customer-review-main-section
                .customer-review-section
                .customer-review-card
                .rating-container
                .star-container {
                    display: flex;
                    align-items: center;
                    gap: 5px;
                }

                .luvanshNewPage
                .customer-review-main-section
                .customer-review-section
                .customer-review-card
                .rating-container
                .title {
                    font-weight: var(--fw-500);
                    font-size: 14px;
                    line-height: 14px;
                    color: #776d66;
                }

            .luvanshNewPage
            .customer-review-main-section
            .customer-review-section
            .customer-review-card
            .image-container {
                display: flex;
                align-items: center;
                gap: 12px;
                padding-top: 14px;
            }

                .luvanshNewPage
                .customer-review-main-section
                .customer-review-section
                .customer-review-card
                .image-container
                img {
                    width: 149px;
                    height: 160px;
                    object-fit: cover;
                }

    .luvanshNewPage .customer-review-main-section .load-btn {
        padding-top: 50px; /*by neha*/
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .luvanshNewPage .customer-review-main-section .load-btn .load-btn-container {
            padding: 10px 6px;
            display: flex;
            align-items: center;
            gap: 13px;
            border-bottom: 1.5px solid #002129;
            cursor: pointer;
        }

            .luvanshNewPage
            .customer-review-main-section
            .load-btn
            .load-btn-container:hover {
                background: linear-gradient( 180deg, rgba(0, 33, 41, 0) 0%, rgba(0, 115, 143, 0.1) 100% );
                transition: all 0.3s ease-in;
            }

            .luvanshNewPage
            .customer-review-main-section
            .load-btn
            .load-btn-container
            .title {
                font-weight: var(--fw-700);
                font-size: 16px;
                color: #002129;
            }

@media screen and (max-width: 1024px) {
    .luvanshNewPage .customer-review-main-section {
        background: #f6f4f1;
        padding: 42px 20px;
        padding-bottom: 24px;
    }

        .luvanshNewPage .customer-review-main-section .customer-review-header {
            display: flex;
            align-items: center;
            flex-direction: column;
            gap: 32px;
        }

        .luvanshNewPage .customer-review-main-section .customer-review-header {
            padding-bottom: 32px;
        }

            .luvanshNewPage .customer-review-main-section .customer-review-header .title {
                font-weight: var(--fw-400);
                font-size: 22px;
                line-height: 130%;
                letter-spacing: 4%;
                text-align: center;
                color: var(--primary-color);
                text-transform: uppercase;
            }

                .luvanshNewPage
                .customer-review-main-section
                .customer-review-header
                .title
                span {
                    font-weight: var(--fw-700);
                }

            .luvanshNewPage
            .customer-review-main-section
            .customer-review-header
            .customer-review-filter-btn {
                min-width: 100%;
                padding: 12.5px 14px;
            }

        .luvanshNewPage .customer-review-main-section .customer-review-section {
            display: flex;
            flex-direction: column;
            gap: 26px;
        }

            .luvanshNewPage
            .customer-review-main-section
            .customer-review-section
            .customer-review-card {
                padding-bottom: 32px;
                border-bottom: 1px solid #cccccc80;
            }

                .luvanshNewPage
                .customer-review-main-section
                .customer-review-section
                .customer-review-card
                .customer-review-detail {
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                    padding-bottom: 12px;
                }

                    .luvanshNewPage
                    .customer-review-main-section
                    .customer-review-section
                    .customer-review-card
                    .customer-review-detail
                    .customer-name {
                        display: flex;
                        align-items: center;
                        gap: 8px;
                    }

                        .luvanshNewPage
                        .customer-review-main-section
                        .customer-review-section
                        .customer-review-card
                        .customer-review-detail
                        .customer-name
                        img {
                            width: 52px;
                            height: 52px;
                            border-radius: 100%;
                        }

                        .luvanshNewPage
                        .customer-review-main-section
                        .customer-review-section
                        .customer-review-card
                        .customer-review-detail
                        .customer-name
                        .user-detail
                        .name {
                            font-weight: var(--fw-500);
                            font-size: 16px;
                            line-height: 16px;
                            color: #000000;
                        }

                        .luvanshNewPage
                        .customer-review-main-section
                        .customer-review-section
                        .customer-review-card
                        .customer-review-detail
                        .customer-name
                        .user-detail
                        .buyer {
                            font-weight: var(--fw-500);
                            font-size: 10px;
                            line-height: 14px;
                            color: #776d66;
                        }

                    .luvanshNewPage
                    .customer-review-main-section
                    .customer-review-section
                    .customer-review-card
                    .customer-review-detail
                    .posted-date {
                        padding: 8px;
                        background: #f3f4f5;
                        border: 1px solid #cccccc80;
                    }

                        .luvanshNewPage
                        .customer-review-main-section
                        .customer-review-section
                        .customer-review-card
                        .customer-review-detail
                        .posted-date
                        .title {
                            font-weight: var(--fw-500);
                            font-size: 12px;
                            line-height: 14px;
                            color: #776d66;
                        }

                .luvanshNewPage
                .customer-review-main-section
                .customer-review-section
                .customer-review-card
                .review-content {
                    font-weight: var(--fw-400);
                    font-size: 12px;
                    line-height: 160%;
                    letter-spacing: -1%;
                    color: var(--primary-color);
                }

                .luvanshNewPage
                .customer-review-main-section
                .customer-review-section
                .customer-review-card
                .rating-container {
                    display: flex;
                    align-items: center;
                    gap: 10px;
                    padding-top: 12px;
                }

                    .luvanshNewPage
                    .customer-review-main-section
                    .customer-review-section
                    .customer-review-card
                    .rating-container
                    .star-container {
                        display: flex;
                        align-items: center;
                        gap: 5px;
                    }

                    .luvanshNewPage
                    .customer-review-main-section
                    .customer-review-section
                    .customer-review-card
                    .rating-container
                    .title {
                        font-weight: var(--fw-500);
                        font-size: 14px;
                        line-height: 14px;
                        color: #776d66;
                    }

                .luvanshNewPage
                .customer-review-main-section
                .customer-review-section
                .customer-review-card
                .image-container {
                    display: flex;
                    align-items: center;
                    gap: 8px;
                    padding-top: 12px;
                }

                    .luvanshNewPage
                    .customer-review-main-section
                    .customer-review-section
                    .customer-review-card
                    .image-container
                    img {
                        width: 92px;
                        height: 100px;
                        object-fit: cover;
                    }

        .luvanshNewPage .customer-review-main-section .load-btn {
            padding-top: 32px;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

            .luvanshNewPage .customer-review-main-section .load-btn .load-btn-container {
                padding: 10px 20px;
                display: flex;
                align-items: center;
                gap: 13px;
                border-bottom: 1.5px solid #002129;
                cursor: pointer;
            }

                .luvanshNewPage
                .customer-review-main-section
                .load-btn
                .load-btn-container:hover {
                    background: linear-gradient( 180deg, rgba(0, 33, 41, 0) 0%, rgba(0, 115, 143, 0.1) 100% );
                    transition: all 0.3s ease-in;
                }

                .luvanshNewPage
                .customer-review-main-section
                .load-btn
                .load-btn-container
                .title {
                    font-weight: var(--fw-700);
                    font-size: 16px;
                    color: #002129;
                }
}

@media screen and (max-width: 600px) {
    .luvanshNewPage
    .customer-review-main-section
    .customer-review-section
    .customer-review-card
    .customer-review-detail
    .customer-name
    .user-detail
    .name {
        font-weight: var(--fw-500);
        font-size: 16px;
        line-height: 16px;
        color: #000000;
        max-width: 120px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .luvanshNewPage
    .customer-review-main-section
    .customer-review-section
    .customer-review-card
    .customer-review-detail
    .customer-name
    .user-detail
    .buyer {
        font-weight: var(--fw-500);
        font-size: 10px;
        line-height: 14px;
        color: #776d66;
        max-width: 120px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

@media screen and (max-width: 1024px) {
    .luvanshNewPage .customer-review-main-section {
        background: #f6f4f1;
        padding: 42px 20px;
        padding-bottom: 24px;
    }

        .luvanshNewPage .customer-review-main-section .customer-review-header {
            display: flex;
            align-items: center;
            flex-direction: column;
            gap: 20px; /*by neha*/
        }

        .luvanshNewPage .customer-review-main-section .customer-review-header {
            padding-bottom: 32px;
        }

            .luvanshNewPage .customer-review-main-section .customer-review-header .title {
                font-weight: var(--fw-400);
                font-size: 22px;
                line-height: 130%;
                letter-spacing: 4%;
                text-align: center;
                color: var(--primary-color);
                text-transform: uppercase;
            }

                .luvanshNewPage
                .customer-review-main-section
                .customer-review-header
                .title
                span {
                    font-weight: var(--fw-700);
                }

            .luvanshNewPage
            .customer-review-main-section
            .customer-review-header
            .customer-review-filter-btn {
                width: 100%;
                padding: 12.5px 14px;
            }

        .luvanshNewPage .customer-review-main-section .customer-review-section {
            display: flex;
            flex-direction: column;
            gap: 26px;
        }

            .luvanshNewPage
            .customer-review-main-section
            .customer-review-section
            .customer-review-card {
                padding-bottom: 32px;
                border-bottom: 1px solid #cccccc80;
            }

                .luvanshNewPage
                .customer-review-main-section
                .customer-review-section
                .customer-review-card
                .customer-review-detail {
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                    padding-bottom: 12px;
                }

                    .luvanshNewPage
                    .customer-review-main-section
                    .customer-review-section
                    .customer-review-card
                    .customer-review-detail
                    .customer-name {
                        display: flex;
                        align-items: center;
                        gap: 8px;
                    }

                        .luvanshNewPage
                        .customer-review-main-section
                        .customer-review-section
                        .customer-review-card
                        .customer-review-detail
                        .customer-name
                        img {
                            width: 52px;
                            height: 52px;
                            border-radius: 100%;
                        }

                    .luvanshNewPage
                    .customer-review-main-section
                    .customer-review-section
                    .customer-review-card
                    .customer-review-detail
                    .posted-date {
                        padding: 8px;
                        background: #f3f4f5;
                        border: 1px solid #cccccc80;
                    }

                        .luvanshNewPage
                        .customer-review-main-section
                        .customer-review-section
                        .customer-review-card
                        .customer-review-detail
                        .posted-date
                        .title {
                            font-weight: var(--fw-500);
                            font-size: 12px;
                            line-height: 14px;
                            color: #776d66;
                        }

                .luvanshNewPage
                .customer-review-main-section
                .customer-review-section
                .customer-review-card
                .review-content {
                    font-weight: var(--fw-400);
                    font-size: 12px;
                    line-height: 160%;
                    letter-spacing: -1%;
                    color: var(--primary-color);
                }

                .luvanshNewPage
                .customer-review-main-section
                .customer-review-section
                .customer-review-card
                .rating-container {
                    display: flex;
                    align-items: center;
                    gap: 10px;
                    padding-top: 12px;
                }

                    .luvanshNewPage
                    .customer-review-main-section
                    .customer-review-section
                    .customer-review-card
                    .rating-container
                    .star-container {
                        display: flex;
                        align-items: center;
                        gap: 5px;
                    }

                    .luvanshNewPage
                    .customer-review-main-section
                    .customer-review-section
                    .customer-review-card
                    .rating-container
                    .title {
                        font-weight: var(--fw-500);
                        font-size: 14px;
                        line-height: 14px;
                        color: #776d66;
                    }

                .luvanshNewPage
                .customer-review-main-section
                .customer-review-section
                .customer-review-card
                .image-container {
                    display: flex;
                    align-items: center;
                    gap: 8px;
                    padding-top: 12px;
                }

                    .luvanshNewPage
                    .customer-review-main-section
                    .customer-review-section
                    .customer-review-card
                    .image-container
                    img {
                        width: 92px;
                        height: 100px;
                        object-fit: cover;
                    }

        .luvanshNewPage .customer-review-main-section .load-btn {
            padding-top: 32px;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

            .luvanshNewPage .customer-review-main-section .load-btn .load-btn-container {
                padding: 10px 20px;
                display: flex;
                align-items: center;
                gap: 13px;
                border-bottom: 1.5px solid #002129;
                cursor: pointer;
            }

                .luvanshNewPage
                .customer-review-main-section
                .load-btn
                .load-btn-container:hover {
                    background: linear-gradient( 180deg, rgba(0, 33, 41, 0) 0%, rgba(0, 115, 143, 0.1) 100% );
                    transition: all 0.3s ease-in;
                }

                .luvanshNewPage
                .customer-review-main-section
                .load-btn
                .load-btn-container
                .title {
                    font-weight: var(--fw-700);
                    font-size: 16px;
                    color: #002129;
                }
}

/* ================ love us ===================== */

.luvanshNewPage .loved-by-customer {
    padding: 80px 80px 30px;
}

    .luvanshNewPage .loved-by-customer .loved-by-customer-title {
        display: flex;
        align-items: center;
        justify-content: center;
        padding-bottom: 42px;
    }

        .luvanshNewPage .loved-by-customer .loved-by-customer-title .title {
            font-weight: var(--fw-400);
            font-size: 32px;
            line-height: 120%;
            letter-spacing: 4%;
            text-transform: uppercase;
            color: var(--primary-color);
        }

            .luvanshNewPage .loved-by-customer .loved-by-customer-title .title span {
                font-weight: var(--fw-700);
            }

    .luvanshNewPage .loved-by-customer .content-container {
        width: 100%;
        display: flex;
        align-items: center;
        gap: 20px;
        padding-bottom: 42px;
    }

        .luvanshNewPage .loved-by-customer .content-container > img {
            height: 494px;
            width: 40%;
            object-fit: cover;
        }

        .luvanshNewPage .loved-by-customer .content-container .card-container {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            height: 494px;
        }

            .luvanshNewPage
            .loved-by-customer
            .content-container
            .card-container
            .card-item {
                padding: 16px;
                padding-bottom: 56px;
                border: 2.5px solid;
                border-image-source: linear-gradient( 180deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100% );
                background: #f6f4f1;
            }

                .luvanshNewPage
                .loved-by-customer
                .content-container
                .card-container
                .card-item
                .card-image-container {
                    width: 52px;
                    height: 52px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    background: #ffffff;
                    border: 1px solid #cccccc26;
                }

                .luvanshNewPage
                .loved-by-customer
                .content-container
                .card-container
                .card-item
                .title {
                    padding-top: 24px;
                    padding-bottom: 21px;
                    font-weight: var(--fw-400);
                    font-size: 20px;
                    line-height: 120%;
                    letter-spacing: 4%;
                    text-transform: uppercase;
                    color: #002129;
                }

                    .luvanshNewPage
                    .loved-by-customer
                    .content-container
                    .card-container
                    .card-item
                    .title
                    span {
                        font-weight: var(--fw-700);
                    }

                .luvanshNewPage
                .loved-by-customer
                .content-container
                .card-container
                .card-item
                .description {
                    font-weight: var(--fw-400);
                    font-size: 16px;
                    line-height: 130%; /*by neha*/
                    color: #333333;
                }

    .luvanshNewPage .loved-by-customer .load-btn {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .luvanshNewPage .loved-by-customer .load-btn .load-btn-container {
            padding: 10px 6px;
            display: flex;
            align-items: center;
            gap: 13px;
            border-bottom: 1.5px solid #002129;
            cursor: pointer;
        }

            .luvanshNewPage .loved-by-customer .load-btn .load-btn-container:hover {
                background: linear-gradient( 180deg, rgba(0, 33, 41, 0) 0%, rgba(0, 115, 143, 0.1) 100% );
                transition: all 0.3s ease-in;
            }

            .luvanshNewPage .loved-by-customer .load-btn .load-btn-container .title {
                font-weight: var(--fw-700);
                font-size: 16px;
                color: #002129;
            }

@media screen and (max-width: 1024px) {
    .luvanshNewPage .loved-by-customer {
        padding: 42px 20px 24px;
    }

        .luvanshNewPage .loved-by-customer .loved-by-customer-title {
            display: flex;
            align-items: center;
            justify-content: center;
            padding-bottom: 32px;
        }

            .luvanshNewPage .loved-by-customer .loved-by-customer-title .title {
                font-weight: var(--fw-400);
                font-size: 22px;
                line-height: 130%;
                letter-spacing: 4%;
                text-transform: uppercase;
                color: var(--primary-color);
            }

                .luvanshNewPage .loved-by-customer .loved-by-customer-title .title span {
                    font-weight: var(--fw-700);
                }

        .luvanshNewPage .loved-by-customer .content-container {
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
            padding-bottom: 32px;
        }

            .luvanshNewPage .loved-by-customer .content-container > img {
                /* height: 200px; */
                width: 100%;
                object-fit: cover;
            }

            .luvanshNewPage .loved-by-customer .content-container .card-container {
                display: grid;
                grid-template-columns: repeat(1, 1fr);
                gap: 20px;
                width: 100%;
                height: auto;
            }

                .luvanshNewPage
                .loved-by-customer
                .content-container
                .card-container
                .card-item {
                    padding: 28px 20px 30px 20px;
                    background: #f6f4f1;
                }

                    .luvanshNewPage
                    .loved-by-customer
                    .content-container
                    .card-container
                    .card-item
                    .card-image-container {
                        width: 52px;
                        height: 52px;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        background: #ffffff;
                        border: 1px solid #cccccc26;
                    }

                    .luvanshNewPage
                    .loved-by-customer
                    .content-container
                    .card-container
                    .card-item
                    .title {
                        padding-top: 20px;
                        padding-bottom: 20px;
                        font-weight: var(--fw-400);
                        font-size: 20px;
                        line-height: 120%;
                        letter-spacing: 4%;
                        text-transform: uppercase;
                        color: #002129;
                    }

                        .luvanshNewPage
                        .loved-by-customer
                        .content-container
                        .card-container
                        .card-item
                        .title
                        span {
                            font-weight: var(--fw-700);
                        }

                    .luvanshNewPage
                    .loved-by-customer
                    .content-container
                    .card-container
                    .card-item
                    .description {
                        font-weight: var(--fw-400);
                        font-size: 16px;
                        /* line-height: 100%;*/ /*by neha*/
                        color: #333333;
                    }

        .luvanshNewPage .loved-by-customer .load-btn {
            padding-top: 0px;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

            .luvanshNewPage .loved-by-customer .load-btn .load-btn-container {
                padding: 10px 6px;
                display: flex;
                align-items: center;
                gap: 13px;
                border-bottom: 1.5px solid #002129;
                cursor: pointer;
            }

                .luvanshNewPage .loved-by-customer .load-btn .load-btn-container:hover {
                    background: linear-gradient( 180deg, rgba(0, 33, 41, 0) 0%, rgba(0, 115, 143, 0.1) 100% );
                    transition: all 0.3s ease-in;
                }

                .luvanshNewPage .loved-by-customer .load-btn .load-btn-container .title {
                    font-weight: var(--fw-700);
                    font-size: 16px;
                    color: #002129;
                }
}

/* ============ share experience */

.luvanshNewPage .share-experience-main-container {
    background: #f6f4f1;
    padding: 65px 0px; /*by neha*/
    width: 100%;
}

    .luvanshNewPage .share-experience-main-container .form-container {
        max-width: 860px;
        width: 100%;
        margin: 0 auto;
    }

        .luvanshNewPage .share-experience-main-container .form-container .form-title {
            font-weight: var(--fw-400);
            font-size: 32px;
            line-height: 120%;
            letter-spacing: 4%;
            text-transform: uppercase;
            color: var(--primary-color);
            text-align: center;
            padding-bottom: 18px; /*by neha*/
        }

            .luvanshNewPage
            .share-experience-main-container
            .form-container
            .form-title
            span {
                font-weight: var(--fw-700);
            }

        .luvanshNewPage
        .share-experience-main-container
        .form-container
        .form-description-container {
            display: flex;
            align-items: center;
            justify-content: center;
        }

            .luvanshNewPage
            .share-experience-main-container
            .form-container
            .form-description-container
            .form-description {
                font-weight: var(--fw-400);
                font-size: 16px;
                /* line-height: 100%;*/ /*by neha*/
                letter-spacing: 0%;
                color: var(--primary-color);
                text-align: center;
                width: 510px;
            }

        .luvanshNewPage
        .share-experience-main-container
        .form-container
        .form-main-container {
            padding-top: 42px;
            padding-bottom: 24px;
        }

            .luvanshNewPage
            .share-experience-main-container
            .form-container
            .form-main-container
            .name-email-container {
                display: flex;
                align-items: center;
                gap: 24px;
                padding-bottom: 24px;
                width: 100%;
            }

                .luvanshNewPage
                .share-experience-main-container
                .form-container
                .form-main-container
                .name-email-container
                .name-container {
                    width: 50%;
                }

            .luvanshNewPage
            .share-experience-main-container
            .form-container
            .form-main-container
            .title {
                font-weight: var(--fw-600);
                font-size: 10px;
                line-height: 15px;
                letter-spacing: 1px;
                color: #333333;
                text-transform: uppercase;
                padding-bottom: 8px;
            }

            .luvanshNewPage
            .share-experience-main-container
            .form-container
            .form-main-container
            .name-email-container
            .name-container
            .name-input-container {
                padding: 14.5px 14px;
                background: #ffffff;
                border: 1px solid #0021294d;
                width: 100%;
                color: #666666;
                font-weight: var(--fw-400);
                font-size: var(--fz-14);
                line-height: 130%;
                letter-spacing: 2%;
                outline: none;
            }

            .luvanshNewPage
            .share-experience-main-container
            .form-container
            .form-main-container
            .rate-the-experience-container {
                padding-bottom: 30px;
            }

                .luvanshNewPage
                .share-experience-main-container
                .form-container
                .form-main-container
                .rate-the-experience-container
                .star-container {
                    display: flex;
                    align-items: center;
                    gap: 10px;
                }

                    .luvanshNewPage
                    .share-experience-main-container
                    .form-container
                    .form-main-container
                    .rate-the-experience-container
                    .star-container > img {
                        cursor: pointer;
                    }

            .luvanshNewPage
            .share-experience-main-container
            .form-container
            .form-main-container
            .review-container {
                width: 100%;
            }

                .luvanshNewPage
                .share-experience-main-container
                .form-container
                .form-main-container
                .review-container
                .review-input-container {
                    padding: 10px 14px;
                    background: #ffffff;
                    color: #6b7280;
                    border: 1px solid #0021294d;
                    width: 100%;
                    min-height: 143px;
                    font-weight: var(--fw-400);
                    font-size: var(--fz-16);
                    line-height: 24px;
                    letter-spacing: 0%;
                    outline: none;
                }

        .luvanshNewPage .share-experience-main-container .form-container .btn-submit {
            display: flex;
            align-items: center;
            height: 42px;
            padding: 0px 99px;
            width: fit-content;
            margin: 0 auto;
            outline: none;
            border: none;
            background: #002129;
            box-shadow: 0px 4px 20px 0px #0000000d;
            color: #fefefe;
            font-weight: var(--fw-700);
            font-size: 16px;
            cursor: pointer;
        }

            .luvanshNewPage
            .share-experience-main-container
            .form-container
            .btn-submit:hover {
                background-color: #044a59;
                box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.0509803922);
            }

.mobile-hide {
    display: block;
}

.desktop-hide {
    display: none;
}

@media screen and (max-width: 1440px) {
    .main-detail-container .detail-content {
        min-width: auto;
    }
}

@media screen and (max-width: 1390px) {
    .luvanshNewPage .loved-by-customer .content-container {
        flex-direction: column;
    }

        .luvanshNewPage .loved-by-customer .content-container > img {
            width: 100%;
            object-fit: cover;
        }
}

@media screen and (max-width: 1024px) {
    /* star-rating */
    .mobile-hide {
        display: none;
    }

    .desktop-hide {
        display: flex;
    }

    .luvanshNewPage .share-experience-main-container {
        background: #f6f4f1;
        padding: 35px 20px 35px 20px; /*by neha*/
        width: 100%;
    }

        .luvanshNewPage .share-experience-main-container .form-container {
            /* max-width: 860px; */
            width: 100%;
            /* margin: 0 auto; */
        }

            .luvanshNewPage .share-experience-main-container .form-container .form-title {
                font-weight: var(--fw-400);
                font-size: 20px;
                line-height: 120%;
                letter-spacing: 4%;
                text-transform: uppercase;
                color: var(--primary-color);
                text-align: start;
                padding-bottom: 20px;
                text-align: center;
            }

                .luvanshNewPage
                .share-experience-main-container
                .form-container
                .form-title
                span {
                    font-weight: var(--fw-700);
                }

            .luvanshNewPage
            .share-experience-main-container
            .form-container
            .form-description-container {
                display: flex;
                align-items: center;
                justify-content: start;
            }

                .luvanshNewPage
                .share-experience-main-container
                .form-container
                .form-description-container
                .form-description {
                    font-weight: var(--fw-400);
                    font-size: 14px;
                    /* line-height: 100%;*/ /*by neha*/
                    letter-spacing: 0%;
                    color: var(--primary-color);
                    text-align: center; /*by neha*/
                }

            .luvanshNewPage
            .share-experience-main-container
            .form-container
            .form-main-container {
                padding-top: 20px;
                padding-bottom: 36px;
            }

                .luvanshNewPage
                .share-experience-main-container
                .form-container
                .form-main-container
                .name-email-container {
                    display: flex;
                    align-items: center;
                    flex-direction: column;
                    gap: 20px;
                    padding-bottom: 20px;
                    width: 100%;
                }

                    .luvanshNewPage
                    .share-experience-main-container
                    .form-container
                    .form-main-container
                    .name-email-container
                    .name-container {
                        width: 100%;
                    }

                        .luvanshNewPage
                        .share-experience-main-container
                        .form-container
                        .form-main-container
                        .name-email-container
                        .name-container
                        .title {
                            font-weight: var(--fw-600);
                            font-size: 10px;
                            line-height: 15px;
                            letter-spacing: 1px;
                            color: #333333;
                            text-transform: uppercase;
                            padding-bottom: 8px;
                        }

                        .luvanshNewPage
                        .share-experience-main-container
                        .form-container
                        .form-main-container
                        .name-email-container
                        .name-container
                        .name-input-container {
                            padding: 14.5px 14px;
                            background: #ffffff;
                            border: 1px solid #0021294d;
                            width: 100%;
                            color: #666666;
                            font-weight: var(--fw-400);
                            font-size: var(--fz-12);
                            line-height: 130%;
                            letter-spacing: 2%;
                            outline: none;
                        }

                .luvanshNewPage
                .share-experience-main-container
                .form-container
                .form-main-container
                .rate-the-experience-container {
                    padding-bottom: 20px;
                    /* display: flex; */
                    /* align-items: center; */
                    flex-direction: column;
                    justify-content: center;
                }

                    .luvanshNewPage
                    .share-experience-main-container
                    .form-container
                    .form-main-container
                    .rate-the-experience-container
                    .title {
                        font-weight: var(--fw-600);
                        font-size: 12px;
                        line-height: 15px;
                        letter-spacing: 1px;
                        color: #333333;
                        text-transform: uppercase;
                        padding-bottom: 13px;
                    }

                    .luvanshNewPage
                    .share-experience-main-container
                    .form-container
                    .form-main-container
                    .rate-the-experience-container
                    .star-container {
                        display: flex;
                        align-items: center;
                        gap: 10px;
                    }

                        .luvanshNewPage
                        .share-experience-main-container
                        .form-container
                        .form-main-container
                        .rate-the-experience-container
                        .star-container > img {
                            cursor: pointer;
                        }

                .luvanshNewPage
                .share-experience-main-container
                .form-container
                .form-main-container
                .review-container {
                    width: 100%;
                }

                    .luvanshNewPage
                    .share-experience-main-container
                    .form-container
                    .form-main-container
                    .review-container
                    .title {
                        font-weight: var(--fw-600);
                        font-size: 10px;
                        line-height: 15px;
                        letter-spacing: 1px;
                        color: #333333;
                        text-transform: uppercase;
                        padding-bottom: 8px;
                    }

                    .luvanshNewPage
                    .share-experience-main-container
                    .form-container
                    .form-main-container
                    .review-container
                    .review-input-container {
                        padding: 10px 14px;
                        background: #ffffff;
                        color: #6b7280;
                        border: 1px solid #0021294d;
                        width: 100%;
                        min-height: 98px;
                        font-weight: var(--fw-400);
                        font-size: var(--fz-12);
                        line-height: 24px;
                        letter-spacing: 0%;
                        outline: none;
                        resize: none !important;
                        box-sizing: border-box;
                    }
}

.rating-error {
    color: #d32f2f;
    font-size: 12px;
    margin-top: 8px;
    display: none;
}

@media screen and (max-width: 600px) {
    .luvanshNewPage .share-experience-main-container .form-container .btn-submit {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 42px;
        width: 100%;
        outline: none;
        border: none;
        background: #002129;
        box-shadow: 0px 4px 20px 0px #0000000d;
        color: #fefefe;
        font-weight: var(--fw-700);
        font-size: 16px;
        cursor: pointer;
    }

    .main-detail-container .detail-content {
        min-width: auto;
    }

    .luvanshNewPage .loved-by-customer .content-container > img {
        height: 200px;
    }

    .luvanshNewPage
    .share-experience-main-container
    .form-container
    .form-main-container
    .rate-the-experience-container {
        padding-bottom: 20px;
        /* display: flex; */
        align-items: center;
        flex-direction: column;
        justify-content: center;
        justify-items: center;
    }

    .luvanshNewPage
    .share-experience-main-container
    .form-container
    .btn-submit:hover {
        background-color: #044a59;
        box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.0509803922);
    }
}

@media screen and (max-width: 370px) {
    .content-title {
        font-size: 28px;
    }

    .content-description {
        font-size: 14px;
        line-height: 120%;
    }
}

.luvanshNewPage
.share-experience-main-container
.form-container
.form-main-container
.reference-upload-container {
    width: 100%;
    padding-top: 0;
}

    .luvanshNewPage
    .share-experience-main-container
    .form-container
    .form-main-container
    .reference-upload-container
    .file-input {
        display: none;
    }

    .luvanshNewPage
    .share-experience-main-container
    .form-container
    .form-main-container
    .reference-upload-container
    .file-upload {
        position: relative;
        width: 100%;
        height: 49px;
        background: #ffffff;
        border: 1px solid #0021294d;
        display: flex;
        align-items: center;
        padding: 0 14px;
        cursor: pointer;
        box-sizing: border-box;
    }

        .reviewPlacehoder,
        .luvanshNewPage
        .share-experience-main-container
        .form-container
        .form-main-container
        .reference-upload-container
        .file-upload
        .placeholder {
            display: block;
            width: calc(100% - 34px);
            font-weight: var(--fw-400);
            font-size: var(--fz-14);
            line-height: 130%;
            color: #666666;
            opacity: 1;
            visibility: visible;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            position: relative;
            z-index: 1;
            background-color: transparent;
        }

        .luvanshNewPage
        .share-experience-main-container
        .form-container
        .form-main-container
        .reference-upload-container
        .file-upload
        .upload-icon {
            position: absolute;
            right: 14px;
            top: 50%;
            transform: translateY(-50%);
            width: 24px;
            height: 24px;
            object-fit: contain;
        }

/* thumbnail grid - by virali */
.file-thumb-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(84px, 1fr));
    gap: 10px;
    margin-top: 12px;
}

.file-thumb {
    position: relative;
    border: 1px solid #0021294d;
    background: #ffffff;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

    .file-thumb img,
    .file-thumb video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .file-thumb .thumb-fallback {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 4px;
        color: #666666;
        font-size: 10px;
        text-align: center;
        padding: 6px;
        box-sizing: border-box;
    }

        .file-thumb .thumb-fallback svg {
            width: 22px;
            height: 22px;
            stroke: #002129;
        }

    .file-thumb .thumb-name {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 33, 41, 0.75);
        color: #ffffff;
        font-size: 10px;
        line-height: 1.4;
        padding: 3px 5px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .file-thumb .thumb-remove {
        position: absolute;
        top: 4px;
        right: 4px;
        width: 20px;
        height: 20px;
        border: none;
        border-radius: 50%;
        background: rgba(0, 0, 0, 0.55);
        color: #ffffff;
        font-size: 12px;
        line-height: 1;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .file-thumb .thumb-remove:hover {
            background: #002129;
        }

    .file-thumb .thumb-video-badge {
        position: absolute;
        top: 4px;
        left: 4px;
        background: rgba(0, 33, 41, 0.75);
        color: #ffffff;
        font-size: 9px;
        padding: 2px 5px;
        letter-spacing: 0.5px;
        text-transform: uppercase;
    }

.upload-error {
    color: #d32f2f;
    font-size: 12px;
    margin-top: 8px;
    display: none;
}

.message-notification {
    width: 390px;
    background: #f7f6f1;
    border: 1px solid #d0c8bd;
    padding: 10px;
    text-align: center;
    transition: opacity 0.4s ease;
    position: fixed;
    top: 110px;
    right: 30px;
    z-index: 9999999;
}

    .message-notification .message-notification-text {
        font-size: 16px;
        font-weight: var(--fw-400);
        color: var(--primary-color);
    }

@media screen and (max-width: 600px) {
    .message-notification {
        width: calc(100% - 40px);
        right: 20px;
        left: 20px;
    }
}
