/* ============================================
   CUSTOMER REVIEWS SECTION - COMPLETE CSS
   Modern, Responsive, Accessible
============================================ */

/* Reviews Section - Modern & Responsive */
.reviews-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.reviews-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #1a5f7a, #2ecc71, #1a5f7a);
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a2937;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 25%;
    width: 50%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #1a5f7a, transparent);
}

.section-subtitle {
    text-align: center;
    color: #64748b;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

/* Statistics Cards */
.review-statistics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.stat-item {
    background: white;
    border-radius: 16px;
    padding: 30px 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #1a5f7a, #2ecc71);
    opacity: 0;
    transition: opacity 0.3s;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(26, 95, 122, 0.15);
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-value {
    font-size: 3.2rem;
    font-weight: 800;
    color: #1a5f7a;
    margin-bottom: 8px;
    line-height: 1;
    background: linear-gradient(135deg, #1a5f7a, #2e86ab);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: #64748b;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    display: block;
}

.stat-stars {
    display: flex;
    justify-content: center;
    gap: 3px;
    font-size: 1.3rem;
}

.stat-stars .star {
    color: #ffd700;
    text-shadow: 0 2px 4px rgba(255, 215, 0, 0.3);
}

/* Reviews Container */
.reviews-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.reviews-wrapper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

/* Review Card */
.review-item {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.review-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(26, 95, 122, 0.1);
    border-color: #cbd5e1;
}

.review-item.featured-review {
    border: 2px solid #ffd700;
    background: linear-gradient(to bottom right, #fffdf6, #fff9e6);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #7c6a00;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
    z-index: 1;
}

/* Review Header */
.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a5f7a, #2e86ab);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.reviewer-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.reviewer-name {
    font-weight: 700;
    color: #1a2937;
    font-size: 1.1rem;
}

.badges-container {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.verified-badge {
    background: linear-gradient(135deg, #10b981, #34d399);
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}

.review-date {
    color: #94a3b8;
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
}

/* Review Rating */
.review-rating {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.rating-stars-static {
    display: flex;
    gap: 2px;
    font-size: 1.4rem;
}

.rating-stars-static .star {
    color: #ffd700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.rating-value {
    font-weight: 700;
    color: #1a5f7a;
    font-size: 1.1rem;
    background: #f0f9ff;
    padding: 4px 10px;
    border-radius: 20px;
}

/* Review Content */
.review-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a2937;
    margin-bottom: 15px;
    line-height: 1.4;
}

.review-text {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 1.05rem;
    position: relative;
    padding-left: 20px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.review-text::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -5px;
    font-size: 3rem;
    color: #e2e8f0;
    font-family: Georgia, serif;
    line-height: 1;
}

/* Admin Response */
.review-response {
    background: linear-gradient(to right, #f8fafc, #f1f8ff);
    border-left: 4px solid #1a5f7a;
    padding: 20px;
    margin-top: 25px;
    border-radius: 0 12px 12px 0;
    position: relative;
    overflow: hidden;
}

.review-response::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%231a5f7a' fill-opacity='0.05' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
}

.response-header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: #1a5f7a;
    margin-bottom: 10px;
    position: relative;
}

.response-header i {
    font-size: 1.2rem;
}

.response-text {
    color: #334155;
    line-height: 1.6;
    position: relative;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.response-date {
    color: #94a3b8;
    font-size: 0.85rem;
    margin-top: 10px;
    font-style: italic;
}

/* Review Actions */
.review-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
    flex-wrap: wrap;
    gap: 15px;
}

.helpful-btn {
    background: #f1f5f9;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

.helpful-btn:hover {
    background: #e2e8f0;
    color: #475569;
    transform: translateY(-2px);
}

.helpful-btn.active {
    background: #1a5f7a;
    color: white;
}

.helpful-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.report-btn {
    background: transparent;
    border: 1px solid #fecaca;
    color: #dc2626;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.85rem;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.report-btn:hover {
    background: #fef2f2;
}

.report-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Review Form */
.review-form-container {
    background: white;
    border-radius: 20px;
    padding: 40px;
    margin-top: 60px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    max-width: 800px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

.review-form-container h3 {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a2937;
    margin-bottom: 10px;
}

.form-subtitle {
    text-align: center;
    color: #64748b;
    margin-bottom: 30px;
    font-size: 1rem;
}

/* Star Rating Input */
.rating-input {
    margin-bottom: 30px;
    text-align: center;
}

.rating-label {
    display: block;
    color: #475569;
    margin-bottom: 15px;
    font-weight: 500;
    font-size: 1.1rem;
    width: 100%;
}

.rating-stars-input {
    display: inline-flex;
    gap: 5px;
    font-size: 2.8rem;
    cursor: pointer;
    margin-bottom: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.rating-stars-input .star {
    color: #e2e8f0;
    transition: all 0.2s ease;
    padding: 5px;
    border-radius: 50%;
}

.rating-stars-input .star:hover {
    color: #ffd700;
    transform: scale(1.2);
}

.rating-stars-input .star.active {
    color: #ffd700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.rating-hint {
    color: #94a3b8;
    font-size: 0.9rem;
    display: block;
    text-align: center;
    width: 100%;
}

/* Form Fields */
#reviewForm {
    display: flex;
    flex-direction: column;
    gap: 25px;
    width: 100%;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 25px;
    width: 100%;
}

.form-group {
    position: relative;
    width: 100%;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-label {
    display: block;
    color: #475569;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 0.95rem;
    width: 100%;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    color: #1a2937;
    background: white;
    transition: all 0.3s ease;
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #1a5f7a;
    box-shadow: 0 0 0 4px rgba(26, 95, 122, 0.1);
    background: #f8fafc;
}

.form-textarea {
    min-height: 150px;
    resize: vertical;
    line-height: 1.6;
    max-height: 300px;
}

.form-input.error,
.form-textarea.error {
    border-color: #ef4444;
    background-color: #fef2f2;
}

/* Submit Button */
.submit-button {
    background: linear-gradient(135deg, #1a5f7a 0%, #2e86ab 100%);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

.submit-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.7s;
}

.submit-button:hover {
    background: linear-gradient(135deg, #15475c 0%, #267495 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(26, 95, 122, 0.3);
}

.submit-button:hover::before {
    left: 100%;
}

.submit-button:active {
    transform: translateY(-1px);
}

.submit-button:disabled {
    background: #cbd5e1;
    cursor: not-allowed;
    transform: none;
}

.submit-button:disabled:hover::before {
    left: -100%;
}

.submit-button.loading {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Loading Animation */
.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Toast Notification */
.review-toast {
    position: fixed;
    top: 25px;
    right: 25px;
    background: linear-gradient(135deg, #10b981, #34d399);
    color: white;
    padding: 18px 25px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 350px;
    animation: slideInRight 0.4s ease, fadeOut 0.4s ease 2.6s forwards;
    border-left: 4px solid #059669;
}

.review-toast.error {
    background: linear-gradient(135deg, #ef4444, #f87171);
    border-left-color: #dc2626;
    box-shadow: 0 10px 30px rgba(239, 68, 68, 0.3);
}

.review-toast i {
    font-size: 1.4rem;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeOut {
    to {
        opacity: 0;
        transform: translateX(100%);
    }
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    margin-bottom: 30px;
}

.empty-icon {
    font-size: 4rem;
    color: #e2e8f0;
    margin-bottom: 20px;
}

.empty-state h3 {
    color: #1a2937;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.empty-state p {
    color: #64748b;
    max-width: 400px;
    margin: 0 auto 25px;
    line-height: 1.6;
}

/* Pagination */
.reviews-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.page-btn {
    background: white;
    border: 1px solid #e2e8f0;
    color: #475569;
    padding: 10px 18px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s;
    min-width: 45px;
    text-align: center;
    box-sizing: border-box;
}

.page-btn:hover:not(.active):not(:disabled) {
    background: #f8fafc;
    border-color: #cbd5e1;
    transform: translateY(-2px);
}

.page-btn.active {
    background: #1a5f7a;
    color: white;
    border-color: #1a5f7a;
}

.page-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Error Message */
.error-message {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 10px;
    margin-bottom: 20px;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* ============================================
   RESPONSIVE DESIGN
============================================ */

/* Mobile-first responsive design */
@media (max-width: 768px) {
    .reviews-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .review-statistics {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }
    
    .stat-item {
        padding: 25px 20px;
    }
    
    .stat-value {
        font-size: 2.8rem;
    }
    
    .review-item {
        padding: 25px 20px;
        border-radius: 16px;
    }
    
    .review-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .reviewer-info {
        width: 100%;
    }
    
    .review-date {
        align-self: flex-start;
    }
    
    .review-form-container {
        padding: 30px 20px;
        margin: 40px 0 0 0;
        border-radius: 16px;
        width: 100%;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .form-group.full-width {
        grid-column: 1;
    }
    
    .rating-stars-input {
        font-size: 2.2rem;
        gap: 3px;
    }
    
    .rating-hint {
        font-size: 0.85rem;
    }
    
    .submit-button {
        padding: 16px 20px;
        font-size: 1rem;
    }
    
    .form-input,
    .form-textarea {
        padding: 12px 15px;
        font-size: 0.95rem;
    }
    
    .rating-label {
        text-align: center;
        font-size: 1rem;
    }
    
    .featured-badge {
        position: static;
        margin-bottom: 15px;
        align-self: flex-start;
    }
    
    .reviews-container {
        padding: 0 10px;
    }
    
    .review-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }
    
    .helpful-btn,
    .report-btn {
        width: 100%;
        justify-content: center;
    }
    
    .reviews-pagination {
        gap: 5px;
    }
    
    .page-btn {
        padding: 8px 12px;
        min-width: 40px;
        font-size: 0.9rem;
    }
    
    /* Prevent horizontal scroll on mobile */
    html, body {
        overflow-x: hidden;
        width: 100%;
        position: relative;
    }
    
    .reviews-section .container {
        padding-left: 15px;
        padding-right: 15px;
        width: 100%;
        max-width: 100%;
    }
}

/* Extra small devices (phones under 480px) */
@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .reviewer-avatar {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .rating-stars-static {
        font-size: 1.2rem;
    }
    
    .review-title {
        font-size: 1.2rem;
    }
    
    .review-text {
        font-size: 1rem;
        padding-left: 15px;
    }
    
    .review-response {
        padding: 15px;
    }
    
    .review-form-container {
        padding: 20px 15px;
        border-radius: 12px;
    }
    
    .rating-stars-input {
        font-size: 1.8rem;
    }
    
    .form-input,
    .form-textarea {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
    
    .form-label {
        font-size: 0.9rem;
    }
    
    .submit-button {
        padding: 14px 15px;
        font-size: 0.95rem;
    }
    
    .review-form-container h3 {
        font-size: 1.5rem;
        text-align: center;
    }
    
    .form-subtitle {
        font-size: 0.9rem;
        text-align: center;
    }
}

/* Tablet landscape (768px to 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .review-form-container {
        max-width: 90%;
        margin: 60px auto 0;
    }
    
    .form-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-group.full-width {
        grid-column: span 2;
    }
}

/* Desktop (1025px and up) */
@media (min-width: 1025px) {
    .review-form-container {
        max-width: 800px;
        width: 100%;
    }
    
    .form-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-group.full-width {
        grid-column: span 2;
    }
}

/* Large desktop screens (1400px and up) */
@media (min-width: 1400px) {
    .review-form-container {
        max-width: 900px;
    }
}

/* Fix for iOS Safari */
@supports (-webkit-touch-callout: none) {
    .form-input,
    .form-textarea {
        font-size: 16px;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .reviews-section {
        background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    }
    
    .section-title {
        color: #f1f5f9;
    }
    
    .section-subtitle {
        color: #94a3b8;
    }
    
    .stat-item,
    .review-item,
    .review-form-container,
    .empty-state {
        background: #1e293b;
        border-color: #334155;
        color: #e2e8f0;
    }
    
    .reviewer-name,
    .review-title {
        color: #f1f5f9;
    }
    
    .review-text,
    .form-input,
    .form-textarea,
    .review-date,
    .rating-hint,
    .form-label {
        color: #cbd5e1;
    }
    
    .review-response {
        background: linear-gradient(to right, #1e293b, #0f172a);
    }
    
    .response-text {
        color: #cbd5e1;
    }
    
    .form-input,
    .form-textarea {
        background: #0f172a;
        border-color: #475569;
        color: #e2e8f0;
    }
    
    .form-input:focus,
    .form-textarea:focus {
        background: #0f172a;
        border-color: #1a5f7a;
    }
    
    .page-btn {
        background: #1e293b;
        border-color: #475569;
        color: #cbd5e1;
    }
    
    .page-btn:hover:not(.active):not(:disabled) {
        background: #334155;
    }
    
    .page-btn.active {
        background: #1a5f7a;
    }
    
    .helpful-btn {
        background: #334155;
        color: #cbd5e1;
    }
    
    .helpful-btn:hover {
        background: #475569;
    }
    
    .helpful-btn.active {
        background: #1a5f7a;
        color: white;
    }
    
    .review-text::before {
        color: #475569;
    }
}










/* View More Reviews Button */
.view-more-reviews {
    display: block;
    width: 100%;
    max-width: 300px;
    margin: 30px auto 40px;
    padding: 15px 30px;
    background: linear-gradient(135deg, #1a5f7a 0%, #2e86ab 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 5px 15px rgba(26, 95, 122, 0.2);
}

.view-more-reviews:hover {
    background: linear-gradient(135deg, #15475c 0%, #267495 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(26, 95, 122, 0.3);
}

.view-more-reviews:active {
    transform: translateY(0);
}

.view-more-reviews i {
    margin-right: 10px;
    transition: transform 0.3s ease;
}

.view-more-reviews:hover i {
    transform: translateY(2px);
}

/* Remove pagination when using view more button */
.reviews-container .reviews-pagination {
    display: none;
}

/* Responsive adjustments for view more button */
@media (max-width: 768px) {
    .view-more-reviews {
        max-width: 100%;
        padding: 12px 20px;
        font-size: 1rem;
        margin: 25px auto 35px;
    }
}

@media (max-width: 480px) {
    .view-more-reviews {
        padding: 10px 15px;
        font-size: 0.95rem;
        margin: 20px auto 30px;
    }
}