/* FILE CUSTOM */
.vin-candidates{display:grid;gap:8px;margin:12px 0}.vin-candidate{margin:0;text-align:left;white-space:normal}.vin-candidate:focus,.vin-candidate:hover{border-color:#e11937;background:#fff5f6;color:#222}

/* =========================================================
   FILE CUSTOM - A SPECIAL PARTS
   ========================================================= */


/* =========================================================
   VIN - CODICE GIÀ PRESENTE
   ========================================================= */

.vin-candidates {
    display: grid;
    gap: 8px;
    margin: 12px 0;
}

.vin-candidate {
    margin: 0;
    text-align: left;
    white-space: normal;
}

.vin-candidate:focus,
.vin-candidate:hover {
    border-color: #e11937;
    background: #fff5f6;
    color: #222;
}


/* =========================================================
   FITMENT / COMPATIBILITÀ MOTO
   V2
   ========================================================= */

.moto-compat {
    margin: 20px 0 12px;
    padding: 0;

    background: #f2f2f2;

    border: 0;
    border-radius: 10px;

    overflow: hidden;

    /* Molto più flat e coerente con il sito */
    box-shadow:
        0 1px 2px rgba(0, 0, 0, 0.04);

    font-family: inherit;
    color: #202020;
}


/* =========================================================
   BLOCCO PRINCIPALE
   ========================================================= */

.moto-compat .moto-compat-current {
    display: grid;

    grid-template-columns:
        72px
        minmax(0, 1fr)
        max-content;

    align-items: center;

    gap: 16px;

    padding: 16px;
}


/* =========================================================
   IMMAGINE MOTO
   ========================================================= */

.moto-compat .moto-compat-image {
    width: 72px;
    height: 72px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 6px;

    background: #ffffff;

    border-radius: 8px;

    overflow: hidden;
}

.moto-compat .moto-compat-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: contain;
}


/* =========================================================
   CONTENUTO
   ========================================================= */

.moto-compat .moto-compat-content {
    min-width: 0;
}


/* Nasconde la frase originale ma mantiene il modello */

.moto-compat .moto-compat-message {
    margin: 0;

    font-size: 0;
    line-height: 1.25;

    color: #202020;
}


/* =========================================================
   LA TUA MOTO
   ========================================================= */

.moto-compat .moto-compat-message::before {
    content: "LA TUA MOTO";

    display: block;

    margin-bottom: 4px;

    font-size: 12px;
    line-height: 1.2;

    font-weight: 700;

    letter-spacing: 0;

    color: #777777;
}

html[lang^="en"]
.moto-compat .moto-compat-message::before {
    content: "YOUR BIKE";
}


/* =========================================================
   MODELLO
   ========================================================= */

.moto-compat .moto-compat-message strong {
    display: block;

    margin: 0;

    font-size: 16px;
    line-height: 1.3;

    font-weight: 700;

    color: #202020;

    white-space: normal;
}


/* =========================================================
   CAMBIA MOTO
   ========================================================= */

.moto-compat .moto-compat-change {
    display: inline-flex;
    align-items: center;

    gap: 6px;

    margin: 8px 0 0;
    padding: 0;

    background: transparent;

    border: 0;
    border-radius: 0;

    color: #444444;

    font-family: inherit;
    font-size: 13px;
    line-height: 1.3;

    font-weight: 500;

    text-decoration: none;

    cursor: pointer;

    white-space: nowrap;

    transition:
        color 150ms ease;
}

.moto-compat .moto-compat-change::after {
    content: "→";

    font-size: 14px;
    line-height: 1;

    transition:
        transform 150ms ease;
}

.moto-compat .moto-compat-change:hover {
    color: #000000;
}

.moto-compat .moto-compat-change:hover::after {
    transform: translateX(2px);
}


/* =========================================================
   STATUS - COMPATIBILE
   DESKTOP
   ========================================================= */

.moto-compat:not(.moto-compat-warning)
.moto-compat-current::after {
    content: "✓ COMPATIBILE";

    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 32px;

    padding: 7px 12px;

    background: #202020;
    color: #ffffff;

    border-radius: 999px;

    font-family: inherit;

    font-size: 12px;
    line-height: 1;

    font-weight: 700;

    letter-spacing: 0;

    white-space: nowrap;
}


