/*============================================================================================*/
/* Compact Review Button */
        .btn-review-compact {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: #28a745;
            color: white;
            padding: 8px 16px;
            border-radius: 20px;
            text-decoration: none;
            font-weight: 500;
            font-size: 14px;
            transition: all 0.3s ease;
        }

        .btn-review-compact:hover {
            background: #218838;
            color: white;
            text-decoration: none;
            transform: translateY(-1px);
        }

        /* Large CTA Button for No Reviews */
        .btn-create-review-large {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
            color: white;
            padding: 16px 32px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 18px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
        }

        .btn-create-review-large:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
            color: white;
            text-decoration: none;
        }

        /* Reviews Header */
        .reviews-title {
            color: #495057;
            font-weight: 600;
            margin: 0;
        }

        /* Verified Badge */
        .verified-badge {
            display: inline-block;
            background: #28a745;
            color: white;
            padding: 2px 8px;
            border-radius: 12px;
            font-size: 11px;
            font-weight: 500;
            margin-top: 4px;
        }

        .verified-badge i {
            font-size: 10px;
        }

        /* No Reviews CTA */
        .no-reviews-cta {
            background: #f8f9fa;
            border-radius: 15px;
            border: 2px dashed #dee2e6;
        }

        /* Review Image */
        .review-image img {
            max-width: 200px;
            max-height: 150px;
            object-fit: cover;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .btn-create-review {
                font-size: 14px;
                padding: 10px 20px;
            }

            .reviews-header {
                flex-direction: column;
                gap: 15px;
                align-items: flex-start !important;
            }

            .btn-review-compact {
                align-self: stretch;
                justify-content: center;
            }
        }
/*============================================================================================*/
