/*
 * Handel.sk – tlačidlový výber variantu „Strih oblečenia“
 * Verzia 1.0.2
 */

.handel-cut-switch {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
    width: 100%;
    margin: 7px 0 18px;
}

.handel-cut-button {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    min-height: 54px;
    padding: 9px 14px;
    border: 1px solid #d5dadd;
    border-radius: 6px;
    background: #fff;
    color: #202124;
    font: inherit;
    font-size: 17px !important;
    font-weight: 700 !important;
    line-height: 1.2;
    text-align: center;
    overflow-wrap: anywhere;
    cursor: pointer;
    transition: background-color .18s ease, border-color .18s ease,
                color .18s ease, box-shadow .18s ease, transform .1s ease;
    -webkit-tap-highlight-color: transparent;
}

.handel-cut-button:hover:not(:disabled) {
    border-color: #078da6;
    color: #078da6;
    box-shadow: 0 2px 8px rgba(7, 141, 166, .13);
}

.handel-cut-button:active:not(:disabled) {
    transform: scale(.985);
}

.handel-cut-button.is-active {
    border-color: #078da6;
    background: #078da6;
    color: #fff;
    box-shadow: 0 3px 10px rgba(7, 141, 166, .22);
}

.handel-cut-button.is-active:hover:not(:disabled) {
    color: #fff;
}

.handel-cut-button:focus-visible {
    outline: 3px solid rgba(7, 141, 166, .25);
    outline-offset: 2px;
}

.handel-cut-button:disabled {
    border-color: #e4e7e9;
    background: #f5f6f7;
    color: #a1a7aa;
    box-shadow: none;
    cursor: not-allowed;
}

/* Pôvodný select ostáva v DOM pre Shoptet a formulár, iba sa vizuálne skryje. */
.handel-cut-original {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    clip-path: inset(50%) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* Skrytie obalu/šípky vzhľadu selectu, ak ich šablóna vytvorila okolo selectu. */
.handel-cut-original-wrap {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    clip-path: inset(50%) !important;
}

@media (min-width: 769px) {
    .handel-cut-switch[data-option-count="3"] {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .handel-cut-switch[data-option-count="4"] {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 480px) {
    .handel-cut-switch {
        gap: 7px;
        margin-bottom: 15px;
    }

    .handel-cut-button {
        min-height: 50px;
        padding: 9px 8px;
        font-size: 16px !important;
        font-weight: 700 !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    .handel-cut-button {
        transition: none;
    }
}