/* EN */

html[lang^="en"]
.moto-compat:not(.moto-compat-warning)
.moto-compat-current::after {
    content: "✓ COMPATIBLE";
}


/* =========================================================
   STATUS - NON COMPATIBILE
   DESKTOP
   ========================================================= */

.moto-compat.moto-compat-warning
.moto-compat-current::after {
    content: "× NON COMPATIBILE";

    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 32px;

    padding: 7px 12px;

    background: #fd0119;
    color: #fff;

    border-radius: 999px;

    font-family: inherit;

    font-size: 12px;
    line-height: 1;

    font-weight: 700;

    letter-spacing: 0;

    white-space: nowrap;
}


/* EN */

html[lang^="en"]
.moto-compat.moto-compat-warning
.moto-compat-current::after {
    content: "× NOT COMPATIBLE";
}


/* =========================================================
   ALTRI MODELLI
   ========================================================= */

.moto-compat .moto-compat-other {
    margin: 0;

    padding: 0 16px;

    border-top: 1px solid rgba(0, 0, 0, 0.08);
}


/* =========================================================
   ACCORDION
   ========================================================= */

.moto-compat .moto-compat-toggle {
    width: 100%;

    display: flex;
    align-items: center;

    gap: 12px;

    margin: 0;
    padding: 16px 0;

    background: transparent;

    border: 0;

    color: #202020;

    text-align: left;

    font-family: inherit;

    font-size: 14px;
    line-height: 1.3;

    font-weight: 600;

    cursor: pointer;
}

.moto-compat .moto-compat-toggle .icon-plus {
    margin-left: auto;

    flex: 0 0 auto;

    transition:
        transform 180ms ease;
}

.moto-compat
.moto-compat-toggle:not(.collapsed)
.icon-plus {
    transform: rotate(45deg);
}


/* =========================================================
   LISTA MODELLI
   ========================================================= */

.moto-compat .moto-compat-list {
    margin: 0;

    padding: 0 0 16px;

    list-style: none;
}

.moto-compat .moto-compat-list li {
    position: relative;

    margin: 0;

    padding:
        6px
        0
        6px
        16px;

    color: #444444;

    font-family: inherit;

    font-size: 13px;
    line-height: 1.4;

    font-weight: 500;
}

.moto-compat .moto-compat-list li::before {
    content: "";

    position: absolute;

    left: 0;
    top: 12px;

    width: 5px;
    height: 5px;

    background: #202020;

    border-radius: 50%;
}


/* =========================================================
   DISTANZA DAL PREZZO
   Evita il grosso vuoto visto soprattutto su mobile
   ========================================================= */

.moto-compat + .price {
    margin-top: 20px !important;
}


/* =========================================================
   FOCUS
   ========================================================= */

.moto-compat button:focus-visible {
    outline: 2px solid #202020;
    outline-offset: 3px;
}

/* =========================================================
   DESKTOP STRETTO
   Badge NON COMPATIBILE su 2 righe
   ========================================================= */

