/* ========== MEAL PREP TESTIMONIALS (EXACT DUPLICATE STYLES) ========== */

.mp-testimonials-fullwidth {
    width: 100vw;
    margin-left: 50%;
    transform: translateX(-50%);
    padding-left: 0;
    padding-right: 0;
    min-height: 100vh;
    /* Changed from height: 100vh */
    padding: 8vh 0;
    /* Adjusted padding */
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: visible;
    /* Changed from hidden */
    background: #0d0a04;
    /* Base background */
}

.mp-testimonials-fullwidth .section-header {
    max-width: 1200px;
    margin: 0 auto 1.5vh;
    /* Further reduced from 2vh */
    text-align: center;
}

.mp-testimonials-slider-outer {
    width: 100vw;
    overflow: hidden;
    position: relative;
}

.mp-testimonials-slider-inner {
    display: grid;
    grid-template-rows: repeat(2, 1fr);
    grid-auto-flow: column;
    grid-auto-columns: 1fr;
    gap: 1vh 2rem;
    /* Reduced from 1.5vh */
    width: max-content;
    animation: mp-testimonials-slide 40s linear infinite;
}

.mp-testimonial-card {
    width: 330px;
    min-width: 330px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 1.5vh 1.25rem;
    /* Reduced from 2vh */
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s;
}

@keyframes mp-testimonials-slide {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 1200px) {
    .mp-testimonial-card {
        width: 300px;
        min-width: 300px;
    }
}

@media (max-width: 1023px) {
    .mp-testimonials-fullwidth {
        width: 100%;
        margin: 0;
        margin-left: 0;
        transform: none;
        min-height: auto;
        padding: 60px 0;
        border-radius: 0 !important;
    }
}

@media (max-width: 900px) {
    .mp-testimonials-fullwidth .section-header {
        text-align: center;
        padding: 0 15px;
    }

    .mp-testimonials-slider-outer {
        width: 100%;
        overflow-x: hidden;
        overflow-y: auto;
        max-height: 60vh;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: rgba(224, 185, 115, 0.4) transparent;
        padding: 0 10px 10px;
    }

    .mp-testimonials-slider-inner {
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        grid-template-rows: unset !important;
        grid-auto-flow: unset;
        grid-auto-columns: unset;
        width: 100%;
        animation: none;
        gap: 15px;
        padding: 0;
    }

    .mp-testimonial-card {
        width: 100%;
        min-width: unset;
        flex-shrink: 0;
    }
}

.mp-testimonial-stars {
    height: min(15px, 2vh);
    margin-bottom: 1.5vh;
}

.mp-testimonial-card blockquote p {
    font-size: clamp(0.8rem, 1.8vmin, 0.9rem);
    line-height: 1.4;
    font-style: italic;
    margin-bottom: 2vh;
    color: #d9d9d9;
}

.mp-testimonial-author {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.mp-testimonial-author strong {
    color: #fff;
}

.mp-testimonial-author span {
    font-size: 0.85rem;
    color: #888;
}

/* CTA Button Styling (Added as NEW for this duplication) */
.mp-testimonials-cta {
    display: flex;
    justify-content: center;
    margin-top: 1.5vh;
    /* Reduced from 3vh */
}

.mp-review-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e0b973 0%, #ae8741 100%);
    color: #ffffff;
    font-family: 'Jost', sans-serif;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    padding: 18px 45px;
    border-radius: 100px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(224, 185, 115, 0.2);
}

.mp-review-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(224, 185, 115, 0.3);
}

/* Review Submission Modal Styles */
.review-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.review-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.review-modal-content {
    background: #14110b;
    border: 1px solid rgba(220, 169, 89, 0.2);
    border-radius: 24px;
    width: 90%;
    max-width: 500px;
    padding: 40px;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.4s ease;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.review-modal-overlay.active .review-modal-content {
    transform: translateY(0);
}

.review-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s;
}

.review-modal-close:hover {
    color: #fff;
}

.review-modal-content h3 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 25px;
    font-family: 'Jost', sans-serif;
    text-align: center;
}

.review-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.review-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.review-form-group label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.review-input,
.review-textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 12px 16px;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    outline: none;
    transition: border-color 0.3s;
}

.review-input:focus,
.review-textarea:focus {
    border-color: #e0b973;
}

.review-textarea {
    height: 100px;
    resize: none;
}

.stars-selector {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.star-option {
    font-size: 1.5rem;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.2);
    transition: color 0.2s;
}

.star-option.active,
.star-option:hover,
.star-option.hover {
    color: #e0b973;
}

.review-submit-btn {
    background: #e0b973;
    color: #000;
    border: none;
    border-radius: 30px;
    padding: 14px;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
    transition: all 0.3s;
}

.review-submit-btn:hover {
    background: #fff;
    box-shadow: 0 0 20px rgba(224, 185, 115, 0.4);
}

.review-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

@media (max-width: 480px) {
    .review-modal-content {
        padding: 30px 20px;
    }
}

/* Success Modal Specifics */
.success-modal {
    text-align: center;
}

.success-icon {
    width: 60px;
    height: 60px;
    background: rgba(144, 238, 144, 0.1);
    color: #90ee90;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 20px;
    border: 1px solid rgba(144, 238, 144, 0.2);
}

.success-modal p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
    line-height: 1.6;
}