.custom-upsell-wrapper {
    width: 100%;
}

.custom-upsell-box {
    display: flex;
    align-items: center;
    width: 100%;
    margin-bottom: 20px;
    padding: 10px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background-color: #fff;
    cursor: pointer;
    transition:
        border-color 0.2s ease,
        background-color 0.2s ease;
}

.custom-upsell-box.is-added,
.custom-upsell-box:has(.custom-upsell-checkbox:checked) {
    border-color: #983f68;
    background-color: #f9f5f7;
}

.custom-upsell-checkbox {
    appearance: auto !important;
    -webkit-appearance: checkbox !important;
    position: static !important;
    display: inline-block !important;
    flex: 0 0 auto;
    width: 20px !important;
    height: 20px !important;
    margin: 0 15px 0 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
}

.custom-upsell-img {
    display: block;
    flex: 0 0 auto;
    width: 100px;
    height: auto;
    margin-right: 15px;
    object-fit: contain;
}

.custom-upsell-content {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    align-items: flex-start;
    min-width: 0;
}

.custom-upsell-hint {
    display: inline-block;
    width: auto;
    margin: 7px 0 0;
    padding: 6px 10px;
    border-radius: 5px;
    background-color: #0B8F48;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.35;
    text-transform: none;
}

.custom-upsell-hint::before {
    content: "✓";
    margin-right: 6px;
    font-weight: 700;
}

.custom-upsell-label {
    margin-bottom: 3px;
    color: #983f68;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.3;
    text-transform: uppercase;
}

.custom-upsell-title {
    color: #333;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
}

.custom-upsell-price-wrap {
    flex: 0 0 auto;
    margin-left: 15px;
    text-align: right;
}

.custom-upsell-old-price {
    color: #999;
    font-size: 12px;
    line-height: 1.3;
    text-decoration: line-through;
}

.custom-upsell-new-price {
    color: #202020;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
}

@media (max-width: 767px) {
    .custom-upsell-box {
        align-items: center;
        padding: 10px;
    }

    .custom-upsell-checkbox {
        width: 18px !important;
        height: 18px !important;
        margin-right: 8px !important;
    }

    .custom-upsell-img {
        width: 45px;
        margin-right: 5px;
    }

    .custom-upsell-hint {
       margin-top: 6px;
        padding: 5px 8px;
        font-size: 10px;
    }

    .custom-upsell-label {
        font-size: 10px;
    }

    .custom-upsell-title {
        font-size: 13px;
    }

    .custom-upsell-price-wrap {
        margin-left: 8px;
    }

    .custom-upsell-new-price {
        font-size: 14px;
    }
}