.variations select.gerwing-format-select {
    display: none !important;
}

.gerwing-format-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    width: 100%;
}

.gerwing-format-option {
    min-width: 92px;
    min-height: 44px;
    box-sizing: border-box;
    padding: 9px 14px;
    border: 1px solid #707070;
    border-radius: 4px;
    background: #fff;
    color: #2d2d2d;
    font: inherit;
    line-height: 1.2;
    text-align: center;
    cursor: pointer;
    transition: background-color .15s ease, border-color .15s ease, color .15s ease;
}

.gerwing-format-option:hover:not(:disabled):not(.is-selected) {
    border-color: #a4a43d;
    background: #f5f5e8;
}

.gerwing-format-option:focus-visible {
    outline: 2px solid #2d2d2d;
    outline-offset: 2px;
}

.gerwing-format-option.is-selected {
    border-color: #8f9030;
    background: #a4a43d;
    color: #fff;
}

.gerwing-format-option:disabled {
    border-color: #c7c7c7;
    background: #f2f2f2;
    color: #8a8a8a;
    cursor: not-allowed;
}

@media (max-width: 639px) {
    .gerwing-format-options {
        gap: 6px;
    }

    .gerwing-format-option {
        min-width: 84px;
        padding-right: 10px;
        padding-left: 10px;
    }
}
