.wf-product-delivery-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 16px 0 20px;
    padding: 16px 18px;
    overflow: hidden;
    border: 1px solid #e1e6ec;
    border-left: 4px solid #ee1c25;
    border-radius: 12px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.wf-product-delivery-card::after {
    content: "";
    position: absolute;
    right: -32px;
    top: -48px;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: rgba(238, 28, 37, 0.045);
    pointer-events: none;
}

.wf-product-delivery-card__icon {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 50px;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: #ee1c25;
    color: #ffffff;
    box-shadow: 0 7px 16px rgba(238, 28, 37, 0.2);
    font-size: 21px;
}

.wf-product-delivery-card__body {
    position: relative;
    z-index: 1;
    flex: 1 1 auto;
    min-width: 0;
}

.wf-product-delivery-card__eyebrow {
    display: block;
    margin-bottom: 3px;
    color: #64748b;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.65px;
    line-height: 1.3;
    text-transform: uppercase;
}

.wf-product-delivery-card__price {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 7px;
    color: #172033;
    line-height: 1.25;
}

.wf-product-delivery-card__price span {
    font-size: 16px;
    font-weight: 700;
}

.wf-product-delivery-card__price strong {
    color: #ee1c25;
    font-size: 23px;
    font-weight: 800;
    letter-spacing: -0.35px;
}

.wf-product-delivery-card__body p {
    margin: 5px 0 0;
    color: #64748b;
    font-size: 12px;
    line-height: 1.45;
}

.wf-product-delivery-card__body p b {
    color: #334155;
    font-weight: 700;
}

.wf-product-delivery-card__link {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    flex: 0 0 auto;
    padding: 9px 12px;
    border: 1px solid #dce2e8;
    border-radius: 8px;
    background: #ffffff;
    color: #253047;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
    transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.wf-product-delivery-card__link:hover,
.wf-product-delivery-card__link:focus {
    border-color: #ee1c25;
    color: #ee1c25;
    text-decoration: none;
    transform: translateY(-1px);
}

.wf-product-delivery-card__link i {
    font-size: 10px;
}

@media (max-width: 767px) {
    .wf-product-delivery-card {
        display: grid;
        grid-template-columns: 44px minmax(0, 1fr);
        gap: 11px 12px;
        padding: 14px;
    }

    .wf-product-delivery-card__icon {
        align-self: start;
        flex-basis: 44px;
        width: 44px;
        height: 44px;
        border-radius: 10px;
        font-size: 18px;
    }

    .wf-product-delivery-card__price strong {
        font-size: 21px;
    }

    .wf-product-delivery-card__link {
        grid-column: 1 / -1;
        justify-content: center;
        width: 100%;
        box-sizing: border-box;
    }
}

@media print {
    .wf-product-delivery-card {
        display: none !important;
    }
}
