.avatex-delivery-estimate {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 15px 0 5px;
    padding: 10px 14px;
    background: #f0faf0;
    border: 1px solid #c8e6c9;
    border-radius: 6px;
    font-size: 13.5px;
    color: #2e7d32;
    line-height: 1.4;
}

.avatex-delivery-estimate svg {
    flex-shrink: 0;
    color: #2e7d32;
}

.avatex-delivery-estimate strong {
    font-weight: 600;
}

/* Desktop: show after add-to-cart, hide before add-to-cart */
.avatex-delivery-estimate-mobile {
    display: none;
}

/* Mobile: show before add-to-cart, hide after add-to-cart */
@media only screen and (max-width: 767px) {
    .avatex-delivery-estimate-mobile {
        display: block;
    }

    .avatex-delivery-estimate-desktop {
        display: none;
    }
}