@media (min-width: 768px) and (max-width: 1199px) {

    .moto-compat.moto-compat-warning
    .moto-compat-current::after {

        width: 96px;
        min-width: 96px;

        padding: 7px 10px;

        box-sizing: border-box;

        white-space: normal;

        text-align: center;

        line-height: 1.15;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .moto-compat {
        margin:
            16px
            0
            8px;

        border-radius: 10px;
    }


    /* Due colonne:
       immagine | contenuto
    */

    .moto-compat .moto-compat-current {
        grid-template-columns:
            64px
            minmax(0, 1fr);

        align-items: start;

        gap: 12px;

        padding: 16px;
    }


    .moto-compat .moto-compat-image {
        width: 64px;
        height: 64px;

        padding: 5px;

        border-radius: 8px;
    }


    /* Il badge desktop viene eliminato */
    .moto-compat
    .moto-compat-current::after {
        display: none !important;
    }


    /*
       Su mobile gestiamo:
       1. moto
       2. status
       3. cambia moto
    */

    .moto-compat .moto-compat-content {
        display: grid;

        grid-template-columns: 1fr;

        min-width: 0;
    }


    .moto-compat .moto-compat-message {
        grid-row: 1;
    }


    .moto-compat .moto-compat-message::before {
        margin-bottom: 4px;

        font-size: 12px;
    }


    .moto-compat .moto-compat-message strong {
        font-size: 16px;
        line-height: 1.3;
    }


    /* =====================================================
       BADGE MOBILE - COMPATIBILE
       ===================================================== */

    .moto-compat:not(.moto-compat-warning)
    .moto-compat-content::after {
        content: "✓ COMPATIBILE";

        grid-row: 2;

        justify-self: start;

        display: inline-flex;

        align-items: center;
        justify-content: center;

        margin-top: 12px;

        min-height: 30px;

        padding:
            7px
            11px;

        background: #202020;
        color: #ffffff;

        border-radius: 999px;

        font-family: inherit;

        font-size: 11px;
        line-height: 1;

        font-weight: 700;

        white-space: nowrap;
    }


    html[lang^="en"]
    .moto-compat:not(.moto-compat-warning)
    .moto-compat-content::after {
        content: "✓ COMPATIBLE";
    }


    /* =====================================================
       BADGE MOBILE - NON COMPATIBILE
       ===================================================== */

    .moto-compat.moto-compat-warning
    .moto-compat-content::after {
        content: "× NON COMPATIBILE";

        grid-row: 2;

        justify-self: start;

        display: inline-flex;

        align-items: center;
        justify-content: center;

        margin-top: 12px;

        min-height: 30px;

        padding:
            7px
            11px;

        background: #fd0119;
        color: #fff !important;

        border-radius: 999px;

        font-family: inherit;

        font-size: 11px;
        line-height: 1;

        font-weight: 700;

        white-space: nowrap;
    }


    html[lang^="en"]
    .moto-compat.moto-compat-warning
    .moto-compat-content::after {
        content: "× NOT COMPATIBLE";
    }


    /*
       Cambia moto viene DOPO lo stato
    */

    .moto-compat .moto-compat-change {
        grid-row: 3;

        justify-self: start;

        margin-top: 12px;

        font-size: 13px;

        font-weight: 500;

        white-space: nowrap;
    }


    /* =====================================================
       ACCORDION MOBILE
       ===================================================== */

    .moto-compat .moto-compat-other {
        padding:
            0
            16px;
    }


    .moto-compat .moto-compat-toggle {
        padding:
            16px
            0;

        font-size: 13px;
        line-height: 1.3;

        font-weight: 600;
    }


    /* =====================================================
       PREZZO
       ===================================================== */

    .moto-compat + .price {
        margin-top: 16px !important;
    }

}


/* =========================================================
   ACCESSIBILITÀ
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .moto-compat *,
    .moto-compat *::before,
    .moto-compat *::after {
        transition: none !important;
    }

}

/* =========================================================
   PREFERITI PRODUCT PAGE - DEFINITIVO
   =========================================================
   - usa SEMPRE il testo originale del sito
   - AGGIUNGI / AGGIUNTO gestito dal sito
   - posizione ancorata a destra
   - il blocco cresce verso sinistra
   - quando manca spazio rimane solo il cuore
   - non modifica quantità, CTA o altri elementi
   ========================================================= */


/* La responsive dipende dalla larghezza reale
   della colonna prodotto */
.sticky-col .wrapper {
    container-type: inline-size;
}


/* =========================================================
   DESKTOP
   ========================================================= */

@media (min-width: 992px) {

    .sticky-col .wrapper .btns > .row {
        position: relative;
    }


    /* POSIZIONE PREFERITI */
    .sticky-col .wrapper
    .btns > .row > .col-xs-12 {
        position: absolute !important;

        right: 28px !important;
        top: -74px !important;

        width: auto !important;
        min-width: 0 !important;

        margin: 0 !important;
        padding: 0 !important;

        text-align: right !important;
    }


    /* PULSANTE:
       testo originale completamente visibile */
    .sticky-col .wrapper
    .btns .add_topref {
        display: inline-flex !important;

        align-items: center !important;
        justify-content: flex-end !important;

        width: max-content !important;
        min-width: 0 !important;
        max-width: none !important;

        margin: 0 !important;
        padding: 0 !important;

        white-space: nowrap !important;

        /* IMPORTANTISSIMO:
           ripristina il testo originale */
        font-size: inherit !important;
        color: inherit !important;
    }


    /* Ripristina eventuali pseudo-testi
       delle prove precedenti */
    .sticky-col .wrapper
    .btns .add_topref::before,

    .sticky-col .wrapper
    .btns .add_topref::after {
        content: none !important;
        display: none !important;
    }


    /* Icona gestita normalmente dal sito */
    .sticky-col .wrapper
    .btns .add_topref .fa {
        transform: none !important;
    }

}


/* =========================================================
   BUY-BOX STRETTA
   Quando manca spazio, nasconde SOLO il testo.
   Il cuore rimane nella stessa posizione a destra.
   ========================================================= */

@container (max-width: 580px) {

    .sticky-col .wrapper
    .btns .add_topref {
        font-size: 0 !important;

        width: auto !important;
        min-width: 0 !important;

        margin: 0 !important;
        padding: 0 !important;
    }


    .sticky-col .wrapper
    .btns .add_topref .fa {
        margin: 0 !important;
        padding: 0 !important;

        font-size: 18px !important;
        line-height: 1 !important;

        transform: none !important;
    }

}

/* Spazio tra cuore e testo SOLO quando il testo è visibile */
@media (min-width: 992px) {

    .sticky-col .wrapper
    .btns .add_topref .fa {
        margin-right: 7px !important;
    }

}

/* Quando resta solo il cuore, nessuno spazio */
@container (max-width: 580px) {

    .sticky-col .wrapper
    .btns .add_topref .fa {
        margin-right: 0 !important;
    }

}


/* =========================================================
   HOME - CARD PRODOTTI GRANDI
   Fascia inferiore compatta e responsive
   ========================================================= */

.gbanner.prod .wrapper {
    position: relative;
    overflow: hidden;
}

/* Immagine principale sempre grande e pulita */
.gbanner.prod .figure {
    overflow: hidden;
}

.gbanner.prod .figure picture,
.gbanner.prod .figure picture img {
    display: block;
    width: 100%;
}

.gbanner.prod .contents.overlay {
    padding: 0 !important;
}

/* Fascia inferiore */
.gbanner.prod .contents.overlay .padding {
    padding: 10px 12px !important;
}

/* Struttura:
   miniatura | testo/prezzo | bottone
*/
.gbanner.prod .flex-container {
    display: grid !important;
    grid-template-columns: 48px minmax(0, 1fr) auto;
    align-items: center;
    column-gap: 10px;
    width: 100%;
}

/* IMPORTANTE:
   permette alla colonna centrale di stringersi davvero */
.gbanner.prod .flex-item,
.gbanner.prod .flex-item-center {
    min-width: 0;
}

/* Miniatura */
.gbanner.prod .flex-item:first-child figure {
    width: 48px;
    height: 48px;
    margin: 0 !important;
    overflow: hidden;
    border-radius: 5px;
}

.gbanner.prod .flex-item:first-child figure img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain;
    display: block;
}

