/** Shopify CDN: Minification failed

Line 276:114 Unterminated string token

**/
/* ===== Griglia ordine all'ingrosso (WORKZONE) — portata da CAGI 09/2026, mobile a schede ===== */
.mrk-multivariants-wrapper h2 { margin-bottom: 1.2rem; }

.mrk-multivariants-wrapper {
    margin-bottom: 64px;
    background: #f7f7f7;
    border-radius: 12px;
    padding: 24px 20px;
    box-sizing: border-box;
}
@media (min-width: 990px) {
    .mrk-multivariants-wrapper {
        width: min(1725px, calc(100vw - 48px));
        max-width: min(1725px, calc(100vw - 48px));
        margin-left: auto;
        margin-right: auto;
        position: relative;
        left: 50%;
        transform: translateX(-50%);
    }
}

.mrk-multi-variants-table-wrapper {
    border: 1px solid #d9d9d9;
    border-radius: 8px;
    overflow: visible;
    background: #fff;
}

.mrk-multi-variant-table {
    overflow-x: auto;
    overflow-y: auto;
    max-height: 72vh;
    width: 100%;
}

/* header taglie */
.mrk-table-header,
.mrk-table-body-item {
    display: grid;
    grid-template-columns: 170px repeat(var(--cols, 12), minmax(96px, 1fr));
    width: 100%;
    min-width: min-content;
}
.mrk-table-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: #f3f3f3;
    box-shadow: 0 3px 8px rgba(0,0,0,.16);
}
.mrk-table-header-item {
    min-width: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 6px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: .02em;
    text-align: center;
    background: #f3f3f3;
    border-bottom: 1px solid #d9d9d9;
    border-right: 1px solid #e6e6e6;
}
.mrk-table-header-item:last-child { border-right: 0; }

/* prima colonna (colore) */
.mrk-table-header-item:first-child,
.mrk-table-column-item:first-child {
    position: sticky;
    left: 0;
    z-index: 10;
    justify-content: flex-start;
    text-align: left;
    background: #fafafa;
    border-right: 1px solid #d9d9d9;
}
.mrk-table-header-item:first-child { z-index: 30; padding-left: 12px; }

