.hours-table td {
    padding: 15px;
    border-top: 1px solid #eee;
}

.hours-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.hours-table .day-name {
    font-weight: 600;
}

.hours-table .status-open {
    color: #28a745;
    font-weight: 600;
}

.hours-table .status-closed {
    color: #dc3545;
    font-weight: 600;
}

/* Estilos para os modais de localização e horário */
.location-card {
    display: flex;
    flex-direction: column;
}

.map-container {
    height: 250px;
    width: 100%;
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.info-container {
    padding: 10px;
}

.info-item {
    display: flex;
    margin-bottom: 15px;
    align-items: flex-start;
}

.info-icon {
    width: 40px;
    height: 40px;
    background-color: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: #dc3545;
    font-size: 18px;
}

.info-text h6 {
    margin: 0;
    font-weight: 600;
    color: #343a40;
}

.info-text p {
    margin: 5px 0 0;
    color: #6c757d;
}

/* Estilos para a tabela de horários */
.hours-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.hours-table th, 
.hours-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #e9ecef;
}

.hours-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #495057;
}

.hours-table .table-active {
    background-color: #fff8e1;
}

.day-name {
    font-weight: 500;
    color: #343a40;
}

.status-open {
    color: #28a745;
    font-weight: 500;
}

.status-closed {
    color: #dc3545;
    font-weight: 500;
}

/* Estilos para os botões do cabeçalho */
.header-button {
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    background-color: #fff;
    color: #dc3545;
    border: 1px solid #dc3545;
    margin-right: 10px;
}

.header-button:hover {
    background-color: #dc3545;
    color: #fff;
    text-decoration: none;
}

.header-button i {
    margin-right: 8px;
}

/* Estilos para o acordeão de categorias */
.accordion-categories {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.accordion-item {
    border: none;
    margin-bottom: 2px;
}

.accordion-header {
    border-radius: 10px;
    overflow: hidden;
}

.accordion-button {
    padding: 15px;
    background-color: #fff;
    font-weight: 600;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    background-color: #f8f9fa;
    color: #333;
}

.accordion-button::after {
    background-size: 16px;
}

.category-icon {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 8px;
}

.category-name {
    font-size: 16px;
}

.product-list {
    padding: 10px;
}

.product-card {
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s;
    border: 1px solid #eee;
}

.product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px 0 0 10px;
}

.product-link {
    text-decoration: none;
    color: inherit;
}

.price-text {
    font-weight: 700;
    color: #28a745;
    margin-bottom: 0;
}

/* Estilos para a barra de pesquisa */
.search-container {
    position: sticky;
    top: 10px;
    z-index: 100;
    margin-bottom: 20px;
}

.search-card {
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    border: none;
}

.search-card .form-control {
    border-radius: 50px 0 0 50px;
    border: none;
    padding-left: 20px;
}

.search-card .btn-primary {
    border-radius: 0;
    border: none;
}

.search-card .btn-outline-secondary {
    border-radius: 0 50px 50px 0;
    border: none;
    background-color: #f8f9fa;
}

/* Estilos para mensagem de "não encontrado" */
#no-results {
    animation: fadeIn 0.5s;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Estilos para o rodapé com carrinho */
.cart-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    padding: 15px 0;
    box-shadow: 0 -4px 10px rgba(0,0,0,0.1);
    z-index: 1000;
}

.cart-total {
    font-size: 18px;
    font-weight: 700;
}

.cart-total::before {
    content: 'Total: ';
}

/* Estilos para o header */
.header-banner {
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 80px 0;
    border-radius: 0 0 25px 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.header-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    border-radius: 0 0 25px 25px;
}

.logo-container {
    position: relative;
    z-index: 2;
}

.logo-img {
    width: 180px;
    height: 180px;
    transition: transform 0.3s;
}

.logo-img:hover {
    transform: scale(1.05);
}

.company-info {
    position: relative;
    z-index: 2;
}

.company-name {
    color: #FFFFFF;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    font-weight: 700;
    margin-bottom: 15px;
}

.status-badge {
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.contact-icons {
    margin-top: 20px;
}

.contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    margin: 0 10px;
    color: #fff;
    font-size: 22px;
    transition: all 0.3s;
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.contact-icon:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.3);
    color: #fff;
}

/* Estilos para o modal */
.modal-content {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.modal-header {
    border-radius: 15px 15px 0 0;
    color: #fff;
}

.modal-title {
    font-weight: 600;
}



/* Estilos para títulos com melhor destaque */
h1, h2, h3, h4, h5, h6, .card-title, .section-title, .modal-title {
    color: #333;
    font-weight: 600;
}

/* Estilos para modais */
.modal-dialog {
    max-width: 90%;
}

.modal-lg {
    max-width: 800px;
}

.modal-content {
    border-radius: 8px;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.modal-header {
    border-bottom: 1px solid #f0f0f0;
    padding: 15px 20px;
}

.modal-body {
    padding: 20px;
}

.modal-title {
    font-weight: 600;
    color: #333;
}

.btn-close:focus {
    box-shadow: none;
}

/* Estilos para o card de produto no modal */
.modal .card {
    box-shadow: none;
    border: none;
}

.modal img.img-fluid {
    max-height: 300px;
    object-fit: cover;
    border-radius: 8px;
}

.modal .text-success {
    font-weight: 700;
}

.modal .number-spinner {
    width: 150px;
}

.modal textarea.form-control {
    min-height: 80px;
}

/* Estilos para cards e elementos de destaque */
.card, .list-group-item {
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

/* Melhorar contraste dos textos */
.text-muted {
    color: #6c757d !important;
}

/* Destacar títulos de produtos */
.product-title, .category-title {
    font-weight: 600;
    color: #333;
}

/* Melhorar visualização de preços */
.price {
    font-weight: 700;
    color: #28a745;
}
.location-card .info-text {
    flex-grow: 1;
}

.location-card .info-text h6 {
    margin-bottom: 5px;
    font-weight: 600;
}

.hours-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.modal-title {
    font-weight: 600;
}

/* Estilos adicionais para os modais de localização e horário */
.location-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.location-card .map-container {
    height: 200px;
    background: #f5f5f5;
    position: relative;
}

.location-card .info-container {
    padding: 20px;
}

.location-card .info-item {
    display: flex;
    margin-bottom: 15px;
}
.nav-link {
    color: #fff;
    font-weight: 500;
    padding: 15px 20px;
    border-radius: 10px;
    transition: all 0.3s;
}

.nav-link:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

.cart-button {
    background-color: #006699;
    color: #fff;
    border-radius: 10px;
    padding: 10px 20px;
    font-weight: 600;
    transition: all 0.3s;
}

.cart-button:hover {
    background-color: #005588;
    transform: translateY(-2px);
}
