  .wc-testimonials-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 16px;
            position: relative;
        }
        
        .testimonials-header {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .testimonials-header h2 {
            font-size: 32px;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 10px;
        }
        
        .testimonials-header p {
            font-size: 16px;
            color: #7f8c8d;
        }
    
        .wc-testimonials-slider-track {
            overflow: hidden;
            width: 100%;
        }
        
        .wc-testimonials-slider {
            display: flex;
            transition: transform 0.6s ease-in-out;
            gap: 20px;
        }
        
        .wc-testimonial-item {
            flex: 0 0 auto;
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
            border: 2px solid #e8ecef;
            border-radius: 16px;
            padding: 20px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            box-sizing: border-box;
        }
        
        /* Mobile: 2 boxes */
        @media (max-width: 678px) {
            .wc-testimonials-wrapper {
                padding: 0 8px;
            }
            .wc-testimonial-item {
                width: calc((100% - 20px) / 2);
            }
           
            .wc-testimonial-item {
                padding: 10px !important;
            }
            .author-info h4 {
             font-size: 14px !important;   
            }
            .author-avatar img {
                width: 40px !important; 
                height: 40px !important;
            }
            
            .verified-buyer {
                font-size: 12px !important;
                white-space: nowrap !important;
            }
            
        }
        
        /* Tablet: 3 boxes */
        @media (min-width: 678px) and (max-width: 1024px) {
            .wc-testimonial-item {
                width: calc((100% - 40px) / 3);
            }
            
            .wc-testimonial-item {
                padding: 10px !important;
            }
            .author-info h4 {
             font-size: 14px !important;   
            }
            .author-avatar img {
                width: 40px !important; 
                height: 40px !important;
            }
          
            .verified-buyer {
                font-size: 12px !important;
                white-space: nowrap !important;
            }
            
            
        }
        
        /* Desktop: 4 boxes */
        @media (min-width: 1025px) {
            .wc-testimonial-item {
                width: calc((100% - 60px) / 4);
            }
        }
        
        .wc-testimonial-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 8px 30px rgba(0,0,0,0.15);
            border-color: #b87939;
        }
        
        .testimonial-content {
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        
        .testimonial-rating {
            margin-bottom: 15px;
            display: flex;
            gap: 4px;
        }
        
        .testimonial-rating .star {
            font-size: 24px;
            color: #ddd;
            transition: color 0.3s ease;
        }
        
        .testimonial-rating .star.filled {
            color: #f39c12;
            text-shadow: 0 0 10px rgba(243, 156, 18, 0.3);
        }
        
        .testimonial-text {
            flex-grow: 1;
            margin: 10px 0;
            min-height: 100px;
        }
        
        .testimonial-text p {
            font-size: 16px;
            line-height: 1.8;
            color: #555;
            font-style: italic;
            position: relative;
            padding-left: 20px;
        }
        
        .testimonial-text p:before {
            content: '"';
            position: absolute;
            left: 0;
            top: -10px;
            font-size: 40px;
            color: #b87939;
            font-family: Georgia, serif;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-top: 15px;
            padding-top: 10px;
            border-top: 2px solid #ecf0f1;
        }
        
        .author-avatar {
            position: relative;
        }
        
        .author-avatar img {
            border-radius: 50%;
            width: 50px;
            height: 50px;
            border: 2px solid #b87939;
            box-shadow: 0 4px 10px rgba(52, 152, 219, 0.3);
        }
        
        .author-info h4 {
            margin: 0 0 5px 0;
            font-size: 16px;
            font-weight: 700;
            color: #2c3e50;
        }
        
        .verified-buyer {
            font-size: 14px;
            color: #27ae60;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        .verified-buyer:before {
            content: '✓';
            display: inline-block;
            width: 18px;
            height: 18px;
            background: #27ae60;
            color: white;
            border-radius: 50%;
            text-align: center;
            line-height: 18px;
            font-size: 12px;
        }
        

        
        @media (max-width: 678px) {
          
            
            .testimonials-header h2 {
                font-size: 24px;
            }
            
            .testimonial-text p {
                font-size: 14px;
            }
        }
        
        /* Progress Dots */
        .testimonial-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;
        }
        
        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #bdc3c7;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .dot.active {
            background: #b87939;
            width: 30px;
            border-radius: 6px;
        }
        
        /* Animation */
        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .wc-testimonial-item {
            animation: slideIn 0.5s ease forwards;
        }