/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Mar 19 2026 | 11:25:24 */
.custom-sizes {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.size-box {
    border: 2px solid #198754;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    min-width: 36px;
    display: inline-block;
    color: #198754;
}

/* Hover voor beschikbare maten */
.size-box:hover {
    background: #198754;
    color: #fff;
}

/* UITVERKOCHT */
.size-box.out-of-stock {
    border-color: #ccc;
    color: #999;
    background: #f5f5f5;
    position: relative;
    pointer-events: none;
}

/* diagonale streep */
.size-option.disabled {
    position: relative;
    overflow: hidden;
}



.custom-variation-sizes {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.size-option {
    border: 2px solid #198754;
    padding: 10px 14px;
    border-radius: 8px;
    background: #fff;
    color: #198754;
    font-weight: 500;
    cursor: pointer;
    min-width: 50px;
    text-align: center;
}

.size-option:hover {
    background: #198754;
    color: #fff;
}

.size-option.active {
    background: #198754;
    color: #fff;
}

