.shipping-option-button:has(.fcl-upsell) {
    flex-wrap: wrap;
}

.fcl-upsell {
    display: flex;
    align-items: center;
    gap: 2rem;
    width: 100%;
    min-width: 0;
    padding: 1rem 1.5rem;
    margin-top: 1rem;
    background: var(--upsell-surface-purple);
    border: 1px solid var(--light-purple);
    border-radius: 0.5rem;
}

.fcl-upsell__illustration {
    width: 8.75rem;
    max-width: 100%;
    flex-shrink: 0;
}

.fcl-upsell__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    flex: 1;
    min-width: 0;
}

.fcl-upsell--inline .fcl-upsell__content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.fcl-upsell__text {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-width: 36rem;
}

.fcl-upsell__title {
    color: var(--action);
    font-size: 1rem;
    font-weight: 600;
    line-height: normal;
    white-space: normal;
}

.fcl-upsell__body {
    color: var(--grey-90);
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.4;
    white-space: normal;
}

.fcl-upsell__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    height: 2.5rem;
    padding: 0.75rem 1rem;
    background: var(--action);
    border: none;
    border-radius: 0.5rem;
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 500;
    white-space: nowrap;
    flex-shrink: 0;
    transition: all 0.2s ease-in-out;
}

.fcl-upsell__cta:hover {
    background: var(--dark-purple);
    opacity: 0.9;
}

.fcl-upsell__cta-icon {
    font-size: 1.3125rem;
    color: var(--white);
}

@media (max-width: 47.9375rem) {
    .fcl-upsell {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
        text-align: center;
    }

    .fcl-upsell__illustration {
        width: 7.8125rem;
    }

    .fcl-upsell__content,
    .fcl-upsell--inline .fcl-upsell__content {
        flex-direction: column;
        align-items: stretch;
    }

    .fcl-upsell__text {
        max-width: none;
    }

    .fcl-upsell__cta {
        width: 100%;
    }
}
