.page-section {
    padding: 2rem 0;
    border-bottom: 1px solid var(--color-border);
}

.page-section:last-of-type { border-bottom: none; }

.page-section__title {
    font-size: var(--text-xl);
    font-weight: 600;
    margin-bottom: 1.25rem;
    padding-bottom: .4rem;
    border-bottom: 2px solid var(--color-primary);
    display: inline-block;
}

/* Tab navigation */
.tab-nav {
    position: sticky;
    top: 52px;
    z-index: 100;
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
    overflow-x: auto;
    scrollbar-width: none;
}

.tab-nav::-webkit-scrollbar { display: none; }

.tab-nav__list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.tab-nav__link {
    display: block;
    padding: .875rem 1.25rem;
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--color-text-muted);
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    transition: color .15s, border-color .15s;
}

.tab-nav__link:hover {
    color: var(--color-primary);
    text-decoration: none;
    border-bottom-color: var(--color-primary);
}

/* Two-column layout for location section */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

@media (max-width: 768px) {
    .two-col { grid-template-columns: 1fr; }
}

/* Imagem na grelha de fotos do restaurante */
.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
