/* ——— RESET & BASE ——— */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Verdana, sans-serif;
    line-height: 1.75;
    color: #2d3748;
    background: #f7fafc;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: #2f855a;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #276749;
}

a:visited {
    color: #2c5282;
}

a:visited:hover {
    color: #2a4365;
}

/* ——— LAYOUT ——— */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

.full-width {
    position: relative;
}

/* ——— UTILS ——— */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #2f855a;
    color: #fff;
    border: none;
}

.btn-primary:hover {
    background: #276749;
    color: #fff;
}

.btn-primary:visited {
    color: #fff;
}

.btn-outline {
    background: transparent;
    color: #2f855a;
    border: 2px solid #2f855a;
}

.btn-outline:hover {
    background: #f0fff4;
    color: #276749;
    border-color: #276749;
}

.btn-outline:visited {
    color: #2f855a;
}

.btn-outline:visited:hover {
    color: #276749;
}

/* ——— BREADCRUMB ——— */
.breadcrumb {
    background: #fff;
    padding: 1rem 0;
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 0;
}

.breadcrumb.full-width {
    background: #fff;
}

.breadcrumb a {
    color: #2f855a;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb .separator {
    color: #a0aec0;
    margin: 0 .5rem;
}

/* ——— HERO SECTION ——— */
.single-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 0;
    color: #fff;
}

.single-hero.full-width {
    background-color: #f0fff4;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.5) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.hero-main h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #fff;
    margin-top: 0;
    line-height: normal;
}

.hero-meta {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
}

.rating-small {
    display: flex;
    align-items: center;
    gap: 10px;
}

.rating-stars {
    color: #fff;
}

.hero-meta .rating-number {
    color: #fff;
    font-size: 2rem;
}

.reviews-summary {
    display: flex;
    align-items: center;
    background-color: #f0fff4;
    padding: 20px;
    border-radius: 0.825rem;
}

.overall-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 200px;
}

.overall-rating .rating-number {
    font-size: 3rem;
    line-height: normal;
}

.hero-meta .price-level .fas {
    color: #fff;
}

.hero-meta .reviews-count {
    color: rgba(255,255,255,0.8);
}

.hero-address {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.9);
}

.price-level {
    display: flex;
    align-items: center;
    gap: 8px;
}

.price {
    color: #fff;
}

.price-text {
    color: rgba(255,255,255,0.9);
}

.opening-status {
    display: flex;
    align-items: center;
    gap: 8px;
}

.status {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 500;
}

.status.open {
    background-color: rgba(46, 204, 113, 0.3);
    color: #00ff6c;
}

.status.closed {
    background-color: rgba(231, 76, 60, 0.3);
    color: #ff1800;
}

.status.temporarily-closed {
    background-color: rgba(0, 0, 0, 0.3);
    color: yellow;
}

.hero-sidebar {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 24px;
}

.contact-info h3 {
    color: #fff;
    margin-bottom: 16px;
    font-size: 1.2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: rgba(255,255,255,0.9);
}

.contact-item a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #fff;
}

