.schedule-row {
    display: grid;
    grid-template-columns: 140px 120px 140px 140px 1fr;
    gap: 12px;
    align-items: center;
    border-bottom: 1px solid var(--border);
    padding: 14px 0;
}

.store-status {
    margin-bottom: 10px;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-radius: 999px;
    padding: 7px 12px;
    font-weight: 900;
    font-size: 13px;
}

.status-pill.open {
    background: #dcfce7;
    color: #166534;
}

.status-pill.closed {
    background: #fee2e2;
    color: #991b1b;
}

.store-closed-alert {
    background: #fff7ed;
    color: #9a3412;
    border: 1px solid #fed7aa;
    border-radius: 16px;
    padding: 16px;
    margin-bottom: 20px;
    font-weight: 800;
}

.hero-banner-text {
    margin-top: 10px !important;
    font-weight: 800;
}

.dynamic-hero {
    transition: background .2s ease;
}

@media (max-width: 900px) {
    .schedule-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }
}
