.delivery-timing {
    display: none; /* Hidden by default */
    text-align: center;
    background: #ff6600;
    color: white;
    padding: 8px;
    font-size: 14px;
    font-weight: bold;
    border-radius: 50px;
}

/* Show only on mobile screens */
@media (max-width: 768px) {
    .delivery-timing {
        display: block;
        border-radius: 10px;
    }
}