    .review-modal-section {
        display: flex;
        width: 328px;
        height: 48px;
        padding: 12px 32px;
        justify-content: center;
        align-items: center;
        margin: auto;
        gap: 8px;
        flex-shrink: 0;
        margin-top: 2.5rem;
    }

    .review-modal-section p {
        color: #070707;
        font-size: 20px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        cursor: pointer;
    }

    .review-modal-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        display: none;
        justify-content: center;
        align-items: center;
        z-index: 9999999;
    }


    .review-modal {
        background-color: #fff;
        position: relative;
        max-width: 600px;
        border-radius: 6px;
        overflow: hidden;
    }

    .review-modal input, .review-modal textarea {
        border-radius: 6px;
    }

    .modal-header {
        display: flex;
        width: 600px;
        padding: 16px 32px;
        justify-content: space-between;
        align-items: center;
        background: #070707;
        color: #fff;
    }

    .modal-header p {
        margin: 0;
    }

    .modal-header span {
        cursor: pointer;
        font-size: 20px;
    }

    .review-form {
        background-color: #fff;
        padding: 20px;
        border-radius: 8px;
    }

    .form-group {
        margin-bottom: 1rem;
        margin-top: 2rem;
    }

    .form-group label {
        margin-bottom: 5px;
        color: #979797;
        text-align: right;
        font-size: 14px;
        font-style: normal;
        line-height: normal;
        margin-top: 1rem;
    }

    .form-group input[type="text"],
    .form-group input[type="email"],
    .form-group textarea {
        width: 100%;
        display: flex;
        padding: 12px 16px;
        align-items: center;
        gap: 16px;
        border: 1px solid #DEDEDE;
        background: #FEFEFE;
    }

    .form-group input[type="text"]::placeholder,
    .form-group input[type="email"]::placeholder,
    .form-group textarea::placeholder {
        color: #979797;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
    }

    .form-group input[type="text"].error,
    .form-group input[type="email"].error,
    .form-group textarea.error {
        border: 1px solid #BB3037;
    }


    .custom-file-input {
        position: relative;
        display: inline-block;
    }

    .input-file {
        position: absolute;
        left: 0;
        top: 0;
        opacity: 0;
        width: 100%;
        height: 100%;
        cursor: pointer;
    }

    .custom-button {
        display: inline-block;
        padding: 4px 24px;
        border: 1px solid #DEDEDE;
        background: #FEFEFE;
        cursor: pointer;
        position: relative;
        padding-left: 30px;
        border-radius: 6px;
    }

    .chose-icon {
        position: absolute;
        left: 5px;
        top: 50%;
        transform: translateY(-50%);
    }

    .file-name {
        display: inline-block;
        margin-left: 10px;
        color: #979797;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
    }


    .submit-button-modal {
        display: flex;
        width: 100%;
        height: 48px;
        padding: 12px 32px;
        justify-content: center;
        align-items: center;
        gap: 8px;
        color: #FEFEFE !important;
        font-size: 20px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        border: none;
        border-radius: 6px;
    }

    .rating-modal {
        font-size: 24px;
    }

    .star {
        cursor: pointer;
        color: #A5A5A5;
    }

    .star.clicked {
        color: #070707;
    }

    #charCount {
        float: right;
        color: #979797;
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        margin-top: 3px;
    }

    .header-modal-title {
        color: #FEFEFE;
        font-size: 20px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        padding: 8px;
    }

    .error-message {
        color: #BB3037;
        text-align: right;
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        float: right;
    }

    .desc-error .error-message {
        float: left !important;
    }

    .review-modal-success-popup {
        display: none;
        padding: 24px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 29px;
        background: #FEFEFE;
        box-shadow: 0px 2px 2px 0px rgba(14, 14, 33, 0.04), 0px 4px 6px 0px rgba(14, 14, 33, 0.04), 0px 6px 16px 0px rgba(14, 14, 33, 0.04), 0px 0px 10px 0px rgba(14, 14, 33, 0.06);

    }

    .popup-text {
        color: #070707;
        text-align: center;
        font-size: 18px;
        font-style: normal;
        font-weight: 600;
        line-height: normal;
        text-align: center;
    }

    .popup-text p {
        font-weight: 400;
    }

    .close {
        top: 4px !important;
        right: 6px !important;
        color: #fff !important;
    }

    .close-popup {
        float: right;
    }

    /* Media query for mobile devices */
    @media screen and (max-width: 600px) {
        .review-modal {
            width: 95%;
            max-width: 370px;
        }

        .modal-header {
            width: 100%;
            padding: 16px;
        }

        .modal-header p {
            font-size: 18px;
        }

        .form-group {
            margin-top: 1rem;
        }

        .form-group label {
            text-align: left;
            margin-top: 0.5rem;
        }

        .form-group input[type="text"],
        .form-group input[type="email"],
        .form-group textarea {
            padding: 10px;
            font-size: 14px;
        }

        .custom-button {
            padding: 10px 20px;
            font-size: 14px;
        }

        .chose-icon {
            width: 20px;
            left: 0;
        }

        .file-name {
            font-size: 14px;
        }

        .submit-button-modal {
            width: 100%;
            padding: 10px;
            font-size: 18px;
        }

        .rating-modal {
            font-size: 20px;
        }

        .star {
            font-size: 24px;
        }

        .close {
            top: 6px !important;
            right: 8px !important;
        }
    }

    @media screen and (max-width: 375px) {
        .review-modal {
            max-width: 350px;
        }
    }


    /* REVIEW COMMENTS SECTION CSS - ABSOLUTE POSITIONING */

    .reviews-masonry {
        position: relative;
        width: 100%;
    }

    .review {
        background: white;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        position: absolute;
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }

    .review img {
        width: 100%;
        height: auto;
        display: block;
        border-top-left-radius: 12px;
        border-top-right-radius: 12px;
    }

    .review-text {
        padding: 0.825rem;
    }

    .author-avatar {
        flex-shrink: 0;
    }

    .review-header {
        margin-bottom: 0.5rem;
    }

    .review-stars img {
        max-width: 70px;
    }

    .review-stars span {
        color: #efcc64;
        font-size: 16px;
    }

    .review-text p {
        font-size: 14px;
        margin: 0.5rem 0 0 0;
        line-height: 1.5;
    }

    .review-author {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        margin-bottom: 0.5rem;
    }

    .review-author .author-name {
        font-weight: 600;
        font-size: 14px;
    }

    .helpful-btn {
        background: none;
        border: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 0.25rem;
        padding: 0.25rem 0.5rem;
        border-radius: 4px;
        transition: background-color 0.3s ease;
        color: inherit;
    }

    .helpful-btn:hover {
        background-color: #f5f5f5;
    }

    .helpful-btn:hover img {
        transform: scale(1.2);
        transition: transform 0.3s ease;
    }

    .review-author img {
        max-width: 1rem;
        height: auto;
    }

    @keyframes rotate {
        0% {
            transform: rotate(0deg);
        }

        25% {
            transform: rotate(-5deg);
        }

        50% {
            transform: rotate(5deg);
        }

        75% {
            transform: rotate(-5deg);
        }

        100% {
            transform: rotate(0deg);
        }
    }

    .helpful-btn.clicked img {
        animation: rotate 0.5s ease;
        transform: scale(1.2);
    }

    .short-description.collapsed {
        max-height: 8em;
        overflow: hidden;
    }

    .short-description.expanded {
        max-height: none;
    }

    .add-comment {
        cursor: pointer;
        transition: opacity 0.3s ease;
    }

    .add-comment:hover {
        opacity: 0.8;
    }

    /* SEE MORE REVIEWS BUTTON & ANIMATIONS */
    .see-more-reviews-container {
        text-align: center;
        margin: 2rem 0 1rem 0;
        width: 100%;
    }

    .see-more-reviews-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 12px 24px;
        background-color: #fff !important;
        color: #333;
        border-radius: 0.5em;
        border: 2px solid rgb(55, 75, 117);
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        width: 100%;
        max-width: 320px;
        text-align: center;
    }

    .see-more-reviews-btn .review-loader {
        width: 16px;
        height: 16px;
        border: 2px solid #333;
        border-top: 2px solid transparent;
        border-radius: 50%;
        animation: spin 0.8s linear infinite;
        display: inline-block;
    }

    @keyframes spin {
        0% {
            transform: rotate(0deg);
        }

        100% {
            transform: rotate(360deg);
        }
    }

    @media (max-width: 1400px) {
        .review-text {
            padding: 0.75rem;
        }
    }

    @media (max-width: 1200px) {
        .review-text {
            padding: 0.7rem;
        }

        .review-text p {
            font-size: 13px;
        }
    }

    @media (max-width: 768px) {
        .review {
            border-radius: 10px;
        }

        .review-text {
            padding: 0.65rem;
        }

        .review-text p {
            font-size: 12px;
        }

        .review-author .author-name {
            font-size: 13px;
        }
    }

    @media (max-width: 576px) {
        .review {
            border-radius: 8px;
        }

        .review-text {
            padding: 0.6rem;
        }

        .see-more-reviews-btn {
            min-width: 180px;
            font-size: 14px;
            padding: 10px 20px;
        }
    }