/* Titolo:
   UNA SOLA RIGA, mai aumento verticale della card */
.gbanner.prod .flex-item-center .title {
    display: block;
    width: 100%;
    margin: 0 0 5px !important;
    padding: 0 !important;

    font-size: 15px !important;
    line-height: 1.2 !important;

    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

/* Prezzo */
.gbanner.prod .flex-item-center p {
    margin: 0 !important;
    padding: 0 !important;

    font-size: 14px !important;
    line-height: 1.15 !important;

    white-space: nowrap;
}

/* IVA inclusa resta sulla stessa riga */
.gbanner.prod .flex-item-center p span {
    display: inline !important;
    white-space: nowrap;
}

/* CTA */
.gbanner.prod .flex-item:last-child {
    justify-self: end;
    flex-shrink: 0;
}

.gbanner.prod .flex-item:last-child .btn {
    min-width: 112px;
    height: 48px !important;
    padding: 0 16px !important;

    display: inline-flex !important;
    align-items: center;
    justify-content: center;

    white-space: nowrap;
}


/* =========================================================
   NOTEBOOK 13"-14"
   È QUI CHE SERVE DAVVERO STRINGERE
   ========================================================= */

@media (min-width: 1200px) and (max-width: 1599px) {

    .gbanner.prod .contents.overlay .padding {
        padding: 8px 10px !important;
    }

    .gbanner.prod .flex-container {
        grid-template-columns: 42px minmax(0, 1fr) auto;
        column-gap: 8px;
    }

    .gbanner.prod .flex-item:first-child figure {
        width: 42px;
        height: 42px;
    }

    .gbanner.prod .flex-item-center .title {
        font-size: 13px !important;
        margin-bottom: 3px !important;
    }

    .gbanner.prod .flex-item-center p {
        font-size: 12px !important;
    }

    .gbanner.prod .flex-item:last-child .btn {
        min-width: 94px;
        height: 44px !important;
        padding: 0 12px !important;
        font-size: 13px !important;
    }
}

/* HOME - VETRINE PRODOTTO: CTA più compatto */
.gbanner.prod .contents .flex-container {
    display: flex;
    align-items: center;
}

/* Titolo/prezzo prendono tutto lo spazio disponibile */
.gbanner.prod .contents .flex-item-center {
    flex: 1 1 auto;
    min-width: 0;
}

/* Colonna CTA: solo lo spazio realmente necessario */
.gbanner.prod .contents .flex-container > .flex-item:last-child {
    flex: 0 0 76px;
    width: 76px;
    min-width: 76px;
}

/* Pulsante VEDI */
.gbanner.prod .contents .flex-container > .flex-item:last-child .btn {
    width: 76px;
    min-width: 76px;
    padding-left: 8px;
    padding-right: 8px;
    white-space: nowrap;
}

/* =========================================================
   BUNDLE - SPAZIATURA CORRETTA E SIMMETRICA
   ========================================================= */


/* TITOLO "Contenuto del pacchetto" */
.sticky-col .title.ptitle {
    margin-top: 18px !important;
    margin-bottom: 8px !important;

    font-size: 16px !important;
    font-weight: 600 !important;
    line-height: 1.25 !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
}


/* =========================================================
   BOX BUNDLE
   Desktop:
   bordo sx -> card = 11px
   card -> card = 11px
   ultima card -> bordo dx = 11px
   ========================================================= */

.sticky-col .bundle-box {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: flex-start !important;

    width: fit-content !important;
    max-width: 100% !important;

    gap: 11px !important;

    /*
     * TOP    = 11px
     * RIGHT  = 0 perché lo spazio destro è il border-right
     * BOTTOM = 11px
     * LEFT   = 11px
     */
    padding: 11px 0 11px 11px !important;

    margin: 0 !important;

    background: #f3f3f3 !important;

    border: 0 !important;
    border-right: 11px solid #f3f3f3 !important;
    border-radius: 13px !important;

    overflow-x: auto !important;
    overflow-y: hidden !important;

    box-sizing: border-box !important;

    scroll-behavior: smooth;
    scroll-snap-type: x proximity;
    scroll-padding-left: 11px;

    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;

    scrollbar-width: thin;
    scrollbar-color: #bdbdbd transparent;
}


/* =========================================================
   SCROLLBAR
   ========================================================= */

.sticky-col .bundle-box::-webkit-scrollbar {
    height: 5px !important;
}

.sticky-col .bundle-box::-webkit-scrollbar-track {
    background: transparent !important;
}

.sticky-col .bundle-box::-webkit-scrollbar-thumb {
    background: #bdbdbd !important;
    border-radius: 20px !important;
}


/* =========================================================
   SINGOLA CARD
   ========================================================= */

.sticky-col .bundle-box-prod {
    position: relative !important;

    display: block !important;

    flex: 0 0 84px !important;

    width: 84px !important;
    min-width: 84px !important;
    max-width: 84px !important;

    height: 84px !important;
    min-height: 84px !important;

    padding: 0 !important;
    margin: 0 !important;

    background: #fff !important;

    border: 0 !important;
    border-radius: 10px !important;

    overflow: hidden !important;

    box-sizing: border-box !important;

    scroll-snap-align: start;

    font-size: 0 !important;
    line-height: 0 !important;

    transition: transform 0.18s ease !important;
}


/* =========================================================
   HOVER THUMBNAIL
   ========================================================= */

@media (hover: hover) and (pointer: fine) {

    .sticky-col .bundle-box-prod:hover {
        transform: translateY(-3px) !important;
    }

}


/* =========================================================
   THUMBNAIL
   ========================================================= */

.sticky-col .bundle-prod-thumb {
    display: flex !important;

    align-items: center !important;
    justify-content: center !important;

    width: 84px !important;
    height: 84px !important;

    padding: 7px !important;
    margin: 0 !important;

    background: #fff !important;

    border: 0 !important;
    border-radius: 10px !important;

    box-sizing: border-box !important;

    overflow: hidden !important;
    float: none !important;
}


.sticky-col .bundle-prod-thumb > a {
    display: flex !important;

    align-items: center !important;
    justify-content: center !important;

    width: 100% !important;
    height: 100% !important;

    margin: 0 !important;
    padding: 0 !important;
}


.sticky-col .bundle-prod-thumb img {
    display: block !important;

    width: 100% !important;
    height: 100% !important;

    max-width: 70px !important;
    max-height: 70px !important;

    object-fit: contain !important;
    object-position: center !important;

    margin: auto !important;
    padding: 0 !important;
}


/* =========================================================
   NASCONDI TESTI DEL BUNDLE
   ========================================================= */

.sticky-col .bundle-prod-tit,
.sticky-col .bundle-prod-more,
.sticky-col .bundle-box-prod > div:not(.bundle-prod-thumb) {
    display: none !important;
}


/* =========================================================
   RIDUZIONE SPAZIO TRA BUNDLE E QUANTITÀ
   ========================================================= */

.sticky-col .bundle-box + .is-disponibile:has(#u_peso:empty) {
    display: none !important;
}


/* elimina eventuali contenitori varianti vuoti */
.sticky-col .bundle-box ~ #comb_descvar:empty {
    display: none !important;
}


