/** Shopify CDN: Minification failed

Line 192:114 Unterminated string token

**/
/* ===== Griglia ordine all'ingrosso (CAGI) — riscritta 09/2026 ===== */
.mrk-multivariants-wrapper h2 { margin-bottom: 1.2rem; }

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

.mrk-multi-variant-table {
    overflow-x: auto;
    overflow-y: auto;
    max-height: 70vh;
    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;
}
.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: 8px 6px;
    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: #fff7d6 !important; }
.mrk-cell-empty { background: repeating-linear-gradient(45deg,#fafafa,#fafafa 6px,#f0f0f0 6px,#f0f0f0 12px); }

/* totale */
.mrk-total-price-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    padding: 14px 4px 0;
    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: #0B5795;
    color: #fff;
    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: #094674; }
.mrk-bulk-atc:disabled { opacity: .45; cursor: not-allowed; }
@media (max-width: 749px) {
    .mrk-total-price-wrapper { flex-direction: column-reverse; align-items: stretch; }
    .mrk-bulk-atc { width: 100%; }
    .mrk-total-line { justify-content: flex-end; }
}

@media (max-width: 749px) {
    .mrk-table-header, .mrk-table-body-item {
        grid-template-columns: 132px repeat(var(--cols, 12), minmax(80px, 1fr));
    }
    .mrk-table-column-item-header { flex-direction: column; align-items: flex-start; gap: 4px; }
    .mrk-table-column-image { width: 44px; height: 44px; flex-basis: 44px; }
    .mrk-table-column-quantity-picker .quantity { width: 92px; }
}

/* ===== 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(https://cdn.shopify.com/s/files/1/0808/8643/2084/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;
}
