    /* :root {
            --gr-bg-overlay: rgba(0, 0, 0, 0.55);
            --gr-card-width: 260px;
        }

        * {
            box-sizing: border-box;
        }

        body {
            margin: 0;
            padding: 30px 16px;
            font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
            background: #111827;
        }*/

        .gr-section {
            max-width: 1200px;
            margin: 0 auto;
            
            background-image: url('/images/reviews-bg.jpg');
            background-size: cover;
            background-position: center;
            border-radius: 18px;
            position: relative;
            overflow: hidden;
            color: #111827;
        } 

        .gr-overlay {
            background: 260px;
            padding: 18px 24px 24px;
        }

        .gr-header-bar {
            background: #ffffff;
            border-radius: 12px;
            padding: 10px 16px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            box-shadow: 0 10px 25px rgba(15,23,42,0.15);
        }

        .gr-header-left {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .gr-google-logo {
            height: 22px;
        }

        .gr-header-title {
            display: flex;
            flex-direction: column;
        }

        .gr-header-title span:first-child {
            font-size: 1.2rem;
            font-weight: 600;
            color: #202124;
        }

        .gr-header-rating-row {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 0.9rem;
            color: #4b5563;
        }

        .gr-header-rating {
            font-weight: 600;
        }

        .gr-header-stars {
            color: #f59e0b;
            font-size: 0.9rem;
        }

        .gr-header-total {
            font-size: 0.8rem;
            color: #6b7280;
        }

        .gr-header-btn {
            padding: 8px 16px;
            border-radius: 999px;
            border: none;
            outline: none;
            font-size: 0.9rem;
            font-weight: 500;
            background: #1a73e8;
            color: #ffffff;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            white-space: nowrap;
        }

        .gr-header-btn:hover {
            background: #185abc;
        }

        .gr-header-btn:active {
            transform: translateY(1px);
        }

        .gr-header-btn-icon {
            width: 16px;
            height: 16px;
        }

        .gr-slider-wrapper {
            margin-top: 22px;
            position: relative;
        }

        .gr-slider-track {
            display: flex;
            gap: 16px;
            overflow-x: auto;
            scroll-behavior: smooth;
            padding: 8px 4px 4px;
        }

        .gr-slider-track::-webkit-scrollbar {
            display: none;
        }

        .gr-slider-track {
            -ms-overflow-style: none;
            scrollbar-width: none;
        }

        .gr-card {
            flex: 0 0 260px;
            max-width: 280px;
            background: #ffffff;
            border-radius: 16px;
            padding: 14px 14px 12px;
            box-shadow: 0 12px 30px rgba(15,23,42,0.25);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .gr-card-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 8px;
        }

        .gr-card-avatar {
            width: 38px;
            height: 38px;
            border-radius: 999px;
            object-fit: cover;
            flex-shrink: 0;
        }

        .gr-card-avatar-fallback {
            width: 38px;
            height: 38px;
            border-radius: 999px;
            background: #e5e7eb;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.9rem;
            color: #6b7280;
            flex-shrink: 0;
        }

        .gr-card-name-row {
            display: flex;
            flex-direction: column;
        }

        .gr-card-name {
            font-size: 1.3rem;
            font-weight: 600;
            color: #111827;
        }

        .gr-card-stars-row {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .gr-card-stars {
            font-size: 1.1rem;
            color: #f59e0b;
        }

        .gr-card-time {
            font-size: 0.75rem;
            color: #6b7280;
        }

        .gr-card-text {
            font-size: 1.2rem;
            color: #374151;
            margin: 4px 0 8px;
            line-height: 1.4;
        }

        .gr-card-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.75rem;
            color: #9ca3af;
        }

        .gr-card-readmore {
            border: none;
            background: none;
            cursor: pointer;
            padding: 0;
            font-size: 0.8rem;
            color: #2563eb;
        }

        .gr-nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 32px;
            height: 32px;
            border-radius: 999px;
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(15,23,42,0.85);
            color: #f9fafb;
            cursor: pointer;
            z-index: 5;
        }

        .gr-nav-btn[disabled] {
            opacity: 0.3;
            cursor: default;
        }

        .gr-nav-prev {
            left: 4px;
        }

        .gr-nav-next {
            right: 4px;
        }

        .gr-loading,
        .gr-error {
            margin-top: 14px;
            font-size: 0.9rem;
        }

        .gr-loading {
            color: #e5e7eb;
        }

        .gr-error {
            color: #fecaca;
        }

        @media (max-width: 768px) {
            body {
                padding: 18px 10px;
            }
            .gr-section {
                border-radius: 14px;
            }
            .gr-overlay {
                padding: 14px 12px 18px;
            }
            .gr-header-bar {
                flex-direction: column;
                align-items: flex-start;
            }
            .gr-header-btn {
                align-self: stretch;
                justify-content: center;
            }
        }