/* distanza reale bundle -> quantità */
.sticky-col .bundle-box ~ .is-disponibile .quantita {
    margin-top: 12px !important;
}


/* =========================================================
   TABLET
   TUTTI GLI SPAZI = 9px
   ========================================================= */

@media only screen and (max-width: 991px) {

    .sticky-col .bundle-box {
        gap: 9px !important;

        /*
         * TOP    9px
         * RIGHT  0
         * BOTTOM 9px
         * LEFT   9px
         */
        padding: 9px 0 9px 9px !important;

        border-right-width: 9px !important;

        border-radius: 12px !important;
        scroll-padding-left: 9px;
    }

    .sticky-col .bundle-box-prod {
        flex-basis: 78px !important;

        width: 78px !important;
        min-width: 78px !important;
        max-width: 78px !important;

        height: 78px !important;
        min-height: 78px !important;

        border-radius: 9px !important;
    }

    .sticky-col .bundle-prod-thumb {
        width: 78px !important;
        height: 78px !important;

        padding: 6px !important;

        border-radius: 9px !important;
    }

    .sticky-col .bundle-prod-thumb img {
        max-width: 66px !important;
        max-height: 66px !important;
    }
}


/* =========================================================
   MOBILE
   TUTTI GLI SPAZI = 8px
   ========================================================= */

@media only screen and (max-width: 767px) {

    .sticky-col .bundle-box {
        gap: 8px !important;

        /*
         * TOP    8px
         * RIGHT  0
         * BOTTOM 8px
         * LEFT   8px
         */
        padding: 8px 0 8px 8px !important;

        border-right-width: 8px !important;

        border-radius: 11px !important;
        scroll-padding-left: 8px;
    }

    .sticky-col .bundle-box-prod {
        flex-basis: 74px !important;

        width: 74px !important;
        min-width: 74px !important;
        max-width: 74px !important;

        height: 74px !important;
        min-height: 74px !important;
    }

    .sticky-col .bundle-prod-thumb {
        width: 74px !important;
        height: 74px !important;

        padding: 6px !important;
    }

    .sticky-col .bundle-prod-thumb img {
        max-width: 62px !important;
        max-height: 62px !important;
    }
}