.zh-base-wrap {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
}

.zh-base-left {
    flex: 1 1 auto;
    min-width: 0;
}

.zh-base-title {
    margin-bottom: 18px;
    color: #2b2321;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.2;
}

.zh-base-options {
    display: flex !important;
    flex-direction: column !important;
    gap: 18px !important;
}

.zh-base-option {
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
    color: #2b2321;
    cursor: pointer;
    font-size: 20px !important;
    line-height: 1.15 !important;
    user-select: none;
}

.zh-base-option input {
    position: absolute !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.zh-radio {
    position: relative;
    display: inline-block;
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    border: 3px solid #2b2321;
    border-radius: 50%;
}

.zh-base-option input:focus-visible + .zh-radio {
    outline: 3px solid rgba(122, 30, 18, .28);
    outline-offset: 3px;
}

.zh-base-option input:checked + .zh-radio {
    border-color: #7a1e12;
}

.zh-base-option input:checked + .zh-radio::after {
    position: absolute;
    inset: 7px;
    border-radius: 50%;
    background: #7a1e12;
    content: '';
}

.zh-base-right {
    display: flex;
    flex: 0 0 auto;
    flex-direction: column;
    align-items: flex-end;
}

.zh-add-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px;
    border: 0;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .08);
    cursor: pointer;
}

.zh-add-btn:hover,
.zh-add-btn:focus-visible {
    background: #fff7f2;
}

.zh-add-text {
    color: #7a1e12;
    font-size: 20px;
    line-height: 1;
}

.zh-cart-icon {
    display: inline-flex;
    width: 52px;
    height: 52px;
    align-items: center;
    justify-content: center;
    color: #890000;
}

.zh-cart-svg {
    width: 52px;
    height: 52px;
}

.zh-msg {
    max-width: 220px;
    margin-top: 10px;
    color: #7a1e12;
    font-size: 14px;
    font-weight: 700;
    text-align: right;
}

.zh-base-selector--sold-out {
    display: flex;
    justify-content: flex-end;
    margin-top: 12px;
}

.zh-sold-out {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 22px;
    border-radius: 18px;
    background: #f4eee7;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .06);
    color: #7a1e12;
    font-size: 20px;
    font-weight: 800;
}

.persepolis-tray-selection-notice {
    margin: 0 0 18px;
    padding: 13px 16px;
    border: 1px solid rgba(122, 30, 18, .25);
    border-left: 4px solid #7a1e12;
    background: #fff7f2;
    color: #3b0000;
    font-weight: 700;
}

@media (max-width: 768px) {
    .zh-base-wrap {
        gap: 16px;
    }

    .zh-base-title,
    .zh-base-option,
    .zh-add-text {
        font-size: 18px !important;
    }

    .zh-cart-icon,
    .zh-cart-svg {
        width: 36px;
        height: 36px;
    }
}

@media (max-width: 480px) {
    .zh-base-wrap {
        align-items: stretch;
        flex-direction: column;
    }

    .zh-base-right {
        align-items: stretch;
    }

    .zh-add-btn {
        justify-content: center;
    }

    .zh-msg {
        max-width: none;
        text-align: left;
    }
}

