/* Reviews Section */
.westcotts-reviews {
    padding: 100px 0;
    background-color: #ecebe9;
}

.westcotts-reviews-content {
    text-align: center;
    animation: fadeInUp 0.8s ease-out;
}

.westcotts-reviews h2 {
    font-size: 2.8rem;
    margin-bottom: 60px;
    color: #4d5153;
    font-weight: 600;
    line-height: 1.2;
    position: relative;
    padding-bottom: 16px;
}

.westcotts-reviews h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background-color: #af8c59;
}

/* Reviews Cards Grid */
.westcotts-reviews-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.westcotts-review-card {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.westcotts-review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

/* Review Stars */
.westcotts-review-stars {
    margin-bottom: 24px;
}

.westcotts-review-stars i {
    color: #af8c59;
    font-size: 1.4rem;
    margin: 0 4px;
}

/* Review Text */
.westcotts-review-text {
    margin-bottom: 24px;
}

.westcotts-review-text p {
    font-size: 1.1rem;
    color: #4d5153;
    line-height: 1.8;
    font-style: italic;
    margin: 0;
}

/* Review Author */
.westcotts-review-author p {
    font-size: 1rem;
    color: #4d5153;
    font-weight: 600;
    margin: 0;
}

/* Tablet Responsive Design */
@media (max-width: 1024px) {
    .westcotts-reviews {
        padding: 80px 0;
    }
    
    .westcotts-reviews h2 {
        font-size: 2.4rem;
        margin-bottom: 50px;
    }
    
    .westcotts-review-card {
        padding: 35px;
    }
    
    .westcotts-review-stars i {
        font-size: 1.3rem;
    }
    
    .westcotts-review-text p {
        font-size: 1.05rem;
    }
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
    .westcotts-reviews {
        padding: 80px 0;
    }
    
    .westcotts-reviews-content {
        max-width: 500px;
        margin: 0 auto;
        padding: 0 20px;
    }
    
    .westcotts-reviews h2 {
        font-size: 2.2rem;
        margin-bottom: 40px;
    }
    
    .westcotts-reviews-cards {
        max-width: 100%;
    }
    
    .westcotts-review-card {
        padding: 30px 25px;
        border-radius: 12px;
    }
    
    .westcotts-review-stars {
        margin-bottom: 20px;
    }
    
    .westcotts-review-stars i {
        font-size: 1.2rem;
        margin: 0 3px;
    }
    
    .westcotts-review-text {
        margin-bottom: 20px;
    }
    
    .westcotts-review-text p {
        font-size: 1rem;
    }
    
    .westcotts-review-author p {
        font-size: 0.95rem;
    }
}

/* Small Mobile Responsive Design */
@media (max-width: 480px) {
    .westcotts-reviews {
        padding: 60px 0;
    }
    
    .westcotts-reviews-content {
        max-width: 90%;
        padding: 0 16px;
    }
    
    .westcotts-reviews h2 {
        font-size: 1.8rem;
        margin-bottom: 35px;
    }
    
    .westcotts-reviews h2::after {
        width: 100px;
    }
    
    .westcotts-review-card {
        padding: 25px 20px;
        border-radius: 10px;
    }
    
    .westcotts-review-stars {
        margin-bottom: 18px;
    }
    
    .westcotts-review-stars i {
        font-size: 1.1rem;
        margin: 0 2px;
    }
    
    .westcotts-review-text {
        margin-bottom: 18px;
    }
    
    .westcotts-review-text p {
        font-size: 0.95rem;
    }
    
    .westcotts-review-author p {
        font-size: 0.9rem;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .westcotts-reviews-content {
        animation: none;
    }
    
    .westcotts-review-card:hover {
        transform: none;
    }
}