.hours-toggle {
    width: 100%;
    padding: 12px;
    margin-top: 16px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.hours-toggle:hover {
    background: rgba(255,255,255,0.2);
}

.hours-list {
    margin-top: 16px;
    padding: 16px;
    background: rgba(0,0,0,0.3);
    border-radius: 8px;
}

.day-hours {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.day-hours:last-child {
    border-bottom: none;
}

.day {
    color: rgba(255,255,255,0.9);
}

.hours {
    color: #fff;
}

.hours.closed {
    color: rgba(255,255,255,0.5);
}

.action-buttons {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #2ecc71;
    color: #fff;
    border: none;
}

.btn-primary:hover {
    background: #27ae60;
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.3);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
}

/* ——— TABS ——— */
.content-tabs {
    background: #fff;
    padding: 2rem 0;
    border-radius: .75rem;
    box-shadow: 0 4px 12px rgba(0,0,0,.05);
}

.content-tabs.full-width {
    background: #fff;
}

.hero-main-content.full-width {
    background: #f6f9fb;
    margin: 3rem 0;
}

.tab-nav {
    display: flex;
    border-bottom: 2px solid #e2e8f0;
}

.tab-btn {
    padding: 1rem 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    font-weight: 600;
    color: #4a5568;
    border-bottom: 3px solid transparent;
    transition: .3s;
    margin-right: 1rem;
}

.tab-btn.active {
    color: #2f855a;
    border-bottom-color: #2f855a;
}

.tab-content {
    margin: 2rem 0;
}

.tab-pane {
    margin: 2rem 0;
}

/* ——— REVIEWS ——— */
.reviews-section {
    margin-top: 2rem;
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.review-item {
    background: #fff;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.reviewer-name {
    font-weight: 600;
    color: #1a202c;
}

.review-content {
    color: #4a5568;
    line-height: 1.6;
    font-size: 0.95rem;
}

.toggle-reviews {
    margin-top: 1.5rem;
    align-self: center;
    background: #f7fafc;
    color: #2d3748;
    border: 1px solid #e2e8f0;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 900;
    transition: all 0.2s ease;
    line-height: 28px;
}

.btn.toggle-reviews {
    font-weight: 900;
}

.toggle-reviews:hover {
    background: #edf2f7;
    border-color: #cbd5e0;
}

.remaining-reviews {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

/* ——— GALLERY ——— */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
}

.gallery-item {
    position: relative;
    padding-bottom: 75%;
    overflow: hidden;
    border-radius: .5rem;
}

.gallery-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ——— MENU ——— */
.menu-section {
    margin-bottom: 2rem;
}

.menu-section-title {
    font-size: 1.25rem;
    color: #2d3748;
    margin-bottom: 1rem;
    font-weight: 600;
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}

.item-name {
    font-size: 1.1rem;
    color: #2d3748;
    font-weight: 500;
    margin: 0;
}

.price {
    font-weight: 600;
    color: #2d3748;
}

.item-description {
    color: #718096;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.no-menu {
    text-align: center;
}

.no-menu i {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #cbd5e0;
}

.no-menu p {
    font-size: 1.1rem;
    margin: 0;
}

/* ——— RELATED LOCATIONS ——— */
.related-locations {
    padding: 60px 0;
    background: #f7fafc;
}

.related-locations.full-width {
    background: #f7fafc;
}

.related-locations h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: #2d3748;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.location-card {
    background: #fff;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
}

.location-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.location-image {
    position: relative;
    width: 100%;
    padding-top: 66.67%; /* 3:2 aspect ratio */
    overflow: hidden;
}

.location-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.location-image.no-image {
    background-color: #f0fff4;
}

.placeholder-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f0fff4;
}

.placeholder-image i {
    font-size: 2rem;
    color: #48bb78;
}

.location-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.location-title a, .location-title a:visited {
    font-size: 1.25rem;
    font-weight: 600;
    color: #30855a;
    margin-bottom: 0.75rem;
}

.rating-small {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.rating-stars {
    color: #48bb78;
}

.rating-number {
    font-size: 0.875rem;
    font-weight: 600;
    color: #2d3748;
}

.reviews-count {
    font-size: 0.875rem;
    color: #718096;
}

.location-address {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #4a5568;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.location-address i {
    color: #48bb78;
}

.price-range {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: #4a5568;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.price-range i {
    color: #48bb78;
}

.location-desc {
    color: #4a5568;
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background-color: #48bb78;
    color: #fff;
    border-radius: 0.375rem;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.2s;
    margin-top: auto;
}

.btn-primary:hover {
    background-color: #38a169;
}

.btn-primary i {
    transition: transform 0.2s;
}

.btn-primary:hover i {
    transform: translateX(4px);
}

/* ——— RATING DISTRIBUTION ——— */
.rating-distribution {
    width: 100%;
}

.rating-bar {
    display: flex;
    align-items: center;
    margin-bottom: .35rem;
}

.rating-label {
    width: 40px;
    color: #4a5568;
    font-size: .9rem;
}

.rating-progress {
    flex: 1;
    height: 8px;
    background: #e2e8f0;
    border-radius: 4px;
    margin: 0 1rem;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: #2f855a;
    border-radius: 4px;
    transition: width .3s ease;
}

.rating-count {
    width: 40px;
    text-align: right;
    color: #4a5568;
    font-size: .9rem;
}

/* ——— RESPONSIVE ——— */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
    }

    .hero-main h1 {
        font-size: 2rem;
    }
    
    .hero-meta {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .hero-sidebar {
        margin-top: 24px;
    }

    .pros-cons {
        grid-template-columns: 1fr;
    }

    .tab-nav {
        flex-wrap: wrap;
    }

    .tab-btn {
        flex: 1;
        text-align: center;
        padding: .75rem;
    }

    .locations-grid {
        grid-template-columns: 1fr;
    }
}

.remaining-reviews {
    margin-top: 1.5rem;
}

.no-reviews {
    text-align: center;
    padding: 2rem;
    color: var(--text-muted);
    font-style: italic;
}

.section-title {
    font-size: 1.75rem;
    color: #2d3748;
    margin-bottom: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
}

.menu-actions {
    margin-top: 2rem;
    text-align: center;
}

.menu-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
}

.show-more-reviews {
    margin: 2rem auto;
    font-family: "Segoe UI", Tahoma, Verdana, sans-serif;
    line-height: 28px;
    display: block;
}

.menu-actions .btn i {
    font-size: 0.9rem;
} 

.footer-menu .wpml-ls-item {
    display: none;
}