.rod-kitchen-closed-banner {
    background: #1E1E1E;
    border-bottom: 2px solid #EF4444;
    padding: 12px 24px;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
}

/* Push body content down to make room for fixed banner */
body.rod-kitchen-closed {
    padding-top: 52px;
}

.rod-kitchen-closed-banner-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.rod-kitchen-closed-banner svg {
    color: #EF4444;
    flex-shrink: 0;
}

.rod-kitchen-closed-banner-text {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.rod-kitchen-closed-banner-text strong {
    color: #F0EBE0;
    font-size: 15px;
}

.rod-kitchen-closed-banner-text span {
    color: #C0BFBD;
    font-size: 14px;
}

@media (max-width: 768px) {
    .rod-kitchen-closed-banner {
        padding: 10px 16px;
    }
    .rod-kitchen-closed-banner-text {
        flex-direction: column;
        gap: 2px;
    }
    body.rod-kitchen-closed {
        padding-top: 60px;
    }
}
