/* Header inline styles extracted from _Layout.cshtml */

/* Delivery Banner Styles */
.delivery-banner {
    background: linear-gradient(135deg, #CC9966, #B8875A);
    color: white;
    text-align: center;
    padding: 8px 0;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.delivery-banner .delivery-text {
    margin: 0;
    text-transform: uppercase;
    color: white;
}

@media (max-width: 768px) {
    .delivery-banner {
        font-size: 12px;
        padding: 6px 0;
    }
}

/* Floating WhatsApp button */
.floating-whatsapp {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: #ffffff; /* white background */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.18);
    z-index: 9999;
    text-decoration: none;
    border: 1px solid #e6e6e6;
}

.floating-whatsapp i {
    font-size: 32px;
    line-height: 1;
    color: #25D366; /* WhatsApp green icon */
}

.floating-whatsapp:hover {
    box-shadow: 0 12px 28px rgba(0,0,0,0.22);
}

@media (max-width: 576px) {
    .floating-whatsapp {
        bottom: 90px;
        right: 24px;
        width: 60px;
        height: 60px;
    }
    .floating-whatsapp i {
        font-size: 28px;
    }
}