.restaurant-closed {
    width: 100%;
    min-height: calc(100vh - 80px); /* Ajustar altura considerando o header */
    background: var(--bg-color);
    padding: 0; /* Remover padding */
    margin-top: -1rem; /* Reduzir espaço entre header e conteúdo */
}

/* Container para manter o mesmo limite do menu */
.restaurant-closed .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: center; /* Centralizar container */
}

/* Layout do conteúdo */
.closed-content {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    padding: 3rem;
    width: 100%;
    max-width: 900px; /* Limitar largura máxima */
    display: grid;
    grid-template-columns: 1fr 1fr; /* Colunas iguais */
    gap: 3rem;
    align-items: center;
}

/* Seção de informações */
.closed-info {
    text-align: left;
    margin-bottom: 0;
    padding-right: 3rem;
    border-right: 1px solid var(--border-color);
}

.status-icon {
    width: 80px;
    height: 80px;
    background: var(--bg-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.status-icon i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.closed-info h2 {
    font-size: 2rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.closed-info p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.next-opening {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    padding: 1rem 2rem;
    background: var(--bg-color);
    border-radius: 8px;
    color: var(--primary-color);
    font-weight: 500;
}

/* Seção de horários */
.operating-hours-summary {
    padding-top: 0;
    border-top: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Alinhar à esquerda */
}

.operating-hours-summary::before {
    content: 'Horário de Funcionamento';
    display: block;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.hours-container {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%; /* Usar largura total disponível */
    max-width: 350px; /* Limitar largura para ficar mais compacto */
}

.hours-row {
    background: var(--bg-color);
    padding: 0.75rem 1rem;
    border-radius: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    position: relative; /* Para o pseudo-elemento */
}

.hours-row:hover {
    transform: translateX(5px);
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* Novo estilo para o dia atual */
.hours-row.today {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.2);
}

.hours-row.today .day {
    color: white;
}

.hours-row.today .day i {
    color: white;
}

.hours-row.today .hours {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Ajustar hover do dia atual */
.hours-row.today:hover {
    transform: translateX(5px);
    background: var(--primary-color);
    box-shadow: 0 6px 16px rgba(255, 107, 107, 0.3);
}

/* Manter outros estilos */
.hours-row .day {
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 120px;
}

.hours-row .day i {
    width: 16px;
    text-align: center;
    color: var(--primary-color);
}

.hours-row .hours {
    color: var(--text-muted);
    font-weight: 500;
    padding: 0.25rem 0.75rem;
    background: white;
    border-radius: 4px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

/* Responsividade */
@media (max-width: 1024px) {
    .closed-content {
        max-width: 700px;
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hours-container {
        max-width: 400px;
        margin: 0 auto; /* Centralizar na versão mobile */
    }
}

@media (max-width: 768px) {
    .restaurant-closed .container {
        padding: 0 1rem;
    }

    .restaurant-closed {
        margin-top: -0.5rem;
    }

    .closed-content {
        padding: 2rem;
    }
}

/* Telas muito grandes */
@media (min-width: 1440px) {
    .closed-content {
        padding: 4rem;
    }

    .hours-container {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Adicionar estilo para botões desabilitados */
.add-to-cart-btn[disabled],
.customize-btn[disabled] {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* Prevenir interações quando fechado */
.restaurant-closed-state {
    pointer-events: none;
    opacity: 0.5;
    transition: all 0.3s ease;
} 