        .rcarrent-carousel-wrapper {
            position: relative;
            max-width: 100%;
            margin: 20px auto;
            padding: 0 50px;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            box-sizing: border-box;
        }
        .rcarrent-carousel-track {
            display: flex;
            gap: 25px;
            overflow-x: auto;
            scroll-behavior: smooth;
            scrollbar-width: none; /* Firefox */
            padding: 10px 5px;
            box-sizing: border-box;
        }
        .rcarrent-carousel-track::-webkit-scrollbar {
            display: none; /* Chrome/Safari */
        }
        .rcarrent-carousel-slide {
            flex: 0 0 calc(33.333% - 17px);
            min-width: calc(33.333% - 17px);
            box-sizing: border-box;
            transition: transform 0.3s ease;
        }
        @media (max-width: 900px) {
            .rcarrent-carousel-slide {
                flex: 0 0 calc(50% - 13px);
                min-width: calc(50% - 13px);
            }
        }
        @media (max-width: 600px) {
            .rcarrent-carousel-slide {
                flex: 0 0 100%;
                min-width: 100%;
            }
        }
        .rcarrent-carousel-card {
            background: #ffffff;
            border: 1px solid #e5e5ea;
            border-radius: 16px;
            padding: 24px;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(0,0,0,0.02);
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            height: 100%;
            min-height: 380px;
            box-sizing: border-box;
        }
        .rcarrent-carousel-card:hover {
            transform: translateY(-5px);
            border-color: #E3CA92;
            box-shadow: 0 10px 30px rgba(197, 160, 89, 0.08);
        }
        .carousel-card-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 5px;
        }
        .carousel-car-name {
            font-size: 18px;
            font-weight: 800;
            color: #1d1d1f;
            margin: 0;
            text-transform: uppercase;
            letter-spacing: -0.5px;
            text-align: left;
        }
        .carousel-car-category {
            font-size: 11px;
            font-weight: 600;
            color: #E3CA92;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            text-align: left;
            display: block;
        }
        .carousel-car-rating {
            background: #fff9e6;
            color: #ffa800;
            font-weight: 700;
            font-size: 13px;
            padding: 2px 8px;
            border-radius: 20px;
            white-space: nowrap;
        }
        .carousel-car-desc {
            font-size: 13px;
            color: #6e6e73;
            margin: 8px 0 15px 0;
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            height: 36px;
            text-align: left;
        }
        .carousel-image-container {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 130px;
            margin-bottom: 15px;
        }
        .carousel-car-image {
            max-width: 100%;
            max-height: 120px;
            object-fit: contain;
            transition: transform 0.3s ease;
        }
        .rcarrent-carousel-card:hover .carousel-car-image {
            transform: scale(1.05);
        }
        .carousel-specs-badges {
            display: flex;
            gap: 8px;
            margin-bottom: 20px;
            justify-content: flex-start;
            flex-wrap: wrap;
        }
        .carousel-spec-badge {
            background-color: #faf8f5;
            border: 1px solid #f0ecdf;
            color: #1d1d1f;
            font-size: 11px;
            font-weight: 600;
            padding: 4px 10px;
            border-radius: 8px;
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }
        .carousel-card-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-top: 1px solid #f5f5f7;
            padding-top: 15px;
            margin-top: auto;
        }
        .carousel-price-box {
            display: flex;
            flex-direction: column;
            text-align: left;
        }
        .carousel-price-value {
            font-size: 20px;
            font-weight: 800;
            color: #1d1d1f;
            line-height: 1.1;
        }
        .carousel-price-label {
            font-size: 11px;
            color: #6e6e73;
            font-weight: 600;
        }
        .carousel-btn-action {
            background-color: #E3CA92;
            color: #ffffff;
            font-weight: 700;
            font-size: 11px;
            padding: 8px 16px;
            border-radius: 8px;
            text-transform: uppercase;
            transition: background-color 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .rcarrent-carousel-card:hover .carousel-btn-action {
            background-color: #b08e47;
        }
        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: #ffffff;
            border: 1px solid #E3CA92;
            color: #E3CA92;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 4px 12px rgba(197, 160, 89, 0.15);
            z-index: 10;
            transition: all 0.2s;
        }
        .carousel-btn:hover {
            background: #E3CA92;
            color: #ffffff;
        }
        .carousel-btn.prev {
            left: 0px;
        }
        .carousel-btn.next {
            right: 0px;
        }
        /* Mobile adjust */
        @media (max-width: 600px) {
            .carousel-btn {
                display: none; /* touch scroll is native */
            }
            .rcarrent-carousel-wrapper {
                padding: 0 15px;
            }
        }