
    .review-section {
        width: 100%;
        padding: 100px 0;
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        position: relative;
        overflow: hidden;
    }

    /* HEADINGS */
    .review-heading {
        text-align: center;
        margin-bottom: 60px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
        padding: 0 20px;
    }
    .review-heading .sub-title {
        font-size: 16px;
        color: #6c757d;
        letter-spacing: 2px;
        font-weight: 600;
        text-transform: uppercase;
        margin-bottom: 15px;
    }
    .review-heading .main-title {
        font-size: 42px;
        font-weight: 600;
        color: #000;
        margin-bottom: 20px;
        line-height: 1.2;
    }
    .section-description {
        font-size: 18px;
        color: #6c757d;
        line-height: 1.6;
        max-width: 600px;
        margin: 0 auto;
    }

    /* SLIDER CONTAINER */
    .review-container {
        max-width: 1200px;
        margin: auto;
        overflow: hidden;
        position: relative;
        padding: 0 60px;
    }

    .review-track {
        display: flex;
        gap: 30px;
        transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    /* CARD */
    .review-card {
        min-width: calc(33.33% - 20px);
        background: #fff;
        padding: 35px 30px;
        border-radius: 16px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        transition: all 0.3s ease;
        display: flex;
        flex-direction: column;
        position: relative;
        overflow: hidden;
    }
    
    .review-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, #000, #6c757d);
    }
    
    .review-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    }

    /* Review Header */
    .review-header {
        display: flex;
        align-items: center;
        margin-bottom: 20px;
    }
    
    /* Avatar */
    .review-avatar {
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, #000, #495057);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 15px;
        flex-shrink: 0;
    }
    .review-avatar span {
        color: #fff;
        font-size: 18px;
        font-weight: 600;
    }
    
    .reviewer-info {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    
    /* Name */
    .review-name {
        font-size: 18px;
        font-weight: 600;
        color: #000;
        margin: 0;
    }
    
    .review-date {
        font-size: 14px;
        color: #adb5bd;
        margin-top: 5px;
    }

    /* Rating + Date */
    .review-meta {
        display: flex;
        align-items: center;
        margin-bottom: 20px;
    }
    .stars {
        display: flex;
        margin-right: 10px;
    }
    .stars i {
        color: #ffc107 !important;
        font-size: 16px;
        margin-right: 2px;
    }
    .rating-value {
        font-size: 16px;
        font-weight: 600;
        color: #495057;
    }

    /* TEXT */
    .review-text {
        font-size: 16px;
        line-height: 1.7;
        color: #495057;
        margin-bottom: 25px;
        flex-grow: 1;
    }
    
    /* Footer */
    .review-footer {
        display: flex;
        justify-content: flex-start;
    }
    
    .product-tag {
        background: #e9ecef;
        color: #495057;
        padding: 6px 12px;
        border-radius: 20px;
        font-size: 14px;
        font-weight: 500;
    }

    /* Navigation Dots */
    .review-nav {
        display: flex;
        justify-content: center;
        margin-top: 40px;
        gap: 10px;
    }
    
    .nav-dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        border: none;
        background: #dee2e6;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .nav-dot.active {
        background: #000;
        transform: scale(1.2);
    }
    
    /* Navigation Arrows */
    .nav-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: #fff;
        border: none;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
        z-index: 10;
    }
    
    .nav-btn:hover {
        background: #000;
        color: #fff;
    }
    
    .prev-btn {
        left: 0;
    }
    
    .next-btn {
        right: 0;
    }
    
    .nav-btn i {
        font-size: 18px;
    }

    /* RESPONSIVE */
    @media (max-width: 1024px) {
        .review-card {
            min-width: calc(50% - 15px);
        }
        
        .review-container {
            padding: 0 50px;
        }
    }
    
    @media (max-width: 768px) {
        .review-heading .main-title {
            font-size: 36px;
        }
        
        .review-container {
            padding: 0 40px;
        }
        
        .nav-btn {
            width: 40px;
            height: 40px;
        }
    }
    
    @media (max-width: 600px) {
        .review-card {
            min-width: 100%;
        }
        
        .review-heading .main-title {
            font-size: 32px;
        }
        
        .section-description {
            font-size: 16px;
        }
        
        .review-container {
            padding: 0 30px;
        }
        
        .nav-btn {
            width: 35px;
            height: 35px;
        }
        
        .nav-btn i {
            font-size: 14px;
        }
    }
