.vc-configurator {
    --vc-accent: #7b61ff;
    --vc-border: rgba(255, 255, 255, .14);
    margin: 0;
    padding: 20px;
    border: 1px solid var(--vc-border);
    border-radius: 16px;
    background: rgba(255, 255, 255, .035);
}

.vc-native-sku-hidden { display: none !important; }
.s-product-page.vc-configured-product .b-product-quantity { display: none !important; }
.wa-product.vc-quantity-locked .wa-quantity-cart-section .wa-button-wrapper { display: none !important; }
.wa-product.vc-quantity-locked .wa-quantity-cart-section .js-product-quantity {
    cursor: default;
    pointer-events: none;
}
.vc-configurator-host { order: initial; }
.vc-product-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
}
.vc-relocated-detail { display: block !important; }
.vc-product-details .s-features-wrapper { width: 100%; }
.vc-configurator__title { margin: 0 0 4px; font-size: 1.25rem; }
.vc-configurator__subtitle { margin: 0; color: #a9a9b2; font-size: .9rem; }
.vc-group { margin: 20px 0 0; padding: 0; border: 0; }
.vc-group__title { margin-bottom: 10px; font-size: 1rem; font-weight: 700; }
.vc-group--carousel { position: relative; }
.vc-carousel-controls {
    position: absolute;
    z-index: 3;
    top: 42px;
    right: -32px;
    bottom: 18px;
    left: -34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    pointer-events: none;
}
.vc-carousel-button {
    display: grid;
    width: 32px;
    height: 32px;
    padding: 0;
    place-items: center;
    border: 1px solid var(--vc-accent);
    border-radius: 50%;
    background: var(--vc-accent);
    color: #fff;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    pointer-events: auto;
    transition: background .18s, border-color .18s, opacity .18s, transform .18s;
}
.vc-carousel-button:hover:not(:disabled) {
    border-color: #654be8;
    background: #654be8;
    transform: translateY(-1px);
}
.vc-carousel-button:focus-visible { outline: 2px solid #fff; outline-offset: 2px; }
.vc-carousel-button:disabled { opacity: .32; cursor: default; }
.vc-options { display: grid; grid-template-columns: repeat(auto-fit, minmax(132px, 1fr)); gap: 10px; }
.vc-options--carousel {
    display: flex;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: rgba(123, 97, 255, .7) rgba(255, 255, 255, .07);
    padding: 2px 2px 10px;
}
.vc-options--carousel .vc-option {
    flex: 0 0 clamp(132px, 31%, 170px);
    scroll-snap-align: start;
}
.vc-option { position: relative; margin: 0; cursor: pointer; }
.vc-option__input { position: absolute; opacity: 0; pointer-events: none; }
.vc-option__card {
    position: relative;
    display: flex;
    min-height: 100%;
    flex-direction: column;
    overflow: visible;
    border: 1px solid var(--vc-border);
    border-radius: 13px;
    background: rgba(255, 255, 255, .035);
    transition: border-color .18s, box-shadow .18s;
}
.vc-option:hover .vc-option__card { border-color: rgba(123, 97, 255, .6); }
.vc-option__input:checked + .vc-option__card { border-color: var(--vc-accent); box-shadow: 0 0 0 2px rgba(123, 97, 255, .2); }
.vc-option__input:focus-visible + .vc-option__card { outline: 2px solid #fff; outline-offset: 2px; }
.vc-option__image { display: block; aspect-ratio: 1.35 / 1; overflow: hidden; border-radius: 12px 12px 0 0; background: #fff; }
.vc-option__image img { width: 100%; height: 100%; object-fit: contain; }
.vc-option__image--empty { background: linear-gradient(145deg, #4a3d31, #24201d); }
.vc-option__content { display: flex; min-height: 58px; flex-direction: column; justify-content: space-between; gap: 5px; padding: 10px; }
.vc-option__name { font-weight: 650; line-height: 1.2; }
.vc-option__price { color: #b9aaff; font-size: .85rem; font-weight: 700; }
.vc-option__info {
    position: absolute;
    top: 7px;
    right: 7px;
    display: grid;
    width: 25px;
    height: 25px;
    padding: 0;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: rgba(20, 20, 22, .78);
    color: #fff;
    font-weight: 800;
}
.vc-option__popover {
    position: fixed;
    z-index: 10000;
    top: auto;
    right: auto;
    bottom: 24px;
    left: 50%;
    display: none;
    width: min(380px, calc(100vw - 32px));
    max-height: min(46vh, 340px);
    overflow-y: auto;
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 10px;
    background: #17171a;
    color: #eee;
    font-size: .9rem;
    line-height: 1.4;
    box-shadow: 0 16px 50px rgba(0, 0, 0, .58);
    transform: translateX(-50%);
}
.vc-option__card.is-info-open { z-index: 100; }
.vc-option__card.is-info-open .vc-option__popover { display: block; z-index: 10000; }
.s-product-page.vc-info-active .s-product-cart__center {
    position: relative;
    z-index: 10000;
}
.vc-option.is-unavailable { cursor: not-allowed; opacity: .48; }
.vc-group--included .vc-options { grid-template-columns: minmax(0, 1fr); }
.vc-group--included .vc-group__title { margin-bottom: 10px; }
.vc-option--included { cursor: default; }
.vc-option--included .vc-option__card {
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr);
    align-items: center;
    border-color: rgba(80, 200, 125, .38);
    background: rgba(80, 200, 125, .07);
}
.vc-option--included .vc-option__image {
    aspect-ratio: 1;
    border-radius: 12px 0 0 12px;
}
.vc-option--included .vc-option__content { min-height: auto; padding-right: 42px; }
.vc-option--included .vc-option__name { overflow-wrap: anywhere; }
.vc-option--included:hover .vc-option__card { transform: none; border-color: rgba(80, 200, 125, .55); }
.vc-gift-standalone {
    margin: 18px 0 0;
    padding: 16px;
    border: 1px solid rgba(80, 200, 125, .38);
    border-radius: 14px;
    background: rgba(80, 200, 125, .07);
}
.vc-gift-standalone__eyebrow {
    margin: 0 0 10px;
    color: #62d790;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}
.vc-gift-standalone .vc-option__card { background: transparent; }
.vc-summary { display: flex; align-items: center; justify-content: space-between; margin-top: 18px; padding-top: 15px; border-top: 1px solid var(--vc-border); }
.vc-summary strong { color: #fff; font-size: 1.2rem; }

@media (max-width: 575px) {
    .vc-configurator { padding: 15px; }
    .vc-group--carousel .vc-group__title { min-height: 36px; padding-right: 82px; }
    .vc-carousel-controls {
        top: -7px;
        right: 0;
        bottom: auto;
        left: auto;
        align-items: initial;
        justify-content: initial;
        gap: 7px;
        pointer-events: auto;
    }
    .vc-options {
        display: flex;
        overflow-x: auto;
        overscroll-behavior-x: contain;
        scroll-snap-type: x mandatory;
        padding: 2px 2px 8px;
    }
    .vc-option { min-width: 145px; scroll-snap-align: start; }
    .vc-group--included .vc-options { display: grid; overflow: visible; padding: 0; }
    .vc-group--included .vc-option { min-width: 0; }
    .vc-option:hover .vc-option__card { transform: none; }
    .vc-carousel-button { width: 34px; height: 34px; font-size: 1.65rem; }
    .vc-option__card.is-info-open { z-index: 30; }
}

@media (max-width: 991px) {
    .vc-configurator-host { margin-top: 0; }
    .vc-relocated-detail { margin-top: 0; }
    .vc-option__popover {
        /* Keep contextual help above Seller theme's fixed mobile navigation. */
        bottom: calc(104px + env(safe-area-inset-bottom));
        width: min(420px, calc(100vw - 24px));
        max-height: 42vh;
        border-color: rgba(255, 255, 255, .22);
    }
}

.vc-installation-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 48px;
    margin-top: 14px;
    border: 1px solid var(--primary-color, #7b61ff);
    border-radius: 9px;
    color: var(--primary-color, #7b61ff) !important;
    font-weight: 700;
    text-align: center;
    text-decoration: none !important;
    transition: background-color .18s ease, color .18s ease;
}
.vc-installation-link:hover {
    background: var(--primary-color, #7b61ff);
    color: #fff !important;
}
.vc-installation {
    width: min(1240px, calc(100% - 32px));
    margin: 56px auto;
    padding: 40px;
    border: 1px solid rgba(123, 97, 255, .22);
    border-radius: 18px;
    background: linear-gradient(145deg, rgba(123, 97, 255, .08), rgba(123, 97, 255, .025));
    box-sizing: border-box;
}
.vc-installation--home { margin-top: 72px; margin-bottom: 72px; }
.vc-installation__inner {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(380px, 1.1fr);
    gap: 48px;
    align-items: center;
}
.vc-installation__copy { max-width: 520px; }
.vc-installation__kicker {
    margin: 0 0 10px;
    color: var(--primary-color, #7b61ff);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.vc-installation h2 { margin: 0 0 14px; font-size: clamp(1.65rem, 3vw, 2.35rem); line-height: 1.15; }
.vc-installation__copy > p:not(.vc-installation__kicker) { margin: 0; opacity: .78; line-height: 1.65; }
.vc-installation__benefits { display: grid; gap: 9px; margin: 24px 0 0; padding: 0; list-style: none; }
.vc-installation__benefits li::before { content: '\2713'; margin-right: 9px; color: var(--primary-color, #7b61ff); font-weight: 900; }
.vc-installation__form {
    color: #212529;
    padding: 26px;
    border: 1px solid rgba(127, 127, 127, .2);
    border-radius: 14px;
    background: var(--body-bg, #fff);
    box-shadow: 0 18px 48px rgba(0, 0, 0, .08);
}
.vc-installation__form > h3 { margin: 0 0 5px; font-size: 1.25rem; }
.vc-installation__form > h3,
.vc-installation__form > p,
.vc-installation__form .crm-form-field,
.vc-installation__form .crm-form-field .name,
.vc-installation__form .crm-form-field .name-inner,
.vc-installation__form .crm-form-field label,
.vc-installation__form .crm-form-field .value { color: #212529 !important; }
.vc-installation__form > p { margin: 0 0 18px; opacity: 1; font-size: .88rem; color: #495057 !important; }
.vc-installation__form .crm-form-block { width: 100% !important; max-width: none !important; }
/* Webasyst CRM's invisible honeypot must not contribute to page width. */
.crm-form-block > div[style*="visibility:hidden"][style*="max-height:0"] { overflow: hidden; }
.vc-installation__form .crm-form-field { margin-bottom: 12px !important; }
.vc-installation__form input,
.vc-installation__form textarea,
.vc-installation__form select {
    width: 100% !important;
    box-sizing: border-box;
    border-color: #adb5bd !important;
    background: #fff !important;
    color: #212529 !important;
    opacity: 1 !important;
}
.vc-installation__form input::placeholder,
.vc-installation__form textarea::placeholder {
    color: #5f6368 !important;
    opacity: 1 !important;
}
.vc-installation__form .crm-form-submit-button {
    width: 100%;
    min-height: 48px;
    border: 0;
    border-radius: 9px;
    background: var(--primary-color, #7b61ff) !important;
    color: #fff !important;
    font-weight: 800;
}
@media (max-width: 767px) {
    .vc-installation { width: min(100% - 20px, 1240px); margin: 36px auto; padding: 22px 16px; border-radius: 14px; }
    .vc-installation__inner { grid-template-columns: minmax(0, 1fr); gap: 28px; }
    .vc-installation__form { padding: 18px 14px; }
}
