.parameter-id-18.obal-puvodni-select {
    display: none !important;
}

.obal-volby {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 10px;
}

.obal-volba {
    padding: 0;
    overflow: hidden;
    color: #111;
    font: inherit;
    text-align: left;
    background: #fff;
    border: 2px solid #ddd;
    border-radius: 8px;
    cursor: pointer;
}

.obal-volba:hover,
.obal-volba.active {
    border-color: #e6001b;
}

.obal-volba img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: contain;
    background: #f7f7f7;
}

.obal-popis {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px;
}

.obal-check {
    position: relative;
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
    border: 2px solid #aaa;
    border-radius: 4px;
}

.obal-volba.active .obal-check {
    border-color: #e6001b;
    background: #e6001b;
}

.obal-volba.active .obal-check::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 1px;
    width: 5px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.obal-nazev {
    font-weight: 700;
}

.obal-cena {
    margin-left: auto;
    color: #e6001b;
    font-size: 13px;
    white-space: nowrap;
}

@media (max-width: 420px) {
    .obal-volby {
        grid-template-columns: 1fr;
    }
}
