:root {
            --primary: #059669;
            --primary-dark: #047857;
            --primary-light: #d1fae5;
            --text: #1f2937;
            --text-light: #6b7280;
            --border: #e5e7eb;
            --bg: #ffffff;
            --bg-light: #f9fafb;
            --gold: #f59e0b;
            --success: #10b981;
            --radius: 16px;
            --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
            --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
        }



        body {
            background-color: var(--bg);
            color: var(--text);
            line-height: 1.6;
        }

        .containerr {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem 1.5rem;
        }

        .section-title {
            font-size: 2.25rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 1rem;
            color: var(--text);
        }

        .section-subtitle {
            text-align: center;
            color: var(--text-light);
            margin-bottom: 3rem;
            font-size: 1.125rem;
        }

        .trust-note {
            text-align: center;
            font-weight: 600;
            color: var(--text-light);
            margin-bottom: 3rem;
            font-size: 1rem;
        }

        .rating-summary {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 3rem;
            flex-wrap: wrap;
        }

        .average-rating {
            font-size: 3rem;
            font-weight: 700;
            color: var(--text);
        }

        .stars {
            display: flex;
            gap: 0.25rem;
        }

        .star {
            color: #d1d5db;
            font-size: 1.5rem;
        }

        .star.filled {
            color: var(--gold);
        }

        .total-reviews {
            color: var(--text-light);
            font-size: 1.125rem;
        }

        .reviews-grid {
            display: grid;
            gap: 1.5rem;
            margin-bottom: 3rem;
        }

        .review-card {
            background: var(--bg);
            border-radius: var(--radius);
            padding: 1.5rem;
            box-shadow: var(--shadow);
            border: 1px solid var(--border);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .review-card:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
        }

        .review-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 1rem;
        }

        .reviewer-info {
            flex: 1;
        }

        .reviewer-name {
            font-weight: 600;
            margin-bottom: 0.25rem;
        }

        .review-date {
            color: var(--text-light);
            font-size: 0.875rem;
        }

        .review-rating {
            display: flex;
            gap: 0.25rem;
        }

        .review-rating .star {
            font-size: 1rem;
        }

        .verified-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.25rem;
            background: linear-gradient(135deg, #d8ffbc, #a4f8b1);
            color: #065f46;
            padding: 0.25rem 0.75rem;
            border-radius: 100px;
            font-size: 0.75rem;
            font-weight: 600;
            margin-top: 0.5rem;
            border: 1px solid #a7f3d0;
        }

        .review-text {
            color: var(--text);
            line-height: 1.7;
        }

        .pagination-container {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 0.5rem;
            margin: 2rem 0 4rem;
        }

        .pagination-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 2.5rem;
            height: 2.5rem;
            border-radius: var(--radius);
            border: 1px solid var(--border);
            background: var(--bg);
            color: var(--text);
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .pagination-btn:hover {
            border-color: var(--primary);
            color: var(--primary);
        }

        .pagination-btn.active {
            background: black;
            color: white;
            border-color: rgb(36, 36, 36);
        }

        .pagination-btn.disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

        .pagination-btn.disabled:hover {
            border-color: var(--border);
            color: var(--text);
        }

        .add-review-section {
            background: linear-gradient(135deg, #f8fafc 0%, #f0fdf4 100%);
            border-radius: var(--radius);
            padding: 3rem;
            margin-top: 2rem;
            box-shadow: var(--shadow);
            border: 1px solid #e5e7eb;
            position: relative;
            overflow: hidden;
        }

        .add-review-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), #10b981);
        }

        .form-title {
            font-size: 1.75rem;
            font-weight: 700;
            margin-bottom: 2rem;
            text-align: center;
            color: var(--text);
            position: relative;
        }

        .form-title::after {
            content: '';
            position: absolute;
            bottom: -0.5rem;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: var(--primary);
            border-radius: 2px;
        }

        .review-form {
            max-width: 600px;
            margin: 0 auto;
        }

        .form-group {
            margin-bottom: 1.75rem;
        }

        .form-label {
            display: block;
            margin-bottom: 0.75rem;
            font-weight: 600;
            color: var(--text);
            font-size: 1rem;
        }

        .form-input, .form-textarea {
            width: 100%;
            padding: 1rem 1.25rem;
            border: 1px solid var(--border);
            border-radius: var(--radius);
            font-size: 1rem;
            transition: all 0.2s ease;
            background: var(--bg);
        }

        .form-input:focus, .form-textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1);
        }

        .form-textarea {
            min-height: 140px;
            resize: vertical;
            line-height: 1.6;
        }

        .rating-selector-container {
            background: var(--bg);
            border-radius: var(--radius);
            padding: 1.5rem;
            border: 1px solid var(--border);
            margin-bottom: 1.75rem;
        }

        .rating-label {
            display: block;
            margin-bottom: 1rem;
            font-weight: 600;
            color: var(--text);
            font-size: 1rem;
        }

        .rating-selector {
            display: flex;
            gap: 0.5rem;
            justify-content: center;
        }

        .rating-option {
            cursor: pointer;
            font-size: 2rem;
            color: #d1d5db;
            transition: all 0.2s ease;
            padding: 0.5rem;
            border-radius: 50%;
        }

        .rating-option:hover {
            transform: scale(1.1);
            background: var(--primary-light);
        }

        .rating-option.selected {
            color: var(--gold);
            transform: scale(1.1);
        }

        .rating-text {
            text-align: center;
            margin-top: 0.75rem;
            font-size: 0.875rem;
            color: var(--text-light);
            font-weight: 500;
        }

        .verified-toggle {
            display: flex;
            align-items: center;
            gap: 1rem;
            background: var(--bg);
            border-radius: var(--radius);
            padding: 1.25rem 1.5rem;
            border: 1px solid var(--border);
            margin-bottom: 1.75rem;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .verified-toggle:hover {
            border-color: var(--primary);
        }

        .verified-toggle.active {
            border-color: var(--primary);
            background: var(--primary-light);
        }

        .toggle-checkbox {
            width: 20px;
            height: 20px;
            border: 2px solid var(--border);
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s ease;
            flex-shrink: 0;
        }

        .verified-toggle.active .toggle-checkbox {
            background: var(--primary);
            border-color: var(--primary);
        }

        .toggle-checkbox i {
            color: white;
            font-size: 0.75rem;
            opacity: 0;
            transition: opacity 0.2s ease;
        }

        .verified-toggle.active .toggle-checkbox i {
            opacity: 1;
        }

        .toggle-label {
            flex: 1;
        }

        .toggle-title {
            font-weight: 600;
            margin-bottom: 0.25rem;
            color: var(--text);
        }

        .toggle-description {
            font-size: 0.875rem;
            color: var(--text-light);
        }

        .submit-btn {
            background: linear-gradient(135deg, #333232, #000000);
            color: white;
            border: none;
            border-radius: var(--radius);
            padding: 1.25rem 2rem;
            font-size: 1.125rem;
            font-weight: 600;
            cursor: pointer;
            width: 100%;
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px -1px rgba(5, 150, 105, 0.2);
            position: relative;
            overflow: hidden;
        }

        .submit-btn::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.5s;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 15px -3px rgba(5, 150, 105, 0.3);
        }

        .submit-btn:hover::before {
            left: 100%;
        }

        .submit-btn:active {
            transform: translateY(0);
        }

        .form-message {
            margin-top: 1.5rem;
            padding: 1rem 1.25rem;
            border-radius: var(--radius);
            text-align: center;
            display: none;
            font-weight: 500;
        }

        .form-message.success {
            background: #d1fae5;
            color: #065f46;
            border: 1px solid #a7f3d0;
            display: block;
        }

        .form-message.error {
            background: #fee2e2;
            color: #991b1b;
            border: 1px solid #fecaca;
            display: block;
        }

        .loading {
            text-align: center;
            padding: 2rem;
            color: var(--text-light);
            grid-column: 1 / -1;
        }

        @media (max-width: 767px) {
            .reviews-grid {
                grid-template-columns: 1fr;
            }
            
            .add-review-section {
                padding: 2rem 1.5rem;
            }
            
            .rating-option {
                font-size: 1.75rem;
            }
        }

        @media (min-width: 768px) and (max-width: 1023px) {
            .reviews-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 1024px) {
            .reviews-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }