/**
 * Vehicle Shop — Premium recommendation UI (presentation only).
 * Scoped to .cvc-vshop-premium
 */

.cvc-vshop-premium {
    --cvc-red: #e63946;
    --cvc-red-dark: #c62828;
    --cvc-green: #2a9d5c;
    --cvc-green-bg: #eefbf3;
    --cvc-gold: #f4b942;
    --cvc-gold-bg: #fff8e6;
    --cvc-text: #1a1a1a;
    --cvc-muted: #5f6368;
    --cvc-border: #e8eaed;
    --cvc-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    --cvc-radius: 12px;
    --cvc-transition: 220ms ease;
    --cvc-type-hero: 36px;
    --cvc-type-section: 28px;
    --cvc-type-product: 22px;
    --cvc-type-body: 16px;
    --cvc-type-meta: 14px;
    --cvc-gap-section: 32px;
    --cvc-gap-card: 16px;
    --cvc-gap-text: 12px;
    position: relative;
    padding-bottom: var(--cvc-gap-section);
    margin-top: 12px !important;
    margin-bottom: 12px !important;
    font-family: inherit;
    color: var(--cvc-text);
    -webkit-font-smoothing: antialiased;
    text-align: left;
}

.cvc-vshop-premium * {
    box-sizing: border-box;
}

.cvc-vshop-vehicle-intro {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: var(--cvc-gap-section);
}

/* Hide legacy layout pieces when premium is active */
.cvc-vshop-premium .cvc-vshop-top-row,
.cvc-vshop-premium .cvc-vshop-products > .cvc-vshop-products-heading,
.cvc-vshop-premium .cvc-vshop-heading,
.cvc-vshop-premium .cvc-vshop-tabs,
.cvc-vshop-premium .cvc-vshop-compatibility-box,
.cvc-vshop-premium .cvc-vshop-info-box {
    display: none !important;
}

/* ── Garage pills ── */
.cvc-vshop-garage-pills {
    margin-bottom: var(--cvc-gap-section);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.cvc-vshop-garage-pills::-webkit-scrollbar { display: none; }

.cvc-vshop-garage-pills-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    padding: 2px 0;
}

.cvc-vshop-pill-wrap {
    display: inline-flex;
    align-items: stretch;
    position: relative;
}

.cvc-vshop-garage-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    border: 1.5px solid var(--cvc-border) !important;
    border-radius: 999px;
    background: #fff !important;
    color: var(--cvc-text) !important;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    text-decoration: none;
    line-height: 1.3;
    letter-spacing: 0;
    text-transform: none;
    transition: border-color var(--cvc-transition), background var(--cvc-transition), box-shadow var(--cvc-transition), color var(--cvc-transition);
}

.cvc-vshop-garage-pill:hover,
.cvc-vshop-garage-pill:focus,
.cvc-vshop-garage-pill:active {
    background: #fff5f5 !important;
    color: var(--cvc-red) !important;
    border-color: var(--cvc-red) !important;
}
.cvc-vshop-pill-wrap .cvc-vshop-garage-pill {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    padding-right: 10px;
}
.cvc-vshop-pill-remove {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    min-width: 28px;
    border: 1.5px solid var(--cvc-border) !important;
    border-left: none !important;
    border-radius: 0 999px 999px 0;
    background: #fff !important;
    color: var(--cvc-muted) !important;
    font-size: 1.1rem;
    line-height: 1;
    text-decoration: none !important;
    transition: color var(--cvc-transition), background var(--cvc-transition), border-color var(--cvc-transition);
}

.cvc-vshop-pill-remove:hover,
.cvc-vshop-pill-remove:focus,
.cvc-vshop-pill-remove:active {
    color: var(--cvc-red) !important;
    background: #fff5f5 !important;
    border-color: var(--cvc-red) !important;
}
.cvc-vshop-pill-muted {
    border-style: dashed !important;
    color: var(--cvc-muted) !important;
    text-decoration: none;
    font-size: 0.82rem;
    background: #fff !important;
}

.cvc-vshop-pill-muted:hover,
.cvc-vshop-pill-muted:focus,
.cvc-vshop-pill-muted:active {
    color: var(--cvc-red) !important;
    border-color: var(--cvc-red) !important;
    background: #fff5f5 !important;
}

.cvc-vshop-garage-pill.is-active {
    border-color: var(--cvc-red) !important;
    background: #fff5f5 !important;
    color: var(--cvc-red) !important;
    box-shadow: 0 1px 8px rgba(230, 57, 70, 0.12);
}

.cvc-vshop-garage-pill.is-active:hover,
.cvc-vshop-garage-pill.is-active:focus {
    background: #fff0f0 !important;
    color: var(--cvc-red-dark) !important;
    border-color: var(--cvc-red-dark) !important;
}
.cvc-vshop-pill-wrap .cvc-vshop-garage-pill.is-active + .cvc-vshop-pill-remove {
    border-color: var(--cvc-red);
    background: #fff5f5;
}

/* ── Perfect Match card (unified hero + trust bar) ── */
.cvc-vshop-match-card {
    background: #fff;
    border: 1px solid #e3e8e5;
    border-radius: 18px;
    box-shadow: 0 8px 28px rgba(16, 24, 40, 0.06);
    overflow: hidden;
    opacity: 0;
    animation: cvcVshopHeroIn 320ms ease forwards;
    text-align: left;
}

@keyframes cvcVshopHeroIn {
    to { opacity: 1; }
}

.cvc-vshop-match-card-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 18px;
    background: #fff;
    border-bottom: 1px solid #edf0ee;
}

.cvc-vshop-match-card-vehicle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    border: none !important;
    background: none !important;
    color: #111 !important;
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.3;
    cursor: pointer;
    box-shadow: none !important;
    text-transform: none;
    letter-spacing: 0;
    max-width: calc(100% - 40px);
}

.cvc-vshop-match-card-vehicle:hover,
.cvc-vshop-match-card-vehicle:focus {
    color: var(--cvc-red) !important;
    background: none !important;
}

.cvc-vshop-match-card-vehicle-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    background: #111;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M18.92 6.01C18.72 5.42 18.16 5 17.5 5h-11c-.66 0-1.21.42-1.42 1.01L3 12v8c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h12v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-8l-2.08-5.99zM6.5 16c-.83 0-1.5-.67-1.5-1.5S5.67 13 6.5 13s1.5.67 1.5 1.5S7.33 16 6.5 16zm11 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM5 11l1.5-4.5h11L19 11H5z'/%3E%3C/svg%3E") center / contain no-repeat;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M18.92 6.01C18.72 5.42 18.16 5 17.5 5h-11c-.66 0-1.21.42-1.42 1.01L3 12v8c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h12v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-8l-2.08-5.99zM6.5 16c-.83 0-1.5-.67-1.5-1.5S5.67 13 6.5 13s1.5.67 1.5 1.5S7.33 16 6.5 16zm11 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM5 11l1.5-4.5h11L19 11H5z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.cvc-vshop-match-card-vehicle:hover .cvc-vshop-match-card-vehicle-icon,
.cvc-vshop-match-card-vehicle:focus .cvc-vshop-match-card-vehicle-icon {
    background: var(--cvc-red);
}

.cvc-vshop-match-card-vehicle-label {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.cvc-vshop-match-card-vehicle-chevron {
    width: 8px;
    height: 8px;
    flex-shrink: 0;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(-45deg);
    margin-top: -2px;
}

.cvc-vshop-match-card-dismiss {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    padding: 0;
    border: none !important;
    border-radius: 8px;
    background: none !important;
    color: #667085 !important;
    font-size: 1.45rem;
    line-height: 1;
    cursor: pointer;
    box-shadow: none !important;
    transition: background var(--cvc-transition), color var(--cvc-transition);
}

.cvc-vshop-match-card-dismiss:hover,
.cvc-vshop-match-card-dismiss:focus {
    background: #f2f4f7 !important;
    color: #344054 !important;
}

.cvc-vshop-match-card-body {
    display: block;
}

.cvc-vshop-match-card.is-collapsed .cvc-vshop-match-card-body {
    display: none;
}

.cvc-vshop-match-card-main {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 20px 24px;
    align-items: center;
    padding: 24px 28px 20px;
    background: linear-gradient(180deg, #f3fbf6 0%, #f9fdfb 55%, #fff 100%);
}

.cvc-vshop-match-hero-badge {
    position: relative;
    width: 92px;
    height: 92px;
    flex-shrink: 0;
    grid-row: 1 / span 2;
}

.cvc-vshop-match-hero-confetti {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 22%, #f4b942 0 3px, transparent 4px),
        radial-gradient(circle at 78% 18%, #4ea8de 0 3px, transparent 4px),
        radial-gradient(circle at 84% 72%, #e63946 0 3px, transparent 4px),
        radial-gradient(circle at 24% 78%, #2a9d5c 0 3px, transparent 4px),
        radial-gradient(circle at 50% 8%, #9b5de5 0 2px, transparent 3px),
        radial-gradient(circle at 8% 52%, #f4b942 0 2px, transparent 3px);
    pointer-events: none;
}

.cvc-vshop-match-hero-badge-circle {
    position: absolute;
    inset: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(180deg, #34b86a 0%, #239a55 100%);
    box-shadow: 0 10px 24px rgba(42, 157, 92, 0.28);
}

.cvc-vshop-match-hero-badge-check {
    color: #fff;
    font-size: 2.1rem;
    font-weight: 700;
    line-height: 1;
}

.cvc-vshop-match-card-copy {
    min-width: 0;
    grid-column: 2;
}

.cvc-vshop-match-hero-title {
    margin: 0 0 6px;
    font-size: clamp(1.15rem, 2vw, 1.55rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #178a47;
}

.cvc-vshop-match-hero-emoji {
    display: inline-block;
    margin-left: 4px;
    font-size: 0.95em;
    text-transform: none;
    letter-spacing: 0;
}

.cvc-vshop-match-hero-lead {
    margin: 0 0 18px;
    font-size: 0.94rem;
    line-height: 1.5;
    color: #667085;
    max-width: 560px;
}

.cvc-vshop-match-details {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    align-items: start;
}

.cvc-vshop-match-detail {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    min-width: 0;
    padding: 0 18px;
}

.cvc-vshop-match-detail:first-child {
    padding-left: 0;
}

.cvc-vshop-match-detail:not(:last-child) {
    border-right: 1px solid #d8e5de;
}

.cvc-vshop-match-detail-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #e8f7ee;
    flex-shrink: 0;
    position: relative;
}

.cvc-vshop-match-detail-icon::before {
    content: '';
    width: 16px;
    height: 16px;
    background: #239a55;
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
}

.cvc-vshop-match-detail-icon.is-vehicle::before {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M18.92 6.01C18.72 5.42 18.16 5 17.5 5h-11c-.66 0-1.21.42-1.42 1.01L3 12v8c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h12v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-8l-2.08-5.99zM6.5 16c-.83 0-1.5-.67-1.5-1.5S5.67 13 6.5 13s1.5.67 1.5 1.5S7.33 16 6.5 16zm11 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM5 11l1.5-4.5h11L19 11H5z'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M18.92 6.01C18.72 5.42 18.16 5 17.5 5h-11c-.66 0-1.21.42-1.42 1.01L3 12v8c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h12v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-8l-2.08-5.99zM6.5 16c-.83 0-1.5-.67-1.5-1.5S5.67 13 6.5 13s1.5.67 1.5 1.5S7.33 16 6.5 16zm11 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM5 11l1.5-4.5h11L19 11H5z'/%3E%3C/svg%3E");
}

.cvc-vshop-match-detail-icon.is-colour::before {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M12 3c-4.97 0-9 4.03-9 9 0 4.17 3.4 7.57 7.57 7.57.68 0 1.23-.55 1.23-1.23 0-.61-.44-1.12-1.03-1.22-.86-.15-1.52-.86-1.52-1.74 0-.97.79-1.76 1.76-1.76H16c2.76 0 5-2.24 5-5 0-4.42-4.03-8-9-8z'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M12 3c-4.97 0-9 4.03-9 9 0 4.17 3.4 7.57 7.57 7.57.68 0 1.23-.55 1.23-1.23 0-.61-.44-1.12-1.03-1.22-.86-.15-1.52-.86-1.52-1.74 0-.97.79-1.76 1.76-1.76H16c2.76 0 5-2.24 5-5 0-4.42-4.03-8-9-8z'/%3E%3C/svg%3E");
}

.cvc-vshop-match-detail-icon.is-match::before {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M12 1L3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4zm-2 16l-4-4 1.41-1.41L10 14.17l6.59-6.59L18 9l-8 8z'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M12 1L3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4zm-2 16l-4-4 1.41-1.41L10 14.17l6.59-6.59L18 9l-8 8z'/%3E%3C/svg%3E");
}

.cvc-vshop-match-detail-copy {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.cvc-vshop-match-detail-label {
    font-size: 0.72rem;
    line-height: 1.3;
    color: #667085;
}

.cvc-vshop-match-detail-value {
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1.35;
    color: #101828;
    word-break: break-word;
}

.cvc-vshop-match-detail-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    margin-left: 4px;
    border-radius: 50%;
    background: #e8f7ee;
    color: #239a55;
    font-size: 0.62rem;
    font-weight: 800;
    vertical-align: middle;
}

.cvc-vshop-match-hero-visual {
    display: none;
    grid-column: 3;
    grid-row: 1 / span 2;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 160px;
    padding: 0;
}

.cvc-vshop-match-hero-glow {
    position: absolute;
    width: min(220px, 90%);
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(207, 241, 220, 0.95) 0%, rgba(207, 241, 220, 0.35) 58%, transparent 72%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -54%);
    pointer-events: none;
}

.cvc-vshop-match-hero-car-wrap {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 300px;
}

.cvc-vshop-match-hero-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.14));
}

.cvc-vshop-match-hero-image.is-recolor-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
    overflow: hidden;
}

.cvc-vshop-match-hero-reflection {
    display: block;
    height: 42px;
    margin-top: -8px;
    background: linear-gradient(180deg, rgba(16, 24, 40, 0.12) 0%, rgba(16, 24, 40, 0.02) 42%, transparent 100%);
    transform: scaleY(-1) scaleX(0.92);
    opacity: 0.35;
    mask-image: linear-gradient(180deg, #000 0%, transparent 100%);
    -webkit-mask-image: linear-gradient(180deg, #000 0%, transparent 100%);
    pointer-events: none;
}

.cvc-vshop-match-hero-canvas {
    width: 100%;
    max-width: 300px;
    height: auto;
    display: block;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.14));
}

.cvc-vshop-match-card-footer {
    padding: 16px 24px 18px;
    background: #fff;
    border-top: 1px solid #edf0ee;
}

.cvc-vshop-match-trust-grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px 20px;
}

.cvc-vshop-match-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.cvc-vshop-match-trust-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #eefbf3;
    flex-shrink: 0;
    position: relative;
}

.cvc-vshop-match-trust-icon::before {
    content: '';
    width: 16px;
    height: 16px;
    background: #239a55;
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
}

.cvc-vshop-match-trust-icon.is-identified::before {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M12 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm8.94 3A8.994 8.994 0 0013 3.06V1h-2v2.06A8.994 8.994 0 003.06 11H1v2h2.06A8.994 8.994 0 0011 20.94V23h2v-2.06A8.994 8.994 0 0020.94 13H23v-2h-2.06zM12 19c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M12 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm8.94 3A8.994 8.994 0 0013 3.06V1h-2v2.06A8.994 8.994 0 003.06 11H1v2h2.06A8.994 8.994 0 0011 20.94V23h2v-2.06A8.994 8.994 0 0020.94 13H23v-2h-2.06zM12 19c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z'/%3E%3C/svg%3E");
}

.cvc-vshop-match-trust-icon.is-colour::before {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10c.55 0 1-.45 1-1v-1.5c0-.28-.11-.53-.3-.72-.18-.18-.44-.28-.7-.28-3.31 0-6-2.69-6-6 0-2.97 2.16-5.43 5-5.91V6c0-.55.45-1 1-1s1 .45 1 1v1.09c2.84.48 5 2.94 5 5.91 0 2.21-1.21 4.15-3 5.19V21c0 .55.45 1 1 1 5.52 0 10-4.48 10-10S17.52 2 12 2z'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10c.55 0 1-.45 1-1v-1.5c0-.28-.11-.53-.3-.72-.18-.18-.44-.28-.7-.28-3.31 0-6-2.69-6-6 0-2.97 2.16-5.43 5-5.91V6c0-.55.45-1 1-1s1 .45 1 1v1.09c2.84.48 5 2.94 5 5.91 0 2.21-1.21 4.15-3 5.19V21c0 .55.45 1 1 1 5.52 0 10-4.48 10-10S17.52 2 12 2z'/%3E%3C/svg%3E");
}

.cvc-vshop-match-trust-icon.is-products::before {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M20 6h-2.18c.11-.31.18-.65.18-1 0-1.66-1.34-3-3-3-1.05 0-1.96.54-2.5 1.35l-.5.67-.5-.68C10.96 2.54 10.05 2 9 2 7.34 2 6 3.34 6 5c0 .35.07.69.18 1H4c-1.11 0-1.99.89-1.99 2L2 19c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V8c0-1.11-.89-2-2-2zm-5-2c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zM9 4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm11 15H4v-2h16v2zm0-5H4V8h5.08L7 10.83 8.62 12 11 8.76l1-1.36 1 1.36L15.38 12 17 10.83 14.92 8H20v6z'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M20 6h-2.18c.11-.31.18-.65.18-1 0-1.66-1.34-3-3-3-1.05 0-1.96.54-2.5 1.35l-.5.67-.5-.68C10.96 2.54 10.05 2 9 2 7.34 2 6 3.34 6 5c0 .35.07.69.18 1H4c-1.11 0-1.99.89-1.99 2L2 19c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V8c0-1.11-.89-2-2-2zm-5-2c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zM9 4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm11 15H4v-2h16v2zm0-5H4V8h5.08L7 10.83 8.62 12 11 8.76l1-1.36 1 1.36L15.38 12 17 10.83 14.92 8H20v6z'/%3E%3C/svg%3E");
}

.cvc-vshop-match-trust-icon.is-quality::before {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M12 1L3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4zm-2 16l-4-4 1.41-1.41L10 14.17l6.59-6.59L18 9l-8 8z'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M12 1L3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4zm-2 16l-4-4 1.41-1.41L10 14.17l6.59-6.59L18 9l-8 8z'/%3E%3C/svg%3E");
}

.cvc-vshop-match-trust-copy {
    display: flex;
    flex-direction: column;
    gap: 1px;
    min-width: 0;
}

.cvc-vshop-match-trust-copy strong {
    font-size: 0.82rem;
    font-weight: 700;
    color: #101828;
    line-height: 1.25;
}

.cvc-vshop-match-trust-copy span {
    font-size: 0.76rem;
    color: #667085;
    line-height: 1.25;
}

.cvc-vshop-match-card-actions {
    display: none;
    padding: 0 24px 16px;
    background: #fff;
}

.cvc-vshop-match-card-actions .cvc-vshop-text-action {
    text-align: left;
}

.cvc-vshop-section-panel-inner > .cvc-vshop-match-card,
.cvc-vshop-section-panel-inner > .cvc-vshop-vehicle-intro .cvc-vshop-match-card {
    margin: 0;
    border-radius: 0;
    border-left: none;
    border-right: none;
    border-top: none;
    box-shadow: none;
}

.cvc-vshop-vehicle-intro .cvc-vshop-match-card {
    margin-bottom: 0;
}

.cvc-vshop-text-action {
    display: inline-block;
    padding: 0;
    border: none !important;
    background: none !important;
    color: var(--cvc-red) !important;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-align: right;
    text-decoration: none;
    cursor: pointer;
    line-height: 1.3;
    box-shadow: none !important;
    transition: color var(--cvc-transition);
}

.cvc-vshop-text-action:hover,
.cvc-vshop-text-action:focus,
.cvc-vshop-text-action:active {
    background: none !important;
    border: none !important;
    color: var(--cvc-red-dark) !important;
    text-decoration: underline;
    box-shadow: none !important;
}


@media (min-width: 900px) {
    .cvc-vshop-match-card-main {
        grid-template-columns: auto minmax(0, 1fr) minmax(180px, 0.9fr);
        gap: 20px 28px;
        padding: 26px 30px 22px;
    }

    .cvc-vshop-match-hero-visual {
        display: flex;
    }

    .cvc-vshop-section-panel-inner > .cvc-vshop-match-card .cvc-vshop-match-card-main {
        padding: 22px 24px 18px;
    }
}

@media (max-width: 1100px) {
    .cvc-vshop-match-trust-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 899px) {
    .cvc-vshop-match-card-main {
        grid-template-columns: auto 1fr;
    }

    .cvc-vshop-match-hero-badge {
        grid-row: auto;
    }

    .cvc-vshop-match-details {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .cvc-vshop-match-detail {
        padding: 0;
        border-right: none !important;
    }
}

@media (max-width: 599px) {
    .cvc-vshop-match-card-toolbar {
        padding: 12px 14px;
    }

    .cvc-vshop-match-card-main {
        padding: 18px 16px 16px;
    }

    .cvc-vshop-match-hero-badge {
        width: 72px;
        height: 72px;
    }

    .cvc-vshop-match-hero-badge-circle {
        inset: 10px;
    }

    .cvc-vshop-match-hero-badge-check {
        font-size: 1.6rem;
    }

    .cvc-vshop-match-trust-grid {
        grid-template-columns: 1fr;
    }

    .cvc-vshop-match-card-footer {
        padding: 14px 16px 16px;
    }
}

/* ── Collapsible selector panel ── */
.cvc-vshop-selector-panel {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    margin-bottom: 0;
    transition: max-height 300ms ease, opacity 250ms ease, margin-bottom 250ms ease;
}

.cvc-vshop-selector-panel.is-open {
    max-height: 4000px;
    opacity: 1;
    margin-bottom: var(--cvc-gap-section);
    overflow: visible;
}

.cvc-vshop-selector-panel.is-open .cvc-vshop-selector-panel-inner {
    padding: 16px;
    overflow: visible;
}

.cvc-vshop-selector-panel.is-open .vs26-app {
    margin: 0;
}

.cvc-vshop-selector-panel.is-collapsed {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
}

.cvc-vshop-selector-panel-inner {
    padding: 16px;
    background: #fff;
    border: 1px solid var(--cvc-border);
    border-radius: var(--cvc-radius);
    box-shadow: var(--cvc-shadow);
    overflow: visible;
    min-width: 0;
}

/* VS26 fullbleed breaks out to 100vw — clip inside vehicle shop; contain it here */
.cvc-vshop-premium .cvc-vshop-selector-panel .vs26-app.vs26-fullbleed,
.cvc-vshop-premium.cvc-vehicle-shop-empty .vs26-app.vs26-fullbleed {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding: 16px;
    box-sizing: border-box;
    background: #f5f4ef;
}

.cvc-vshop-premium .cvc-vshop-selector-panel .vs26-app.vs26-fullbleed .vs26-layout,
.cvc-vshop-premium.cvc-vehicle-shop-empty .vs26-app.vs26-fullbleed .vs26-layout {
    max-width: 100%;
    margin: 0;
}

.cvc-vshop-premium .cvc-vshop-selector-panel .vs26-fields-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    align-items: end;
}

.cvc-vshop-premium .cvc-vshop-selector-panel .vs26-btn-find-color {
    grid-column: 1 / -1;
    width: 100%;
    margin-top: 4px;
}

@media (min-width: 768px) {
    .cvc-vshop-premium .cvc-vshop-selector-panel .vs26-fields-row {
        grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
    }

    .cvc-vshop-premium .cvc-vshop-selector-panel .vs26-btn-find-color {
        grid-column: auto;
        width: auto;
        margin-top: 0;
        white-space: nowrap;
    }
}

.cvc-vshop-premium .cvc-vshop-selector-panel .vs26-panel,
.cvc-vshop-premium .cvc-vshop-selector-panel .vs26-step-colors,
.cvc-vshop-premium .cvc-vshop-selector-panel .vs26-visual {
    min-width: 0;
    max-width: 100%;
}

.cvc-vshop-premium .cvc-vshop-selector-panel .vs26-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
}

.cvc-vshop-premium .cvc-vshop-selector-panel .vs26-swatches {
    grid-template-columns: repeat(auto-fill, minmax(72px, 1fr));
}

/* ── Vehicle sections (collapsible cards) ── */
.cvc-vshop-vehicle-sections {
    display: flex;
    flex-direction: column;
    gap: var(--cvc-gap-section);
}

.cvc-vshop-vehicle-section {
    scroll-margin-top: 80px;
    background: #fff;
    border: 1px solid var(--cvc-border);
    border-radius: var(--cvc-radius);
    box-shadow: var(--cvc-shadow);
    overflow: hidden;
}

.cvc-vshop-vehicle-section.is-single-vehicle {
    border: none;
    box-shadow: none;
    background: transparent;
}

.cvc-vshop-section-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    cursor: pointer;
    user-select: none;
    background: #fafafa;
    border-bottom: 1px solid transparent;
    transition: background var(--cvc-transition);
}

.cvc-vshop-section-header:hover {
    background: #f3f4f6;
}

.cvc-vshop-vehicle-section:not(.is-section-collapsed) .cvc-vshop-section-header {
    border-bottom-color: var(--cvc-border);
}

.cvc-vshop-section-header-title {
    flex: 1;
    min-width: 0;
    font-size: var(--cvc-type-meta);
    font-weight: 600;
    color: var(--cvc-text);
}

.cvc-vshop-section-chevron {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    position: relative;
    transition: transform var(--cvc-transition);
}
.cvc-vshop-section-chevron::before {
    content: '';
    position: absolute;
    top: 4px;
    left: 5px;
    width: 7px;
    height: 7px;
    border-right: 2px solid var(--cvc-muted);
    border-bottom: 2px solid var(--cvc-muted);
    transform: rotate(45deg);
    transition: transform var(--cvc-transition);
}
.cvc-vshop-vehicle-section:not(.is-section-collapsed) .cvc-vshop-section-chevron::before {
    transform: rotate(-135deg);
    top: 7px;
}

.cvc-vshop-section-header-main {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 0;
    flex-wrap: wrap;
}
.cvc-vshop-section-header-icon { font-size: 1.1rem; flex-shrink: 0; }
.cvc-vshop-section-header-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
    min-width: 0;
}
.cvc-vshop-section-header-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--cvc-text);
}
.cvc-vshop-section-header-color {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--cvc-red);
}
.cvc-vshop-section-header-badge {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--cvc-green);
    background: var(--cvc-green-bg);
    padding: 3px 8px;
    border-radius: 999px;
    white-space: nowrap;
}

.cvc-vshop-section-remove {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    color: var(--cvc-muted);
    text-decoration: none;
    font-size: 1.25rem;
    line-height: 1;
    transition: color var(--cvc-transition), background var(--cvc-transition);
}
.cvc-vshop-section-remove:hover {
    color: var(--cvc-red);
    background: #fff0f0;
}

.cvc-vshop-section-panel {
    display: grid;
    grid-template-rows: 1fr;
    transition: grid-template-rows 250ms ease;
}
.cvc-vshop-vehicle-section.is-section-collapsed .cvc-vshop-section-panel {
    grid-template-rows: 0fr;
}
.cvc-vshop-section-panel-inner {
    overflow: hidden;
    min-height: 0;
}

.cvc-vshop-section-body {
    padding: var(--cvc-gap-card);
}

.cvc-vshop-vehicle-section.is-single-vehicle .cvc-vshop-section-body {
    padding: 0;
}

/* ── Recommendations header ── */
.cvc-vshop-recommendations-header {
    margin: 0 0 24px;
    text-align: left;
}

.cvc-vshop-recommendations-title {
    margin: 0 0 10px;
    font-size: clamp(1.35rem, 2.2vw, 1.75rem);
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.02em;
    color: var(--cvc-text);
}

.cvc-vshop-recommendations-desc {
    margin: 0;
    max-width: 680px;
    font-size: 0.95rem;
    line-height: 1.55;
    color: var(--cvc-muted);
}

/* ── Buttons (isolated from Glozin theme global button styles) ── */
.cvc-vshop-premium button::after,
.cvc-vshop-premium .cvc-vshop-btn::after,
.cvc-vshop-premium .vs26-app button::after {
    display: none !important;
    animation: none !important;
    content: none !important;
}

.cvc-vshop-premium .vs26-app {
    --vs26-accent: var(--cvc-red);
    --vs26-accent-dark: var(--cvc-red-dark);
    --vs26-accent-soft: #fff5f5;
    --vs26-accent-border: #f3c4c8;
}

.cvc-vshop-premium .cvc-vshop-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 18px;
    border-radius: 8px;
    font-size: 0.78rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    cursor: pointer;
    border: 2px solid transparent;
    transition: background var(--cvc-transition), color var(--cvc-transition), border-color var(--cvc-transition), transform var(--cvc-transition);
    line-height: 1.3;
    white-space: nowrap;
    -webkit-appearance: none;
    appearance: none;
}

.cvc-vshop-btn-sm {
    padding: 6px 12px !important;
    font-size: 0.78rem !important;
}

.cvc-vshop-btn-primary,
.cvc-vshop-premium button.cvc-vshop-add-to-cart-btn.cvc-vshop-btn-primary,
.cvc-vshop-premium .cvc-vshop-add-to-cart-btn.cvc-vshop-btn-primary {
    background: var(--cvc-red) !important;
    color: #fff !important;
    border-color: var(--cvc-red) !important;
}

.cvc-vshop-btn-primary:hover,
.cvc-vshop-btn-primary:focus,
.cvc-vshop-btn-primary:active,
.cvc-vshop-premium button.cvc-vshop-add-to-cart-btn.cvc-vshop-btn-primary:hover,
.cvc-vshop-premium button.cvc-vshop-add-to-cart-btn.cvc-vshop-btn-primary:focus,
.cvc-vshop-premium button.cvc-vshop-add-to-cart-btn.cvc-vshop-btn-primary:active {
    background: var(--cvc-red-dark) !important;
    border-color: var(--cvc-red-dark) !important;
    color: #fff !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(230, 57, 70, 0.28);
}

.cvc-vshop-btn-outline {
    background: #fff !important;
    color: var(--cvc-red) !important;
    border-color: var(--cvc-red) !important;
}

.cvc-vshop-btn-outline:hover,
.cvc-vshop-btn-outline:focus,
.cvc-vshop-btn-outline:active {
    background: #fff5f5 !important;
    color: var(--cvc-red-dark) !important;
    border-color: var(--cvc-red-dark) !important;
}

.cvc-vshop-btn-ghost {
    background: transparent !important;
    color: var(--cvc-muted) !important;
    border-color: var(--cvc-border) !important;
}

.cvc-vshop-btn-ghost:hover,
.cvc-vshop-btn-ghost:focus,
.cvc-vshop-btn-ghost:active {
    color: var(--cvc-red) !important;
    border-color: var(--cvc-red) !important;
    background: #fff5f5 !important;
}

.cvc-vshop-btn-link,
.cvc-vshop-premium button.cvc-vshop-btn-link,
.cvc-vshop-premium a.cvc-vshop-btn-link {
    display: inline-block;
    padding: 0;
    border: none !important;
    background: none !important;
    color: var(--cvc-red) !important;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: color var(--cvc-transition);
    line-height: 1.3;
    box-shadow: none !important;
}

.cvc-vshop-btn-link:hover,
.cvc-vshop-btn-link:focus,
.cvc-vshop-btn-link:active,
.cvc-vshop-premium button.cvc-vshop-btn-link:hover,
.cvc-vshop-premium a.cvc-vshop-btn-link:hover {
    background: none !important;
    border: none !important;
    color: var(--cvc-red-dark) !important;
    text-decoration: underline;
    box-shadow: none !important;
    transform: none !important;
}

.cvc-vshop-rec-actions .cvc-vshop-btn-link,
.cvc-vshop-accessory-actions .cvc-vshop-btn-link {
    width: 100%;
    padding: 4px 0;
}

/* Reset legacy vehicle-shop.css button styles inside premium UI */
.cvc-vshop-premium .cvc-vshop-btn-link.cvc-vshop-learn-more-btn,
.cvc-vshop-premium .cvc-vshop-btn-link.cvc-vshop-add-to-cart-btn {
    flex: none;
    display: inline-block;
    min-height: 0;
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    transform: none !important;
    padding: 4px 0;
    color: var(--cvc-red) !important;
}

.cvc-vshop-premium .cvc-vshop-btn-link.cvc-vshop-learn-more-btn:hover,
.cvc-vshop-premium .cvc-vshop-btn-link.cvc-vshop-learn-more-btn:focus,
.cvc-vshop-premium .cvc-vshop-btn-link.cvc-vshop-add-to-cart-btn:hover,
.cvc-vshop-premium .cvc-vshop-btn-link.cvc-vshop-add-to-cart-btn:focus {
    background: none !important;
    color: var(--cvc-red-dark) !important;
    transform: none !important;
    box-shadow: none !important;
    text-decoration: underline;
}

/* VS26 buttons — reinforce against Glozin global button styles */
.cvc-vshop-premium .vs26-app .vs26-btn-find-color,
.cvc-vshop-premium .vs26-app .vs26-btn-find {
    background: var(--vs26-accent) !important;
    border-color: var(--vs26-accent) !important;
    color: #fff !important;
}

.cvc-vshop-premium .vs26-app .vs26-btn-find-color:hover:not(:disabled),
.cvc-vshop-premium .vs26-app .vs26-btn-find-color:focus-visible,
.cvc-vshop-premium .vs26-app .vs26-btn-find:hover:not(:disabled),
.cvc-vshop-premium .vs26-app .vs26-btn-find:focus-visible {
    background: var(--vs26-accent-dark) !important;
    border-color: var(--vs26-accent-dark) !important;
    color: #fff !important;
}

.cvc-vshop-premium .vs26-app .vs26-manual-toggle {
    background: transparent !important;
    border: 1px dashed #bbb !important;
    color: #666 !important;
}

.cvc-vshop-premium .vs26-app .vs26-manual-toggle:hover,
.cvc-vshop-premium .vs26-app .vs26-manual-toggle:focus {
    border-color: var(--vs26-accent-border) !important;
    color: var(--vs26-accent-dark) !important;
    background: var(--vs26-accent-soft) !important;
}

.cvc-vshop-premium .vs26-app .vs26-btn-reset {
    background: none !important;
    border: none !important;
    color: #777 !important;
    box-shadow: none !important;
}

.cvc-vshop-premium .vs26-app .vs26-btn-reset:hover,
.cvc-vshop-premium .vs26-app .vs26-btn-reset:focus {
    background: none !important;
    color: var(--vs26-accent) !important;
}

.cvc-vshop-premium .vs26-app .vs26-btn-find-color:disabled,
.cvc-vshop-premium .vs26-app .vs26-btn-find:disabled {
    background: #ececec !important;
    border-color: #ececec !important;
    color: #9a9a9a !important;
    opacity: 1 !important;
    cursor: not-allowed;
    box-shadow: none !important;
    transform: none !important;
}

.cvc-vshop-premium .cvc-vshop-rec-actions .cvc-vshop-add-to-cart-btn.cvc-vshop-btn-primary {
    flex: none;
    min-height: 0;
}

/* ── Recommendation cards ── */
.cvc-vshop-recommended-section {
    margin-bottom: var(--cvc-gap-section);
}

.cvc-vshop-recommendation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    align-items: stretch;
}

.cvc-vshop-recommendation-grid.has-dual-recommendations {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 1fr);
}

.cvc-vshop-rec-card {
    position: relative;
    background: #fff;
    border: 1px solid #e3e6ea;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    transition: transform var(--cvc-transition), box-shadow var(--cvc-transition);
}

.cvc-vshop-rec-card.is-primary {
    border: 2px solid rgba(227, 30, 36, 0.55);
    box-shadow: 0 6px 28px rgba(227, 30, 36, 0.08);
}

.cvc-vshop-rec-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
}

.cvc-vshop-rec-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1;
}

.cvc-vshop-rec-badge.is-primary {
    background: var(--cvc-red);
    color: #fff;
    box-shadow: 0 4px 12px rgba(227, 30, 36, 0.25);
}

.cvc-vshop-rec-badge.is-secondary {
    background: #f4c430;
    color: #1a1a1a;
    box-shadow: 0 4px 12px rgba(244, 196, 48, 0.25);
}

.cvc-vshop-rec-badge-icon {
    width: 12px;
    height: 12px;
    background: currentColor;
    flex-shrink: 0;
}

.cvc-vshop-rec-badge.is-primary .cvc-vshop-rec-badge-icon {
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M12 2l2.9 6.9 7.1.6-5.4 4.6 1.7 7-6.3-3.8-6.3 3.8 1.7-7-5.4-4.6 7.1-.6z'/%3E%3C/svg%3E") center / contain no-repeat;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M12 2l2.9 6.9 7.1.6-5.4 4.6 1.7 7-6.3-3.8-6.3 3.8 1.7-7-5.4-4.6 7.1-.6z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.cvc-vshop-rec-badge.is-secondary .cvc-vshop-rec-badge-icon {
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M13 2L4 14h6l-1 8 9-12h-6l1-8z'/%3E%3C/svg%3E") center / contain no-repeat;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M13 2L4 14h6l-1 8 9-12h-6l1-8z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.cvc-vshop-rec-image {
    padding: 48px 20px 16px;
    text-align: center;
    background: #fafbfc;
}

.cvc-vshop-rec-img {
    max-height: 190px;
    width: auto;
    margin: 0 auto;
}

.cvc-vshop-rec-card.is-primary .cvc-vshop-rec-img {
    max-height: 210px;
}

.cvc-vshop-rec-body {
    padding: 20px 22px 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: left;
}

.cvc-vshop-rec-title {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: -0.01em;
}

.cvc-vshop-rec-title a {
    color: var(--cvc-text);
    text-decoration: none;
}

.cvc-vshop-rec-title a:hover { color: var(--cvc-red); }

.cvc-vshop-rec-rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cvc-vshop-stars {
    display: flex;
    gap: 2px;
    color: #f4b942;
    font-size: 0.95rem;
    line-height: 1;
}

.cvc-vshop-star.is-empty { opacity: 0.28; }

.cvc-vshop-rec-rating-value {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--cvc-muted);
}

.cvc-vshop-rec-desc {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.55;
    color: #4b5563;
}

.cvc-vshop-rec-features {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 8px;
    flex: 1;
}

.cvc-vshop-rec-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.86rem;
    line-height: 1.45;
    color: var(--cvc-text);
}

.cvc-vshop-rec-features li::before {
    content: '✓';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    margin-top: 0;
    border-radius: 50%;
    background: #e8f7ee;
    color: var(--cvc-green);
    font-size: 0.62rem;
    font-weight: 800;
    flex-shrink: 0;
}

.cvc-vshop-rec-price {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--cvc-red);
    margin: 4px 0 0;
    line-height: 1.2;
}

.cvc-vshop-rec-price .woocommerce-Price-amount { color: inherit; }

.cvc-vshop-rec-hint {
    margin: 0;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1.4;
    text-align: left;
}

.cvc-vshop-rec-hint.is-primary {
    background: #fff0f1;
    color: var(--cvc-red);
}

.cvc-vshop-rec-hint.is-secondary {
    background: #fff8e8;
    color: #b8860b;
}

.cvc-vshop-rec-actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    margin-top: 8px;
}

.cvc-vshop-rec-actions form { margin: 0; }

.cvc-vshop-rec-actions .cvc-vshop-btn-primary {
    width: 100%;
    padding: 13px 18px;
}

.cvc-vshop-cart-icon {
    width: 16px;
    height: 16px;
    background: currentColor;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M7 18a2 2 0 100 4 2 2 0 000-4zm10 0a2 2 0 100 4 2 2 0 000-4zM6.2 6l-.3-2H2V2h3.8l1.7 9.1L5.6 14H19v-2H7.4l1-4.2 8.6 2.2z'/%3E%3C/svg%3E") center / contain no-repeat;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M7 18a2 2 0 100 4 2 2 0 000-4zm10 0a2 2 0 100 4 2 2 0 000-4zM6.2 6l-.3-2H2V2h3.8l1.7 9.1L5.6 14H19v-2H7.4l1-4.2 8.6 2.2z'/%3E%3C/svg%3E") center / contain no-repeat;
}

/* ── Product confidence banner ── */
.cvc-vshop-confidence-banner {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 28px;
    padding: 18px 22px;
    background: #fff7f8;
    border: 1px solid #f3d4d8;
    border-radius: 14px;
    text-align: left;
}

.cvc-vshop-confidence-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #e8f7ee;
    flex-shrink: 0;
    position: relative;
}

.cvc-vshop-confidence-icon::before {
    content: '';
    position: absolute;
    inset: 10px;
    background: var(--cvc-green);
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M12 2l7 3v6c0 5-3.2 9.7-7 11-3.8-1.3-7-6-7-11V5l7-3zm-1 11l5-5-1.4-1.4L11 10.2 8.4 7.6 7 9l4 4z'/%3E%3C/svg%3E") center / contain no-repeat;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M12 2l7 3v6c0 5-3.2 9.7-7 11-3.8-1.3-7-6-7-11V5l7-3zm-1 11l5-5-1.4-1.4L11 10.2 8.4 7.6 7 9l4 4z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.cvc-vshop-confidence-copy {
    min-width: 0;
}

.cvc-vshop-confidence-text {
    margin: 0 0 6px;
    font-size: 0.92rem;
    line-height: 1.55;
    color: var(--cvc-text);
}

.cvc-vshop-confidence-help {
    margin: 0;
    font-size: 0.88rem;
    color: var(--cvc-muted);
}

.cvc-vshop-confidence-help a {
    color: var(--cvc-red);
    font-weight: 700;
    text-decoration: none;
}

.cvc-vshop-confidence-help a:hover {
    text-decoration: underline;
}

.cvc-vshop-no-products {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--cvc-muted);
    text-align: left;
}

/* ── Accessories / cross-sell ── */
.cvc-vshop-upsell-section {
    margin-top: var(--cvc-gap-section);
    padding-top: var(--cvc-gap-section);
    border-top: 1px solid var(--cvc-border);
    text-align: left;
}

.cvc-vshop-upsell-heading {
    margin: 0 0 20px;
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.cvc-vshop-accessory-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 16px;
}

@media (min-width: 900px) {
    .cvc-vshop-accessory-grid {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }
}

.cvc-vshop-accessory-card {
    background: #fff;
    border: 1px solid var(--cvc-border);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform var(--cvc-transition), box-shadow var(--cvc-transition);
}

.cvc-vshop-accessory-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}

.cvc-vshop-accessory-image {
    padding: 14px 12px 8px;
    text-align: center;
    background: #fafafa;
}

.cvc-vshop-accessory-img {
    max-height: 88px;
    width: auto;
    margin: 0 auto;
}

.cvc-vshop-accessory-body {
    padding: 12px 14px 14px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 6px;
    text-align: left;
}

.cvc-vshop-accessory-title {
    margin: 0;
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1.35;
}

.cvc-vshop-accessory-title a {
    color: var(--cvc-text);
    text-decoration: none;
}

.cvc-vshop-accessory-title a:hover {
    color: var(--cvc-red);
}

.cvc-vshop-accessory-price {
    font-weight: 700;
    color: var(--cvc-red);
    font-size: 0.88rem;
    line-height: 1.3;
}

.cvc-vshop-accessory-price del {
    color: var(--cvc-muted);
    font-weight: 500;
    font-size: 0.78rem;
}

.cvc-vshop-accessory-actions {
    margin-top: auto;
    padding-top: 4px;
}

.cvc-vshop-accessory-actions form {
    margin: 0;
}

/* ── Empty state ── */
.cvc-vshop-selector-panel-inner .vs26-wrap,
.cvc-vshop-selector-panel-inner .cvc-vehicle-selector-wrap {
    max-width: 100% !important;
    margin: 0 !important;
}

.cvc-vshop-premium.cvc-vehicle-shop-empty .cvc-vshop-selector-panel {
    max-height: 4000px;
    opacity: 1;
    margin-bottom: var(--cvc-gap-section);
    overflow: visible;
}

.cvc-vshop-premium.cvc-vehicle-shop-empty .cvc-vshop-selector-panel-inner {
    background: #f5f4ef;
    border: none;
    box-shadow: none;
    padding: 16px;
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .cvc-vshop-premium {
        --cvc-type-section: 24px;
        --cvc-type-product: 20px;
    }
    .cvc-vshop-recommendation-grid,
    .cvc-vshop-recommendation-grid.has-dual-recommendations {
        grid-template-columns: 1fr;
    }
    .cvc-vshop-confidence-banner {
        flex-direction: column;
    }
}

@media (max-width: 600px) {
    .cvc-vshop-premium {
        --cvc-type-hero: 28px;
        --cvc-type-section: 22px;
    }
    .cvc-vshop-garage-pill { padding: 8px 14px; font-size: 0.8rem; }
}

/* ═══════════════════════════════════════════════════════════════
   v2.8 — "Match Report" redesign (user-approved screenshot spec)
   Hero simplified (3 checkpoints), Your Vehicle bar, restructured
   rec cards, Complete Your Repair scroller, trust strip, help bar.
   Presentation only. Mobile-first.
   ═══════════════════════════════════════════════════════════════ */

/* ── Hero (simplified) ── */
.cvc-vshop-premium .cvc-vshop-match-card.cvc-vshop-hero2 {
    position: relative;
    background: linear-gradient(120deg, #eefbf3 0%, #f8fdf9 100%);
    border: 1px solid #d3ecdd;
    border-radius: 16px;
    padding: 0;
    overflow: hidden;
}

.cvc-vshop-hero2 .cvc-vshop-match-card-dismiss {
    position: absolute;
    top: 10px;
    right: 12px;
    z-index: 3;
    background: #ffffff !important;
    border: 1px solid #cde8d7 !important;
    color: #166534 !important;
    border-radius: 8px;
    width: 28px;
    height: 28px;
    line-height: 1;
    font-size: 16px;
    cursor: pointer;
}

.cvc-vshop-hero2 .cvc-vshop-match-card-body {
    padding: 22px 24px;
}

.cvc-vshop-hero2.is-collapsed .cvc-vshop-match-card-body {
    display: none;
}

.cvc-vshop-hero2-grid {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) minmax(220px, 38%);
    gap: 20px;
    align-items: center;
}

.cvc-vshop-hero2-badge {
    position: relative;
    align-self: start;
}

.cvc-vshop-hero2-title {
    margin: 0;
    font-size: clamp(20px, 2.6vw, 28px);
    font-weight: 800;
    letter-spacing: 0.02em;
    color: #16a34a;
    line-height: 1.15;
}

.cvc-vshop-hero2-lead {
    margin: 6px 0 0;
    font-size: 14px;
    color: #374151;
}

.cvc-vshop-hero2-steps {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 0;
    margin: 16px 0 0;
    padding: 0;
}

.cvc-vshop-hero2-step {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
}

/* dotted connector between checkpoints */
.cvc-vshop-hero2-step + .cvc-vshop-hero2-step::before {
    content: '';
    width: 34px;
    border-top: 2px dotted #b9dfc8;
    margin: 0 10px;
    flex: none;
}

.cvc-vshop-hero2-step-check {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #16a34a;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    flex: none;
}

.cvc-vshop-hero2-step-copy {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.cvc-vshop-hero2-step-copy strong {
    font-size: 12.5px;
    color: #1f2937;
    font-weight: 700;
}

.cvc-vshop-hero2-step-copy span {
    font-size: 11.5px;
    color: #6b7280;
}

.cvc-vshop-hero2 .cvc-vshop-match-hero-visual {
    margin: 0;
}

/* ── Your Vehicle bar ── */
.cvc-vshop-vehicle-bar {
    background: #ffffff;
    border: 1px solid #ececea;
    border-radius: 14px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px 22px;
    box-shadow: 0 1px 4px rgba(16, 24, 40, 0.05);
}

.cvc-vshop-vbar-id {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.cvc-vshop-vbar-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #fdeef0;
    color: #c81a24;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: none;
}

.cvc-vshop-vbar-avatar svg {
    width: 28px;
    height: 28px;
}

.cvc-vshop-vbar-meta {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.cvc-vshop-vbar-label {
    font-size: 12px;
    color: #6b7280;
}

.cvc-vshop-vbar-title {
    font-size: 18px;
    font-weight: 800;
    color: #111827;
    line-height: 1.25;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cvc-vshop-vbar-colour {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    color: #374151;
    margin-top: 2px;
}

.cvc-vshop-vbar-colour-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #c81a24;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15);
    flex: none;
}

.cvc-vshop-vbar-trust {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 22px;
    margin: 0;
    padding: 0;
    flex: 1;
    justify-content: center;
}

.cvc-vshop-vbar-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
}

.cvc-vshop-vbar-trust-copy {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
}

.cvc-vshop-vbar-trust-copy strong {
    font-size: 12px;
    color: #1f2937;
    font-weight: 700;
}

.cvc-vshop-vbar-trust-copy span {
    font-size: 11px;
    color: #6b7280;
}

.cvc-vshop-vbar-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
}

.cvc-vshop-vbar-edit-icon {
    margin-right: 5px;
}

/* single-vehicle page: garage pills replaced by the Your Vehicle bar */
.cvc-vshop-premium.is-single-vehicle-page .cvc-vshop-garage-pills {
    display: none;
}

/* ── Rec cards: image | info top row, buy block below ── */
.cvc-vshop-rec-card2 .cvc-vshop-rec-main {
    display: grid;
    grid-template-columns: minmax(120px, 42%) minmax(0, 1fr);
    gap: 16px;
    align-items: start;
}

.cvc-vshop-rec-card2 .cvc-vshop-rec-image {
    margin: 0;
}

.cvc-vshop-rec-card2 .cvc-vshop-rec-buy {
    margin-top: 12px;
}

/* ── Complete Your Repair (add-ons) ── */
.cvc-vshop-upsell2 {
    background: #ffffff;
    border: 1px solid #ececea;
    border-radius: 14px;
    padding: 16px 18px;
    margin-top: 18px;
}

.cvc-vshop-upsell2 .cvc-vshop-upsell-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    cursor: pointer;
}

.cvc-vshop-upsell2 .cvc-vshop-upsell-heading {
    margin: 0;
    font-size: 18px;
    font-weight: 800;
    color: #111827;
}

.cvc-vshop-upsell-sub {
    margin: 2px 0 0;
    font-size: 12.5px;
    color: #6b7280;
}

.cvc-vshop-addons-chevron {
    width: 10px;
    height: 10px;
    border-right: 2px solid #6b7280;
    border-bottom: 2px solid #6b7280;
    transform: rotate(45deg);
    transition: transform 180ms ease;
    flex: none;
}

.cvc-vshop-upsell2.is-addons-collapsed .cvc-vshop-addons-chevron {
    transform: rotate(-45deg);
}

.cvc-vshop-addons-body {
    position: relative;
    margin-top: 14px;
}

.cvc-vshop-upsell2.is-addons-collapsed .cvc-vshop-addons-body {
    display: none;
}

.cvc-vshop-accessory-scroller {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x proximity;
    scrollbar-width: thin;
    padding-bottom: 6px;
}

.cvc-vshop-upsell2 .cvc-vshop-accessory-grid {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 12px;
    grid-template-columns: none;
}

.cvc-vshop-upsell2 .cvc-vshop-accessory-card {
    flex: 0 0 172px;
    scroll-snap-align: start;
}

.cvc-vshop-premium button.cvc-vshop-addons-arrow {
    position: absolute;
    top: 50%;
    right: -6px;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    border-radius: 50% !important;
    background: #ffffff !important;
    border: 1px solid #e3e3e3 !important;
    color: #374151 !important;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(16, 24, 40, 0.14);
    z-index: 2;
}

.cvc-vshop-premium button.cvc-vshop-addons-arrow::after {
    display: none !important;
}

.cvc-vshop-premium button.cvc-vshop-addons-arrow.is-hidden {
    display: none;
}

/* ── Bottom trust strip ── */
.cvc-vshop-trust-strip {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin: 18px 0 0;
    padding: 16px 18px;
    background: #ffffff;
    border: 1px solid #ececea;
    border-radius: 14px;
}

.cvc-vshop-trust-strip-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    min-width: 0;
}

.cvc-vshop-trust-strip-item + .cvc-vshop-trust-strip-item {
    border-left: 1px solid #f0f0ee;
    padding-left: 14px;
}

.cvc-vshop-trust-strip-copy {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
    min-width: 0;
}

.cvc-vshop-trust-strip-copy strong {
    font-size: 13px;
    color: #1f2937;
    font-weight: 700;
}

.cvc-vshop-trust-strip-copy span {
    font-size: 11.5px;
    color: #6b7280;
}

/* ── Bottom help bar ── */
.cvc-vshop-help-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 14px;
    padding: 12px 18px;
    background: #f2fbf5;
    border: 1px solid #d8efe0;
    border-radius: 12px;
}

.cvc-vshop-help-bar-check {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #16a34a;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    flex: none;
}

.cvc-vshop-help-bar-text {
    margin: 0;
    flex: 1;
    font-size: 13.5px;
    color: #1f2937;
}

.cvc-vshop-premium a.cvc-vshop-help-bar-btn {
    white-space: nowrap;
}

/* ── Mobile ── */
@media (max-width: 860px) {
    .cvc-vshop-hero2 .cvc-vshop-match-card-body {
        padding: 16px 14px;
    }

    .cvc-vshop-hero2-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .cvc-vshop-hero2-badge {
        display: none;
    }

    .cvc-vshop-hero2-title {
        padding-right: 34px;
    }

    .cvc-vshop-hero2-steps {
        gap: 10px;
    }

    .cvc-vshop-hero2-step + .cvc-vshop-hero2-step::before {
        width: 16px;
        margin: 0 4px;
    }

    .cvc-vshop-hero2 .cvc-vshop-match-hero-visual {
        max-width: 320px;
        margin: 0 auto;
    }

    .cvc-vshop-vehicle-bar {
        padding: 12px 14px;
        gap: 12px;
    }

    .cvc-vshop-vbar-trust {
        order: 3;
        flex-basis: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        justify-content: start;
    }

    .cvc-vshop-vbar-actions {
        margin-left: auto;
        flex-direction: column;
        align-items: flex-end;
        gap: 6px;
    }

    .cvc-vshop-rec-card2 .cvc-vshop-rec-main {
        grid-template-columns: 96px minmax(0, 1fr);
        gap: 12px;
    }

    .cvc-vshop-rec-card2 .cvc-vshop-rec-features {
        grid-column: 1 / -1;
    }

    .cvc-vshop-trust-strip {
        grid-template-columns: 1fr 1fr;
        gap: 14px 10px;
        padding: 14px;
    }

    .cvc-vshop-trust-strip-item + .cvc-vshop-trust-strip-item {
        border-left: none;
        padding-left: 0;
    }

    .cvc-vshop-help-bar {
        flex-wrap: wrap;
    }

    .cvc-vshop-premium a.cvc-vshop-help-bar-btn {
        flex-basis: 100%;
        text-align: center;
    }

    .cvc-vshop-upsell2 .cvc-vshop-accessory-card {
        flex: 0 0 150px;
    }
}

@media (max-width: 480px) {
    .cvc-vshop-hero2-step-copy strong {
        font-size: 11.5px;
    }

    .cvc-vshop-vbar-title {
        font-size: 16px;
        white-space: normal;
    }
}

/* ═══════════════════════════════════════════════════════════════
   v2.8.1 — balance & alignment fixes + collapsible Your Vehicle card
   ═══════════════════════════════════════════════════════════════ */

/* Hero: neutralize legacy grid placement that created a phantom row
   (grid-row: 1 / span 2) and legacy display:none under 900px. */
.cvc-vshop-hero2 .cvc-vshop-match-hero-visual {
    display: flex !important;
    grid-column: auto;
    grid-row: auto;
    min-height: 0;
}

.cvc-vshop-hero2 .cvc-vshop-match-hero-car-wrap {
    max-width: 340px;
}

.cvc-vshop-hero2 .cvc-vshop-match-hero-image {
    max-height: 220px;
    width: auto;
    margin: 0 auto;
}

.cvc-vshop-hero2 .cvc-vshop-match-hero-reflection {
    height: 26px;
    opacity: 0.22;
}

.cvc-vshop-hero2-grid {
    align-items: center;
}

.cvc-vshop-hero2-copy {
    align-self: center;
}

/* Hero badge: restore explicit size lost in the redesign (circle was invisible) */
.cvc-vshop-hero2-badge {
    position: relative;
    width: 86px;
    height: 86px;
    flex: none;
    align-self: center;
    grid-row: auto;
}

/* ── Collapsible Your Vehicle card ── */
.cvc-vshop-vbar2 {
    display: block;
    padding: 0;
}

.cvc-vshop-vbar-head {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px 18px;
    padding: 14px 18px;
    cursor: pointer;
}

.cvc-vshop-vbar-head .cvc-vshop-vbar-actions {
    margin-left: auto;
    flex-direction: row;
    align-items: center;
}

.cvc-vshop-vbar-chevron {
    width: 10px;
    height: 10px;
    border-right: 2px solid #9ca3af;
    border-bottom: 2px solid #9ca3af;
    transform: rotate(45deg);
    transition: transform 180ms ease;
    flex: none;
    margin-left: 4px;
}

.cvc-vshop-vbar2.is-vbar-collapsed .cvc-vshop-vbar-chevron {
    transform: rotate(-45deg);
}

.cvc-vshop-vbar-body {
    border-top: 1px solid #f0f0ee;
    padding: 12px 18px 14px;
}

.cvc-vshop-vbar2.is-vbar-collapsed .cvc-vshop-vbar-body {
    display: none;
}

.cvc-vshop-vbar2 .cvc-vshop-vbar-trust {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px 18px;
    justify-content: stretch;
}

/* ── Recommendation cards: equal heights, aligned buy blocks ── */
.cvc-vshop-rec-card2 {
    display: flex;
    flex-direction: column;
}

.cvc-vshop-rec-card2 .cvc-vshop-rec-main {
    flex: 1;
}

.cvc-vshop-rec-card2 .cvc-vshop-rec-buy {
    margin-top: auto;
    padding-top: 12px;
}

/* uniform image box (legacy rule had 48px top padding for overlay badge) */
.cvc-vshop-rec-card2 .cvc-vshop-rec-image {
    padding: 10px;
    background: #fafbfc;
    border-radius: 10px;
    height: 210px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.cvc-vshop-rec-card2 .cvc-vshop-rec-image a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.cvc-vshop-rec-card2 .cvc-vshop-rec-img {
    max-height: 100%;
    max-width: 100%;
    width: auto;
    object-fit: contain;
}

/* badge clearance now that image no longer carries top padding */
.cvc-vshop-rec-card2 .cvc-vshop-rec-main {
    margin-top: 26px;
}

/* ── Add-on cards: clamp titles, pin price+CTA to bottom ── */
.cvc-vshop-upsell2 .cvc-vshop-accessory-image {
    height: 116px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.cvc-vshop-upsell2 .cvc-vshop-accessory-img {
    max-height: 96px;
    width: auto;
    object-fit: contain;
}

.cvc-vshop-upsell2 .cvc-vshop-accessory-title {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 3.6em;
    line-height: 1.2;
}

.cvc-vshop-upsell2 .cvc-vshop-accessory-price {
    margin-top: auto;
}

@media (max-width: 860px) {
    .cvc-vshop-hero2 .cvc-vshop-match-hero-image {
        max-height: 170px;
    }

    .cvc-vshop-vbar-head {
        padding: 12px 14px;
        gap: 10px;
    }

    .cvc-vshop-vbar-head .cvc-vshop-vbar-actions {
        flex-direction: row;
        gap: 10px;
    }

    .cvc-vshop-vbar-body {
        padding: 10px 14px 12px;
    }

    .cvc-vshop-vbar2 .cvc-vshop-vbar-trust {
        grid-template-columns: 1fr 1fr;
    }

    .cvc-vshop-rec-card2 .cvc-vshop-rec-image {
        height: 150px;
    }

    .cvc-vshop-rec-card2 .cvc-vshop-rec-main {
        margin-top: 22px;
    }
}

/* ═══════════════════════════════════════════════════════════════
   v2.8.2 — trust dedupe (slim vehicle bar), sample-car disclaimer,
   mobile overlap/size polish
   ═══════════════════════════════════════════════════════════════ */

/* Slim vehicle identity bar (no toggle, no trust body) */
.cvc-vshop-vbar3 .cvc-vshop-vbar-head {
    cursor: default;
}

/* Sample-car honesty disclaimer under every hero car */
.cvc-vshop-hero2 .cvc-vshop-match-hero-visual {
    flex-direction: column;
}

.cvc-vshop-hero-disclaimer {
    margin: 6px 0 0;
    font-size: 10.5px;
    line-height: 1.35;
    color: #6b7280;
    text-align: center;
    max-width: 300px;
    position: relative;
    z-index: 1;
}

/* ── Mobile polish ── */
@media (max-width: 860px) {
    /* badge no longer overlaps the title: flows inline above content */
    .cvc-vshop-rec-card2 .cvc-vshop-rec-badge {
        position: static;
        display: inline-flex;
        align-self: flex-start;
        margin: 12px 0 0 12px;
    }

    .cvc-vshop-rec-card2 .cvc-vshop-rec-main {
        margin-top: 10px;
    }

    .cvc-vshop-rec-card2 .cvc-vshop-rec-title {
        font-size: 14px;
        line-height: 1.3;
    }

    /* vehicle bar stacks: identity row, then actions row */
    .cvc-vshop-vbar3 .cvc-vshop-vbar-head {
        padding: 12px 14px;
        gap: 10px;
    }

    .cvc-vshop-vbar3 .cvc-vshop-vbar-id {
        flex-basis: 100%;
    }

    .cvc-vshop-vbar3 .cvc-vshop-vbar-actions {
        margin-left: 0;
        flex-basis: 100%;
        justify-content: flex-start;
        gap: 14px;
    }

    .cvc-vshop-vbar3 .cvc-vshop-vbar-avatar {
        width: 42px;
        height: 42px;
    }

    .cvc-vshop-vbar3 .cvc-vshop-vbar-avatar svg {
        width: 22px;
        height: 22px;
    }

    .cvc-vshop-vbar3 .cvc-vshop-vbar-title {
        font-size: 15px;
        white-space: normal;
        line-height: 1.3;
    }

    /* hero: tighter paddings, smaller title, centered car + disclaimer */
    .cvc-vshop-hero2 .cvc-vshop-match-card-body {
        padding: 14px 12px;
    }

    .cvc-vshop-hero2-title {
        font-size: 19px;
    }

    .cvc-vshop-hero2-lead {
        font-size: 12.5px;
    }

    .cvc-vshop-hero2-steps {
        gap: 8px;
    }

    .cvc-vshop-hero-disclaimer {
        font-size: 10px;
        max-width: 260px;
        margin-left: auto;
        margin-right: auto;
    }

    /* confidence banner + help bar tighter */
    .cvc-vshop-confidence-banner {
        padding: 12px 14px;
    }

    .cvc-vshop-confidence-text {
        font-size: 12px;
        line-height: 1.5;
    }

    .cvc-vshop-confidence-help {
        font-size: 12px;
    }

    .cvc-vshop-help-bar-text {
        font-size: 12.5px;
    }

    /* recommendations header sizes */
    .cvc-vshop-recommendations-title {
        font-size: 18px;
        line-height: 1.3;
    }

    .cvc-vshop-recommendations-desc {
        font-size: 12.5px;
        line-height: 1.45;
    }
}

@media (max-width: 480px) {
    .cvc-vshop-vbar3 .cvc-vshop-vbar-actions .cvc-vshop-btn-outline {
        padding: 8px 14px;
        font-size: 12px;
    }

    .cvc-vshop-hero2 .cvc-vshop-match-hero-image {
        max-height: 150px;
    }
}

/* ═══════════════════════════════════════════════════════════════
   v2.8.3 — section-by-section polish (user spec)
   ═══════════════════════════════════════════════════════════════ */

/* ── 1. Vehicle summary bar: thumb + inline trust points + right actions ── */
.cvc-vshop-vbar4 .cvc-vshop-vbar-head {
    cursor: default;
    align-items: center;
    gap: 14px 24px;
}

.cvc-vshop-vbar-thumb {
    width: 84px;
    height: 54px;
    flex: none;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.cvc-vshop-vbar-thumb img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.12));
}

.cvc-vshop-vbar4 .cvc-vshop-vbar-title {
    font-size: 17px;
}

.cvc-vshop-vbar-points {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 10px 26px;
    margin: 0;
    padding: 0;
    flex: 1;
    justify-content: center;
    flex-wrap: wrap;
}

.cvc-vshop-vbar-point {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
}

.cvc-vshop-vbar-point-copy {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
}

.cvc-vshop-vbar-point-copy strong {
    font-size: 12px;
    color: #1f2937;
    font-weight: 700;
}

.cvc-vshop-vbar-point-copy span {
    font-size: 11px;
    color: #6b7280;
}

.cvc-vshop-vbar4 .cvc-vshop-vbar-actions {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 12px;
}

/* ── 2. Hero: emotional copy, larger car, single-line pill checklist ── */
.cvc-vshop-hero3 .cvc-vshop-hero2-title {
    color: #16a34a;
    text-transform: none;
    letter-spacing: 0;
    font-size: clamp(22px, 2.8vw, 30px);
}

.cvc-vshop-hero3-emoji {
    font-size: 0.85em;
    margin-right: 2px;
}

.cvc-vshop-hero3 .cvc-vshop-hero2-lead {
    margin-top: 8px;
    font-size: 14px;
    color: #374151;
}

.cvc-vshop-hero3-personal {
    margin: 4px 0 0;
    font-size: 14px;
    color: #374151;
    line-height: 1.5;
}

.cvc-vshop-hero3-personal strong {
    color: #111827;
}

.cvc-vshop-hero3-strip {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 22px;
    margin-top: 16px;
    padding: 10px 16px;
    background: #ffffff;
    border: 1px solid #d8efe0;
    border-radius: 12px;
}

.cvc-vshop-hero3-strip .cvc-vshop-hero2-step + .cvc-vshop-hero2-step::before {
    display: none;
}

.cvc-vshop-hero3-step-label {
    font-size: 12.5px;
    font-weight: 600;
    color: #1f2937;
    white-space: nowrap;
}

.cvc-vshop-hero3 .cvc-vshop-match-hero-image {
    max-height: 260px;
}

.cvc-vshop-hero3 .cvc-vshop-match-hero-car-wrap {
    max-width: 400px;
}

/* ── 3. Repair cards: benefit line + Best For list, bigger images ── */
.cvc-vshop-rec-benefit {
    font-weight: 700;
    color: #111827;
    font-size: 14px;
}

.cvc-vshop-rec-bestfor {
    display: block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #6b7280;
    margin: 10px 0 4px;
}

.cvc-vshop-rec-card2 .cvc-vshop-rec-main {
    grid-template-columns: minmax(150px, 45%) minmax(0, 1fr);
}

.cvc-vshop-rec-card2 .cvc-vshop-rec-image {
    height: 240px;
}

/* ── 4. Add-ons head: View All CTA ── */
.cvc-vshop-upsell-viewall {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    color: #c81a24 !important;
    text-decoration: none !important;
    white-space: nowrap;
    border: 1px solid #f3cfd2;
    border-radius: 999px;
    padding: 7px 14px;
    background: #fff;
}

.cvc-vshop-upsell-viewall:hover {
    background: #fdf1f1;
}

.cvc-vshop-upsell2 .cvc-vshop-addons-chevron {
    margin-left: 14px;
}

/* ── 5. Trust strip: lighter icons ── */
.cvc-vshop-trust-strip .cvc-vshop-match-trust-icon {
    background: #eefbf3;
    border-radius: 50%;
}