/* righe */
.mrk-table-body { position: relative; }
.mrk-table-body-item:nth-child(even) .mrk-table-column-item { background: #fcfcfc; }
.mrk-table-body-item:nth-child(even) .mrk-table-column-item:first-child { background: #f5f5f5; }
.mrk-table-body-item:last-child .mrk-table-column-item { border-bottom: 0; }

.mrk-table-column-item {
    min-width: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    padding: 10px 8px;
    font-size: 13px;
    line-height: 1.2;
    text-align: center;
    background: #fff;
    border-bottom: 1px solid #e6e6e6;
    border-right: 1px solid #eee;
}
.mrk-table-column-item:last-child { border-right: 0; }

/* cella colore: foto + nome + prezzo riga */
.mrk-table-column-item-header {
    flex-direction: row;
    gap: 10px;
    padding: 8px 10px;
}
.mrk-table-column-image {
    flex: 0 0 56px;
    width: 56px;
    height: 56px;
    border-radius: 6px;
    overflow: hidden;
    background: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mrk-table-column-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.mrk-table-column-image--empty { font-size: 18px; font-weight: 700; color: #999; }
.mrk-table-column-color-info { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.mrk-table-column-color-name { font-weight: 600; font-size: 13px; line-height: 1.15; }
.mrk-row-price { font-size: 12px; color: #666; }

/* quantità */
.mrk-table-column-quantity-picker { width: 100%; }
.mrk-table-column-quantity-picker .quantity {
    width: 100%;
    max-width: 88px;
    min-width: 0;
    min-height: 36px;
    height: 36px;
    margin: 0 auto;
}
.mrk-table-column-quantity-picker .quantity__input { font-size: 14px; padding: 0; }
.mrk-table-column-quantity-picker .quantity__button { width: 30px; }
.mrk-unavailable { font-size: 11px; color: #999; line-height: 1.2; padding: 6px 0; }

.mrk-table-column-price { display: none; }
.mrk-price-label { display: none; }
.mrk-table-column-item.mrk-has-qty { background: #fff3c2 !important; }
.mrk-cell-empty { background: repeating-linear-gradient(45deg,#fafafa,#fafafa 6px,#f0f0f0 6px,#f0f0f0 12px); }

/* totale + pulsante */
.mrk-total-price-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    padding: 14px 4px 24px;
    font-size: 15px;
}
.mrk-total-line { display: flex; align-items: baseline; gap: 8px; margin-left: auto; }
.mrk-total-price { font-size: 20px; font-weight: 700; }
.mrk-bulk-atc {
    background: #ffc000;
    color: #121212;
    border: 0;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: .02em;
    text-transform: uppercase;
    padding: 12px 22px;
    cursor: pointer;
    transition: opacity .15s ease, background .15s ease;
}
.mrk-bulk-atc:hover { background: #e6ad00; }
.mrk-bulk-atc:disabled { opacity: .45; cursor: not-allowed; }

/* ===== MOBILE: una scheda per colore, taglie come riquadri ===== */
@media (max-width: 749px) {
    .mrk-multivariants-wrapper { padding: 16px 12px; margin-bottom: 40px; }
    .mrk-multivariants-wrapper h2 { font-size: 1.5rem; }
    .mrk-multi-variants-table-wrapper { border: 0; background: transparent; }
    .mrk-multi-variant-table { max-height: none; overflow: visible; }
    .mrk-table-header { display: none; }

    .mrk-table-body-item {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        min-width: 0;
        padding: 12px 0 16px;
        border-bottom: 1px solid #ddd;
    }
    .mrk-table-body-item:last-child { border-bottom: 0; }
    .mrk-table-body-item .mrk-table-column-item,
    .mrk-table-body-item:nth-child(even) .mrk-table-column-item { border: 0; background: #fff; }

    /* riga colore */
    .mrk-table-column-item-header,
    .mrk-table-body-item:nth-child(even) .mrk-table-column-item:first-child {
        position: static;
        flex: 0 0 100%;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        gap: 12px;
        padding: 4px 2px 8px;
        background: transparent;
        text-align: left;
    }
    .mrk-table-column-image { flex-basis: 48px; width: 48px; height: 48px; }
    .mrk-table-column-color-name { font-size: 15px; }
    .mrk-row-price { font-size: 13px; }

    /* riquadri taglia */
    .mrk-table-column-item:not(.mrk-table-column-item-header) {
        flex: 0 0 calc(25% - 6px);
        min-width: 74px;
        overflow: visible;
        gap: 6px;
        padding: 7px 4px 8px;
        border: 1px solid #dedede;
        border-radius: 8px;
        background: #fff;
    }
    .mrk-table-column-item:not(.mrk-table-column-item-header)::before {
        content: attr(data-size);
        font-size: 13px;
        font-weight: 700;
        line-height: 1.15;
    }
    .mrk-cell-empty { display: none; }
    .mrk-table-column-item.mrk-has-qty { border-color: #ffc000 !important; }

    .mrk-table-column-quantity-picker .quantity { width: 100%; max-width: none; height: 36px; min-height: 36px; }
    .mrk-table-column-quantity-picker .quantity__button { width: 26px; }
    .mrk-table-column-quantity-picker .quantity__input { font-size: 15px; }

    /* barra totale + pulsante fissa in basso mentre si scorre */
    .mrk-total-price-wrapper {
        position: sticky;
        bottom: 0;
        z-index: 5;
        flex-direction: column-reverse;
        align-items: stretch;
        gap: 8px;
        margin: 8px -12px 0;
        padding: 12px 12px 12px;
        background: #f7f7f7;
        border-top: 1px solid #e3e3e3;
    }
    .mrk-bulk-atc { width: 100%; padding: 14px 16px; }
    .mrk-total-line { justify-content: flex-end; }
}

/* ===== top-customizer (invariato) ===== */
.mrk-image-preview-wrapper {
    position: relative;
    margin-bottom: 16px;
    border: 1px dashed lightgray;
    padding: 3px;
    border-radius: 5px;
    overflow: hidden;
}
.mrk-image-preview-bg {
    display: block;
    aspect-ratio: 1 / 1;
    border-radius: 4px;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    background-position : center center;
    overflow: hidden;
    background-image: url(/cdn/shop/files/mrk-Anteprima.png?v=1750483250)';
}
.mrk-first-image-wrapper {
    z-index: 9;
    height: var(--height1, 5%);
    width: var(--width1, 13%);
    display: flex;
    align-items: center;
    position: absolute;
    overflow: hidden;
    justify-content: center;
    text-align: center;
    white-space: nowrap;
    margin-top: var(--top1, 33.25%);
    margin-left: var(--left1, 25.25%);
    opacity: 1;
}
.mrk-first-image-wrapper img { width: 100%; height: 100%; object-fit: contain; object-position: center center; }
.mrk-second-image-wrapper {
    z-index: 9;
    height: var(--height2, 12%);
    width: var(--width2, 39%);
    display: flex;
    align-items: center;
    position: absolute;
    overflow: hidden;
    justify-content: center;
    text-align: center;
    white-space: nowrap;
    margin-top: var(--top2, 26.5%);
    margin-left: var(--left2, 55.25%);
    opacity: 1;
}
.mrk-second-image-wrapper img { width: 100%; height: 100%; object-fit: contain; object-position: center center; opacity: 1; }
.mrk-dropdowns { display: none; }
.mrk-print-type label {
    border: 1px solid #7d7d7d;
    background-color: transparent;
    display: block;
    line-height: 1.2;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 400;
    border-radius: 0px;
    cursor: pointer;
}
.mrk-print-types { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 15px; }
.mrk-print-type input { display: none; }
.mrk-print-type input:checked+label { background-color: #000000; color: #fff !important; border-color: #000000; }
.mrk-file-item { position: relative; margin-bottom: 10px; }
.mrk-file-item input { position: absolute; left: 0; height: 100%; width: 100%; top: 0; opacity: 0; z-index: 99999; }
.mrk-image-preview {
    position: relative;
    border: 1px dashed gray;
    text-align: center;
    overflow: hidden;
    margin: 0;
    cursor: pointer;
    width: 100%;
    padding: 20px 0;
    background-color: transparent;
    line-height: 1;
    display: block;
    border-radius: 4px;
}
.mrk-customizer-inputs-wrapper h4, .mrk-customizer-inputs-wrapper h5 { margin-bottom: 8px; }
.mrk-dropdowns-wrapper{ margin-bottom: 15px }
.mrk-customizer-inputs-wrapper label{ cursor: pointer }
.mrk-first-image-wrapper img, .mrk-second-image-wrapper img, .mrk-file-item-wrapper{ display: none }
.mrk-image-preview img { width: 60px; margin: -15px; }
.mrk-loader {
    font-size: 8px; width: 1.5em; height: 1.5em; border-radius: 50%; position: relative;
    text-indent: -9999em; animation: mulShdSpin 1.1s infinite ease; transform: translateZ(0);
    display: block !important; margin: 10px auto;
}
@keyframes mulShdSpin {
  0%,100% { box-shadow: 0em -2.6em 0em 0em #000, 1.8em -1.8em 0 0em rgba(0,0,0,.2), 2.5em 0em 0 0em rgba(0,0,0,.2), 1.75em 1.75em 0 0em rgba(0,0,0,.2), 0em 2.5em 0 0em rgba(0,0,0,.2), -1.8em 1.8em 0 0em rgba(0,0,0,.2), -2.6em 0em 0 0em rgba(0,0,0,.5), -1.8em -1.8em 0 0em rgba(0,0,0,.7); }
  12.5% { box-shadow: 0em -2.6em 0em 0em rgba(0,0,0,.7), 1.8em -1.8em 0 0em #000, 2.5em 0em 0 0em rgba(0,0,0,.2), 1.75em 1.75em 0 0em rgba(0,0,0,.2), 0em 2.5em 0 0em rgba(0,0,0,.2), -1.8em 1.8em 0 0em rgba(0,0,0,.2), -2.6em 0em 0 0em rgba(0,0,0,.2), -1.8em -1.8em 0 0em rgba(0,0,0,.5); }
  25% { box-shadow: 0em -2.6em 0em 0em rgba(0,0,0,.5), 1.8em -1.8em 0 0em rgba(0,0,0,.7), 2.5em 0em 0 0em #000, 1.75em 1.75em 0 0em rgba(0,0,0,.2), 0em 2.5em 0 0em rgba(0,0,0,.2), -1.8em 1.8em 0 0em rgba(0,0,0,.2), -2.6em 0em 0 0em rgba(0,0,0,.2), -1.8em -1.8em 0 0em rgba(0,0,0,.2); }
  37.5% { box-shadow: 0em -2.6em 0em 0em rgba(0,0,0,.2), 1.8em -1.8em 0 0em rgba(0,0,0,.5), 2.5em 0em 0 0em rgba(0,0,0,.7), 1.75em 1.75em 0 0em #000, 0em 2.5em 0 0em rgba(0,0,0,.2), -1.8em 1.8em 0 0em rgba(0,0,0,.2), -2.6em 0em 0 0em rgba(0,0,0,.2), -1.8em -1.8em 0 0em rgba(0,0,0,.2); }
  50% { box-shadow: 0em -2.6em 0em 0em rgba(0,0,0,.2), 1.8em -1.8em 0 0em rgba(0,0,0,.2), 2.5em 0em 0 0em rgba(0,0,0,.5), 1.75em 1.75em 0 0em rgba(0,0,0,.7), 0em 2.5em 0 0em #000, -1.8em 1.8em 0 0em rgba(0,0,0,.2), -2.6em 0em 0 0em rgba(0,0,0,.2), -1.8em -1.8em 0 0em rgba(0,0,0,.2); }
  62.5% { box-shadow: 0em -2.6em 0em 0em rgba(0,0,0,.2), 1.8em -1.8em 0 0em rgba(0,0,0,.2), 2.5em 0em 0 0em rgba(0,0,0,.2), 1.75em 1.75em 0 0em rgba(0,0,0,.5), 0em 2.5em 0 0em rgba(0,0,0,.7), -1.8em 1.8em 0 0em #000, -2.6em 0em 0 0em rgba(0,0,0,.2), -1.8em -1.8em 0 0em rgba(0,0,0,.2); }
  75% { box-shadow: 0em -2.6em 0em 0em rgba(0,0,0,.2), 1.8em -1.8em 0 0em rgba(0,0,0,.2), 2.5em 0em 0 0em rgba(0,0,0,.2), 1.75em 1.75em 0 0em rgba(0,0,0,.2), 0em 2.5em 0 0em rgba(0,0,0,.5), -1.8em 1.8em 0 0em rgba(0,0,0,.7), -2.6em 0em 0 0em #000, -1.8em -1.8em 0 0em rgba(0,0,0,.2); }
  87.5% { box-shadow: 0em -2.6em 0em 0em rgba(0,0,0,.2), 1.8em -1.8em 0 0em rgba(0,0,0,.2), 2.5em 0em 0 0em rgba(0,0,0,.2), 1.75em 1.75em 0 0em rgba(0,0,0,.2), 0em 2.5em 0 0em rgba(0,0,0,.2), -1.8em 1.8em 0 0em rgba(0,0,0,.5), -2.6em 0em 0 0em rgba(0,0,0,.7), -1.8em -1.8em 0 0em #000; }
}

/* ATC principale del tema tolto dalla vista: si usa il pulsante in fondo alla griglia.
   Non uso display:none cosi' il pulsante resta funzionante (lo clicca la griglia). */
.main-product-form .product-form__buttons {
    position: absolute;
    width: 1px; height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
}