/* WRRC Scoped Styles - Isolated from theme */
        .wrrc-section {
            padding: 40px 0;
            box-sizing: border-box;
        }
        .wrrc-section .wrrc-title {
            text-align: center;
            font-size: 2.2rem;
            font-weight: 600;
            margin: 0 0 10px 0;
            padding: 0;
        }
        .wrrc-section .wrrc-subtitle {
            text-align: center;
            font-size: 0.95em;
            opacity: 0.7;
            margin: 0 0 25px 0;
            padding: 0;
        }
        .wrrc-section .wrrc-swiper {
            padding: 10px 45px 15px;
            position: relative;
        }
        .wrrc-section .swiper-slide {
            height: auto;
        }
        .wrrc-section .wrrc-card {
            display: flex;
            flex-direction: column;
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.06);
            overflow: hidden;
            text-decoration: none;
            color: inherit;
            transition: transform 0.25s ease, box-shadow 0.25s ease;
            height: 100%;
            border: 1px solid rgba(0,0,0,0.08);
            background: #fff;
        }
        .wrrc-section .wrrc-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 18px rgba(0,0,0,0.1);
            text-decoration: none;
            color: inherit;
        }
        .wrrc-section .wrrc-card-image {
            width: 100%;
            padding-top: 100%;
            position: relative;
            overflow: hidden;
            background: #f5f5f5;
        }
        .wrrc-section .wrrc-card-image img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.25s ease;
            margin: 0;
            padding: 0;
        }
        .wrrc-section .wrrc-card:hover .wrrc-card-image img {
            transform: scale(1.03);
        }
        .wrrc-section .wrrc-card-content {
            padding: 14px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        .wrrc-section .wrrc-stars {
            margin: 0 0 8px 0;
            padding: 0;
            line-height: 1;
        }
        .wrrc-section .wrrc-star {
            font-size: 14px;
            color: #ddd;
            display: inline;
            line-height: 1;
        }
        .wrrc-section .wrrc-star.filled {
            color: #ffc107;
        }
        .wrrc-section .wrrc-review-text {
            font-size: 13px;
            line-height: 1.5;
            margin: 0 0 10px 0;
            padding: 0;
            flex: 1;
        }
        .wrrc-section .wrrc-meta {
            display: flex;
            flex-direction: column;
            gap: 3px;
            border-top: 1px solid rgba(0,0,0,0.08);
            padding-top: 10px;
            margin-top: auto;
        }
        .wrrc-section .wrrc-author {
            font-weight: 600;
            font-size: 12px;
            margin: 0;
            padding: 0;
        }
        .wrrc-section .wrrc-review-details {
            font-size: 11px;
            opacity: 0.72;
            margin: 0;
            padding: 0;
        }
        .wrrc-section .wrrc-product-name {
            font-size: 11px;
            opacity: 0.6;
            margin: 0;
            padding: 0;
        }
        .wrrc-section .wrrc-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 40px;
            height: 40px;
            background: #fff;
            border-radius: 50%;
            box-shadow: 0 2px 8px rgba(0,0,0,0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 10;
            transition: all 0.2s ease;
            color: #333;
        }
        .wrrc-section .wrrc-nav:hover {
            background: #f5f5f5;
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
        }
        .wrrc-section .wrrc-nav-prev {
            left: 5px;
        }
        .wrrc-section .wrrc-nav-next {
            right: 5px;
        }
        .wrrc-section .wrrc-nav svg {
            width: 20px;
            height: 20px;
        }
        @media (max-width: 768px) {
            .wrrc-section {
                padding: 25px 0;
            }
            .wrrc-section .wrrc-title {
                font-size: 1.5rem;
            }
            .wrrc-section .wrrc-subtitle {
                font-size: 0.85em;
                margin-bottom: 18px;
            }
            .wrrc-section .wrrc-swiper {
                padding: 5px 10px 10px;
            }
            .wrrc-section .wrrc-nav {
                display: none;
            }
            .wrrc-section .wrrc-card-content {
                padding: 12px;
            }
            .wrrc-section .wrrc-review-text {
                font-size: 12px;
            }
        }
        
