        /* ============================================
           REVIEWS PAGE - Red Beard Peptides
           Matches demo-redesign.html design system
           ============================================ */

        /* ========== HERO SECTION ========== */
        .hero {
            position: relative;
            padding: 60px 24px;
            text-align: center;
            background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-dark) 100%);
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -100px;
            left: 50%;
            transform: translateX(-50%);
            width: 800px;
            height: 400px;
            background: radial-gradient(ellipse, rgba(192, 57, 43, 0.15) 0%, transparent 70%);
            pointer-events: none;
        }

        .hero-content {
            max-width: 700px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .hero h1 {
            font-size: 42px;
            font-weight: 800;
            letter-spacing: -1px;
            margin-bottom: 16px;
            line-height: 1.15;
        }

        .hero h1 span {
            color: var(--primary-light);
        }

        .hero p {
            font-size: 17px;
            color: var(--text-secondary);
            margin-bottom: 32px;
            max-width: 520px;
            margin-left: auto;
            margin-right: auto;
        }

        /* ========== OVERALL RATING SUMMARY ========== */
        .rating-summary {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
            margin-top: 8px;
        }

        .rating-big {
            font-size: 48px;
            font-weight: 800;
            line-height: 1;
            letter-spacing: -1px;
        }

        .rating-meta {
            text-align: left;
        }

        .rating-stars-large {
            color: var(--gold);
            font-size: 22px;
            letter-spacing: 2px;
            margin-bottom: 2px;
        }

        .rating-count {
            font-size: 13px;
            color: var(--text-muted);
        }

        /* ========== SECTION LAYOUT ========== */
        .section {
            max-width: 1280px;
            margin: 0 auto;
            padding: 48px 24px;
        }

        .section-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 28px;
        }

        .section-header h2 {
            font-size: 24px;
            font-weight: 700;
            letter-spacing: -0.3px;
        }

        /* ========== RATING BREAKDOWN ========== */
        .breakdown-section {
            max-width: 560px;
            margin: 0 auto;
            padding: 0 24px 48px;
        }

        .breakdown-row {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 10px;
        }

        .breakdown-label {
            font-size: 13px;
            font-weight: 600;
            color: var(--text-secondary);
            min-width: 52px;
            text-align: right;
            white-space: nowrap;
        }

        .breakdown-bar {
            flex: 1;
            height: 10px;
            background: var(--bg-surface);
            border-radius: 5px;
            overflow: hidden;
            border: 1px solid var(--border);
        }

        .breakdown-fill {
            height: 100%;
            background: var(--primary);
            border-radius: 5px;
            transition: width 0.6s ease;
        }

        .breakdown-pct {
            font-size: 13px;
            font-weight: 600;
            color: var(--text-muted);
            min-width: 36px;
        }

        /* ========== FILTER / SORT ROW ========== */
        .filter-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 16px;
            margin-bottom: 32px;
        }

        .filter-pills {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
        }

        .pill {
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s ease;
            border: 1px solid var(--border);
            background: var(--bg-surface);
            color: var(--text-secondary);
        }

        .pill:hover,
        .pill.active {
            border-color: var(--primary);
            color: var(--primary-light);
            background: rgba(192, 57, 43, 0.1);
        }

        .sort-select {
            background: var(--bg-surface);
            border: 1px solid var(--border);
            color: var(--text-primary);
            padding: 8px 14px;
            border-radius: var(--radius-md);
            font-size: 13px;
            font-weight: 500;
            font-family: inherit;
            cursor: pointer;
            transition: border-color 0.2s;
            appearance: none;
            -webkit-appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23a0a3a8' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 12px center;
            padding-right: 32px;
        }

        .sort-select:hover,
        .sort-select:focus {
            border-color: var(--primary);
            outline: none;
        }

        /* ========== REVIEW SUBMISSION FORM ========== */
        .form-toggle-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 28px;
            border-radius: var(--radius-md);
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            background: var(--primary);
            color: white;
            transition: all 0.2s ease;
            font-family: inherit;
        }

        .form-toggle-btn:hover {
            background: var(--primary-dark);
            transform: translateY(-1px);
            box-shadow: 0 4px 16px rgba(192, 57, 43, 0.4);
        }

        .review-form-wrapper {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            padding: 32px;
            margin-bottom: 40px;
            display: none;
        }

        .review-form-wrapper.open {
            display: block;
        }

        .review-form-wrapper h3 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 24px;
        }

        .form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 20px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .form-group.full-width {
            grid-column: 1 / -1;
        }

        .form-group label {
            font-size: 13px;
            font-weight: 600;
            color: var(--text-secondary);
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            background: var(--bg-surface);
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            padding: 10px 14px;
            font-size: 14px;
            color: var(--text-primary);
            font-family: inherit;
            transition: border-color 0.2s;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 100px;
        }

        .form-group select {
            appearance: none;
            -webkit-appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23a0a3a8' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 12px center;
            padding-right: 32px;
            cursor: pointer;
        }

        /* Custom multi-select dropdown */
        .custom-select-wrapper {
            position: relative;
        }

        .custom-select {
            position: relative;
            width: 100%;
        }

        .select-trigger {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 14px;
            border: 1px solid var(--border);
            background: var(--bg-surface);
            color: var(--text-primary);
            border-radius: var(--radius-sm);
            cursor: pointer;
            transition: border-color 0.2s;
            font-size: 14px;
            font-family: inherit;
        }

        .select-trigger:hover,
        .select-trigger.active {
            border-color: var(--primary);
        }

        .select-trigger.active {
            border-bottom-left-radius: 0;
            border-bottom-right-radius: 0;
        }

        .selected-text {
            flex: 1;
            font-size: 14px;
        }

        .arrow {
            font-size: 10px;
            transition: transform 0.3s ease;
            color: var(--text-muted);
        }

        .select-trigger.active .arrow {
            transform: rotate(180deg);
        }

        .select-options {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            max-height: 300px;
            overflow-y: auto;
            background: var(--bg-surface);
            border: 1px solid var(--primary);
            border-top: none;
            border-radius: 0 0 var(--radius-sm) var(--radius-sm);
            z-index: 1000;
        }

        .select-options.active {
            display: block;
        }

        .option-item {
            display: flex;
            align-items: center;
            padding: 10px 14px;
            cursor: pointer;
            transition: background-color 0.2s ease;
            border-bottom: 1px solid var(--border);
            font-size: 14px;
        }

        .option-item:last-child {
            border-bottom: none;
        }

        .option-item:hover {
            background: var(--bg-elevated);
        }

        .option-item input[type="checkbox"] {
            width: auto;
            margin-right: 10px;
            cursor: pointer;
            min-width: 16px;
            min-height: 16px;
            accent-color: var(--primary);
        }

        .option-item span {
            font-size: 14px;
            color: var(--text-primary);
            user-select: none;
        }

        .option-item input[type="checkbox"]:checked + span {
            color: var(--primary-light);
            font-weight: 600;
        }

        .validation-error {
            color: var(--primary-light);
            font-size: 12px;
            margin-top: 4px;
        }

        /* Star Rating Selector */
        .star-selector {
            display: flex;
            gap: 4px;
        }

        .star-selector .star {
            font-size: 28px;
            color: var(--border);
            cursor: pointer;
            transition: color 0.15s;
            line-height: 1;
        }

        .star-selector .star.active,
        .star-selector .star:hover {
            color: var(--gold);
        }

        .form-submit-row {
            display: flex;
            justify-content: flex-end;
            margin-top: 8px;
        }

        .submit-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 32px;
            border-radius: var(--radius-md);
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            background: var(--primary);
            color: white;
            font-family: inherit;
            transition: all 0.2s ease;
        }

        .submit-btn:hover {
            background: var(--primary-dark);
            transform: translateY(-1px);
            box-shadow: 0 4px 16px rgba(192, 57, 43, 0.4);
        }

        /* ========== SUCCESS MESSAGE ========== */
        .success-message {
            display: none;
            background: var(--success);
            color: white;
            padding: 16px 24px;
            border-radius: var(--radius-md);
            margin-bottom: 24px;
            text-align: center;
            font-weight: 600;
            font-size: 14px;
        }

        /* ========== REVIEWS LIST ========== */
        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        .review-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            padding: 24px;
            transition: border-color 0.2s;
        }

        .review-card:hover {
            border-color: var(--border-hover);
        }

        .review-card-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 12px;
        }

        .review-stars {
            color: var(--gold);
            font-size: 14px;
            letter-spacing: 1px;
        }

        .review-date {
            font-size: 12px;
            color: var(--text-muted);
        }

        .review-text {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: 16px;
            font-style: italic;
        }

        .review-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 8px;
        }

        .review-author-info {
            display: flex;
            flex-direction: column;
        }

        .review-author {
            font-size: 13px;
            font-weight: 600;
            color: var(--text-primary);
        }

        .review-badge {
            font-size: 11px;
            font-weight: 600;
            color: var(--success);
        }

        .review-product-tags {
            display: flex;
            gap: 6px;
            flex-wrap: wrap;
        }

        .product-tag {
            font-size: 11px;
            font-weight: 600;
            padding: 3px 10px;
            border-radius: 12px;
            background: rgba(192, 57, 43, 0.1);
            color: var(--primary-light);
            border: 1px solid rgba(192, 57, 43, 0.2);
        }

        /* ========== EMPTY STATE ========== */
        /* Spinner/shimmer styles now in shared.css */

        .empty-state {
            text-align: center;
            padding: 60px 24px;
            color: var(--text-muted);
        }

        .empty-state p {
            font-size: 16px;
            margin-bottom: 4px;
        }

        .empty-state small {
            font-size: 13px;
        }

        /* ========== RESPONSIVE ========== */
        @media (max-width: 1024px) {
            .reviews-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .hero {
                padding: 40px 16px;
            }

            .hero h1 {
                font-size: 28px;
            }

            .hero p {
                font-size: 15px;
            }

            .rating-big {
                font-size: 36px;
            }

            .rating-stars-large {
                font-size: 18px;
            }

            .form-grid {
                grid-template-columns: 1fr;
            }

            .filter-row {
                flex-direction: column;
                align-items: flex-start;
            }

            .section-header h2 {
                font-size: 20px;
            }

            .review-form-wrapper {
                padding: 20px;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 24px;
            }

            .rating-summary {
                flex-direction: column;
                gap: 8px;
            }

            .rating-meta {
                text-align: center;
            }
        }