/* ── 6. Expert help banner: friendly copy + primary CTA ── */
.cvc-vshop-help-bar2 {
    background: #ffffff;
    border: 1px solid #ececea;
    padding: 14px 18px;
    box-shadow: 0 1px 4px rgba(16, 24, 40, 0.05);
}

.cvc-vshop-help-bar-bubble {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fdeef0;
    color: #c81a24;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: none;
}

.cvc-vshop-help-bar-bubble svg {
    width: 22px;
    height: 22px;
}

.cvc-vshop-help-bar-copy {
    display: flex;
    flex-direction: column;
    flex: 1;
    line-height: 1.35;
}

.cvc-vshop-help-bar-title {
    font-size: 14.5px;
    color: #111827;
}

.cvc-vshop-help-bar-sub {
    font-size: 12.5px;
    color: #6b7280;
}

.cvc-vshop-premium a.cvc-vshop-help-bar-btn.cvc-vshop-btn-primary {
    white-space: nowrap;
    text-decoration: none !important;
}

/* ── Mobile adjustments for polished sections ── */
@media (max-width: 860px) {
    .cvc-vshop-vbar4 .cvc-vshop-vbar-id {
        flex-basis: 100%;
    }

    .cvc-vshop-vbar-thumb {
        width: 64px;
        height: 42px;
    }

    .cvc-vshop-vbar-points {
        flex-basis: 100%;
        justify-content: flex-start;
        gap: 10px 18px;
    }

    .cvc-vshop-vbar4 .cvc-vshop-vbar-actions {
        margin-left: 0;
        flex-basis: 100%;
        justify-content: flex-start;
        gap: 14px;
    }

    .cvc-vshop-hero3-strip {
        padding: 8px 12px;
        gap: 6px 14px;
    }

    .cvc-vshop-hero3-step-label {
        font-size: 11.5px;
        white-space: normal;
    }

    .cvc-vshop-hero3 .cvc-vshop-match-hero-image {
        max-height: 180px;
    }

    .cvc-vshop-rec-card2 .cvc-vshop-rec-image {
        height: 170px;
    }

    .cvc-vshop-upsell-viewall {
        display: none; /* chevron handles discovery on mobile */
    }

    .cvc-vshop-help-bar2 {
        flex-wrap: wrap;
    }

    .cvc-vshop-premium a.cvc-vshop-help-bar-btn.cvc-vshop-btn-primary {
        flex-basis: 100%;
        text-align: center;
    }
}

/* ═══════════════════════════════════════════════════════════════
   v2.8.4 — price breathing room + real Add to Cart buttons on add-ons
   ═══════════════════════════════════════════════════════════════ */

/* 1. Breathing space left of ₹ price in repair cards */
.cvc-vshop-rec-card2 .cvc-vshop-rec-buy {
    padding-left: 16px;
    padding-right: 16px;
    box-sizing: border-box;
}

/* 2. Add-on cards: proper outline button instead of underlined text */
.cvc-vshop-premium button.cvc-vshop-accessory-atc {
    display: block !important;
    width: 100% !important;
    padding: 8px 10px !important;
    border: 1.5px solid #c81a24 !important;
    border-radius: 8px !important;
    background: #ffffff !important;
    color: #c81a24 !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    text-decoration: none !important;
    text-align: center;
    cursor: pointer;
    transition: background 160ms ease, color 160ms ease;
}

.cvc-vshop-premium button.cvc-vshop-accessory-atc::after {
    display: none !important; /* Glozin shine isolation */
}

.cvc-vshop-premium button.cvc-vshop-accessory-atc:hover,
.cvc-vshop-premium button.cvc-vshop-accessory-atc:focus {
    background: #c81a24 !important;
    color: #ffffff !important;
}

.cvc-vshop-accessory-actions {
    margin-top: auto;
}

.cvc-vshop-accessory-actions .cvc-vshop-product-form {
    width: 100%;
}

/* v2.8.6 — bottom breathing room in repair cards (CTA no longer flush) */
.cvc-vshop-rec-card2 .cvc-vshop-rec-buy {
    padding-bottom: 18px;
}

/* ═══════════════════════════════════════════════════════════════
   v2.8.7 — multi-vehicle: shade names on pills + section headers;
   shade-tinted, unmissable collapsible bars
   ═══════════════════════════════════════════════════════════════ */

/* Shade chip inside garage pills */
.cvc-vshop-pill-shade {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11.5px;
    font-weight: 500;
    color: #6b7280;
    padding-left: 8px;
    margin-left: 4px;
    border-left: 1px solid rgba(0, 0, 0, 0.12);
    white-space: nowrap;
}

.cvc-vshop-pill-shade-dot,
.cvc-vshop-section-shade-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #9ca3af;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.18);
    flex: none;
}

/* Section header: tinted by the vehicle's shade + thick shade border */
.cvc-vshop-premium .cvc-vshop-section-header.cvc-vshop-section-header2 {
    border-left: 6px solid var(--cvc-section-shade, #e63946);
    background: #fafafa; /* fallback */
    background: color-mix(in srgb, var(--cvc-section-shade, #e63946) 8%, #ffffff);
    border-radius: 10px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.cvc-vshop-premium .cvc-vshop-section-header.cvc-vshop-section-header2:hover {
    background: color-mix(in srgb, var(--cvc-section-shade, #e63946) 14%, #ffffff);
}

.cvc-vshop-section-header2 .cvc-vshop-section-header-title {
    font-size: 16px;
}

/* Shade name beside the title */
.cvc-vshop-section-shade {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    padding: 4px 12px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 999px;
    white-space: nowrap;
}

/* Big, unmissable chevron in a circle */
.cvc-vshop-section-header2 .cvc-vshop-section-chevron {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #ffffff;
    border: 1.5px solid rgba(0, 0, 0, 0.16);
    box-shadow: 0 1px 3px rgba(16, 24, 40, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: none;
    transform: none;
    position: static;
}

.cvc-vshop-section-header2 .cvc-vshop-section-chevron::before {
    content: '';
    width: 9px;
    height: 9px;
    border-right: 2.5px solid #374151;
    border-bottom: 2.5px solid #374151;
    transform: rotate(45deg);
    margin-top: -3px;
    transition: transform 180ms ease, margin 180ms ease;
}

.is-section-collapsed .cvc-vshop-section-header2 .cvc-vshop-section-chevron::before {
    transform: rotate(-45deg);
    margin-top: 3px;
}

@media (max-width: 860px) {
    .cvc-vshop-pill-shade {
        font-size: 10.5px;
        max-width: 110px;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .cvc-vshop-section-header2 {
        flex-wrap: wrap;
    }

    .cvc-vshop-section-shade {
        font-size: 11.5px;
        padding: 3px 10px;
    }

    .cvc-vshop-section-header2 .cvc-vshop-section-chevron {
        width: 28px;
        height: 28px;
    }
}

/* ═══════════════════════════════════════════════════════════════
   v2.8.8 — single upgraded help card (confidence banner removed)
   ═══════════════════════════════════════════════════════════════ */

.cvc-vshop-help-card {
    border: 1px solid #ececea;
    border-top: 4px solid #c81a24;
    border-radius: 14px;
    padding: 18px 22px;
    gap: 16px;
    box-shadow: 0 2px 10px rgba(16, 24, 40, 0.06);
}

.cvc-vshop-help-card .cvc-vshop-help-bar-bubble {
    width: 52px;
    height: 52px;
}

.cvc-vshop-help-card .cvc-vshop-help-bar-bubble svg {
    width: 26px;
    height: 26px;
}

.cvc-vshop-help-card .cvc-vshop-help-bar-title {
    font-size: 16px;
}

.cvc-vshop-help-card .cvc-vshop-help-bar-sub {
    font-size: 13px;
    margin-top: 2px;
    max-width: 640px;
}

.cvc-vshop-premium a.cvc-vshop-help-bar-btn.cvc-vshop-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 10px;
}

.cvc-vshop-help-bar-btn-icon {
    display: inline-flex;
    width: 17px;
    height: 17px;
}

.cvc-vshop-help-bar-btn-icon svg {
    width: 100%;
    height: 100%;
}

@media (max-width: 860px) {
    .cvc-vshop-help-card {
        padding: 14px 16px;
        text-align: left;
    }

    .cvc-vshop-help-card .cvc-vshop-help-bar-bubble {
        width: 42px;
        height: 42px;
    }

    .cvc-vshop-help-card .cvc-vshop-help-bar-title {
        font-size: 14.5px;
    }

    .cvc-vshop-help-card .cvc-vshop-help-bar-sub {
        font-size: 12px;
    }
}

/* ═══════════════════════════════════════════════════════════════
   v2.8.9 — chevron fix: re-anchor the arrow inside its circle
   (legacy ::before is absolutely positioned; v2.8.7 set the span
   static, which let the arrow escape to the page corner)
   ═══════════════════════════════════════════════════════════════ */

.cvc-vshop-section-header2 .cvc-vshop-section-chevron {
    position: relative;
}

.cvc-vshop-section-header2 .cvc-vshop-section-chevron::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 9px;
    height: 9px;
    margin: 0;
    border-right: 2.5px solid #374151;
    border-bottom: 2.5px solid #374151;
    /* collapsed (default): pointing down */
    transform: translate(-50%, -70%) rotate(45deg);
    transition: transform 180ms ease;
}

/* expanded: pointing up — outweighs the legacy :not() rule */
.cvc-vshop-vehicle-section:not(.is-section-collapsed) .cvc-vshop-section-header2 .cvc-vshop-section-chevron::before {
    top: 50%;
    transform: translate(-50%, -30%) rotate(-135deg);
}

/* v2.8.10 — collapsed-state chevron: neutralise the stale v2.8.7 rule
   (3-class specificity) that skipped the centering translate */
.cvc-vshop-vehicle-section.is-section-collapsed .cvc-vshop-section-header2 .cvc-vshop-section-chevron::before {
    top: 50%;
    left: 50%;
    margin: 0;
    transform: translate(-50%, -70%) rotate(45deg); /* centred, pointing down */
}
