.restaurant-hero-section {
    position: relative;
}

.restaurant-hero-section .restaurant-hero-media {
    position: relative;
    min-height: 680px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-image: var(--restaurant-hero-bg);
    background-size: cover;
    background-position: center;
}

.restaurant-hero-section .restaurant-hero-media::after {
    content: '';
    position: absolute;
    inset: -8%;
    background-image: var(--restaurant-hero-bg);
    background-size: cover;
    background-position: center;
    animation: restaurantHeroBreathe 9s ease-in-out infinite;
    z-index: 0;
}

@keyframes restaurantHeroBreathe {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.06);
    }
    100% {
        transform: scale(1);
    }
}

.restaurant-hero-section .restaurant-hero-media::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(76, 59, 58, 0.72) 0%,
        rgba(76, 59, 58, 0.45) 50%,
        rgba(151, 202, 123, 0.18) 100%
    );
    z-index: 1;
}

.restaurant-hero-section .container {
    position: relative;
    z-index: 2;
    padding-top: 80px;
    padding-bottom: 80px;
}

.restaurant-hero-section .hero-content {
    padding: 40px 44px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(30, 20, 20, 0.55);
    border-radius: 20px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.28);
}

.restaurant-hero-section .hero-logo-wrap {
    margin-bottom: 28px;
}

.restaurant-hero-section .hero-logo-wrap img {
    max-height: 90px;
    max-width: 260px;
    width: auto;
    object-fit: contain;
    padding: 10px 30px;
    background: #fff;
    border-radius: 10px;
}

.restaurant-hero-section .hero-content p {
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.13rem;
    line-height: 1.75;
    max-width: 680px;
    margin-bottom: 36px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
    text-align: center;
}

.restaurant-hero-section .hero-content .site-title-tagline {
    color: rgba(255, 255, 255, 0.84);
    margin-bottom: 14px;
}

.restaurant-hero-section .hero-content .hero-title {
    color: #ffffff;
    margin-bottom: 20px;
}

.restaurant-hero-section .hero-btn {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    justify-content: center;
}

.restaurant-hero-section .theme-btn-primary {
    background: #97ca7b;
    border: 2px solid #97ca7b;
    color: #fff;
    border-radius: 50px;
    padding: 15px 32px;
    font-weight: 700;
    font-size: 0.97rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 24px rgba(151, 202, 123, 0.38);
    letter-spacing: 0.2px;
}

.restaurant-hero-section .theme-btn-primary:hover {
    background: #82b568;
    border-color: #82b568;
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(151, 202, 123, 0.45);
    color: #fff;
}

.restaurant-hero-section .theme-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 1.5px solid rgba(255, 255, 255, 0.55);
    color: #fff;
    border-radius: 50px;
    padding: 13px 26px;
    font-weight: 600;
    font-size: 0.92rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.restaurant-hero-section .theme-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.95);
    color: #4c3b3a;
    border-color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.restaurant-hero-section .hero-trust-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    align-items: center;
    justify-content: center;
    margin-top: 42px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    width: 100%;
}

.restaurant-hero-section .hero-trust-item {
    display: flex;
    align-items: center;
    gap: 9px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.88rem;
    font-weight: 500;
}

.restaurant-hero-section .hero-trust-item i {
    color: #97ca7b;
    font-size: 1rem;
}

.restaurant-about-section {
    position: relative;
    background: linear-gradient(135deg, #fff8ed 0%, #f5f7f4 100%);
}

.restaurant-wow-visible {
    visibility: visible;
    animation-delay: 0.25s;
}

.restaurant-about-media {
    position: relative;
}

.restaurant-about-image-main {
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(76, 59, 58, 0.13);
}

.restaurant-about-image-secondary,
.restaurant-about-image-tertiary {
    border-radius: 12px;
    box-shadow: 0 6px 24px rgba(76, 59, 58, 0.13);
}

.restaurant-about-badge {
    background: linear-gradient(135deg, #97ca7b, #7db85f);
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(151, 202, 123, 0.35);
    padding: 28px 32px;
}

.restaurant-about-badge-value {
    font-size: 2.8rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.restaurant-about-badge-label {
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    margin: 0;
    opacity: 0.92;
}

.restaurant-about-copy {
    padding-left: 1rem;
}

.restaurant-about-tagline {
    color: #a88a6e;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 10px;
}

.restaurant-about-title {
    color: #4c3b3a;
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 0;
}

.restaurant-about-intro {
    color: #6b5a58;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.restaurant-about-list-wrap {
    margin-bottom: 2rem;
}

.restaurant-about-list {
    margin: 0;
    padding: 0;
}

.restaurant-about-list-item {
    margin-bottom: 14px;
}

.restaurant-about-list-item:last-child {
    margin-bottom: 0;
}

.restaurant-about-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #fff;
    border-radius: 12px;
    padding: 16px 20px;
    box-shadow: 0 2px 12px rgba(76, 59, 58, 0.07);
    border-left: 4px solid #97ca7b;
}

.restaurant-about-index {
    color: #97ca7b;
    font-weight: 800;
    font-size: 1rem;
    min-width: 28px;
}

.restaurant-about-card-title {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: #4c3b3a;
    line-height: 1.4;
}

.restaurant-menu-section {
    background: linear-gradient(180deg, #fff 0%, #f5f7f4 100%);
}

.restaurant-menu-intro {
    max-width: 780px;
    margin: 0 auto;
    color: #6b5a58;
    font-size: 1rem;
    line-height: 1.8;
}

.restaurant-menu-card {
    width: 100%;
    min-height: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 34px rgba(76, 59, 58, 0.08);
}

.restaurant-menu-card .listing-card-content {
    padding: 26px 24px 22px;
}

.restaurant-menu-card-top {
    padding-bottom: 18px;
    margin-bottom: 18px;
    border-bottom: 1px solid rgba(76, 59, 58, 0.08);
}

.restaurant-menu-tags {
    margin-bottom: 14px;
}

.restaurant-menu-tag {
    background: rgba(151, 202, 123, 0.14);
    color: #4c3b3a;
    font-weight: 700;
}

.restaurant-menu-name {
    margin: 0 0 14px;
    color: #4c3b3a;
    font-size: 1.5rem;
    line-height: 1.25;
}

.restaurant-menu-features {
    list-style: none;
    margin: 0 0 22px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.restaurant-menu-groups {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 22px;
}

.restaurant-menu-group {
    padding-top: 16px;
    border-top: 1px dashed rgba(76, 59, 58, 0.12);
}

.restaurant-menu-group:first-child {
    padding-top: 0;
    border-top: 0;
}

.restaurant-menu-group-title {
    margin: 0 0 12px;
    color: #4c3b3a;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.restaurant-menu-features-grouped {
    margin-bottom: 0;
}

.restaurant-menu-features li {
    position: relative;
    padding-left: 28px;
    color: #4c3b3a;
    font-size: 14px;
    line-height: 1.55;
}

.restaurant-menu-features li::before {
    content: '\f058';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #97ca7b;
    position: absolute;
    top: 1px;
    left: 0;
}

.restaurant-menu-footer {
    align-items: flex-end;
}

.restaurant-menu-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.restaurant-menu-fact {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    background: #f5f7f4;
    color: #6b5a58;
    font-size: 12px;
    font-weight: 700;
}

.restaurant-testimonial-section {
    position: relative;
    background-image: var(--restaurant-testimonial-bg);
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

.restaurant-testimonial-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(245, 247, 244, 0.82);
    z-index: 0;
}

.restaurant-testimonial-section .container {
    position: relative;
    z-index: 1;
}

.restaurant-gallery-section {
    background-color: #f5f7f4;
}

.restaurant-gallery-section .gallery-img {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(76, 59, 58, 0.1);
}

.restaurant-gallery-section .gallery-img img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.restaurant-gallery-section .gallery-link {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #97ca7b;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.restaurant-gallery-section .gallery-item:hover .gallery-link {
    opacity: 1;
}

.restaurant-gallery-section .gallery-item:hover img {
    transform: scale(1.05);
}

.restaurant-gallery-section .site-title-tagline {
    color: #a88a6e;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    display: block;
    margin-bottom: 10px;
}

.restaurant-gallery-section .site-title {
    color: #4c3b3a;
    font-weight: 700;
    font-size: 42px;
    margin-bottom: 20px;
}

.restaurant-gallery-section .highlight {
    color: #97ca7b;
}

.restaurant-gallery-section .gallery-intro {
    color: #4c3b3a;
    max-width: 800px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.7;
}

.restaurant-stats-section {
    background-color: #4c3b3a;
    background-image: var(--restaurant-stats-bg);
    background-size: cover;
    background-position: center;
}

.restaurant-stats-section .counter-info-top {
    text-align: center;
    margin-bottom: 40px;
}

.restaurant-stats-section .site-title {
    color: #ffffff;
    margin-bottom: 0;
}

.restaurant-stats-section .counter-grid-row {
    justify-content: center;
    position: relative;
}

.restaurant-stats-section .counter-grid-row > div {
    display: flex;
}

.restaurant-stats-section .counter-box {
    background: #ffffff;
    border-radius: 18px;
    padding: 26px 22px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 18px;
    min-height: 158px;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 0 1px rgba(151, 202, 123, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.restaurant-stats-section .counter-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(151, 202, 123, 0.3);
}

.restaurant-stats-section .counter-box::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(151, 202, 123, 0.4) 0%, rgba(168, 138, 110, 0.2) 50%, rgba(151, 202, 123, 0.4) 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.restaurant-stats-section .counter-box:hover::before {
    opacity: 1;
}

.restaurant-stats-section .counter-box .icon {
    flex: 0 0 78px;
    width: 78px;
    height: 78px;
    border: 2px dashed #b7d79d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.restaurant-stats-section .counter-box .icon::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(151, 202, 123, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.restaurant-stats-section .counter-box .icon img {
    max-width: 42px;
    max-height: 42px;
    position: relative;
    z-index: 1;
}

.restaurant-stats-section .counter-content {
    flex: 1 1 auto;
}

.restaurant-stats-section .counter-content .counter-info {
    display: flex;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 4px 8px;
    line-height: 1;
    margin-bottom: 10px;
}

.restaurant-stats-section .counter-content .counter,
.restaurant-stats-section .counter-content .counter-unit {
    font-size: 54px;
    font-weight: 700;
    color: #4c3b3a;
}

.restaurant-stats-section .counter-content .counter-static {
    font-size: clamp(2rem, 4vw, 3.375rem);
    font-weight: 700;
    color: #4c3b3a;
    line-height: 1.05;
    word-break: break-word;
}

.restaurant-stats-section .counter-content .counter-prefix,
.restaurant-stats-section .counter-content .counter-suffix {
    font-size: 22px;
    font-weight: 700;
    color: #6b5a58;
    line-height: 1.2;
}

.restaurant-stats-section .counter-content .counter-unit {
    font-size: 34px;
    line-height: 1.1;
}

.restaurant-stats-section .counter-content .title {
    color: #4c3b3a;
    font-size: 18px;
    line-height: 1.25;
    margin: 0;
}

.restaurant-stats-section .counter-detail {
    color: #6b5a58;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 10px 0 0;
}

.restaurant-stats-section .deco-shape {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}

.restaurant-stats-section .deco-shape-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(151, 202, 123, 0.12) 0%, transparent 70%);
    top: -80px;
    left: -60px;
    animation: restaurantStatsFloatShape 8s ease-in-out infinite;
}

.restaurant-stats-section .deco-shape-2 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(168, 138, 110, 0.1) 0%, transparent 70%);
    bottom: -60px;
    right: -40px;
    animation: restaurantStatsFloatShape 10s ease-in-out infinite reverse;
}

.restaurant-stats-section .deco-shape-3 {
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(151, 202, 123, 0.08) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: restaurantStatsPulseShape 6s ease-in-out infinite;
}

.restaurant-stats-section .deco-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(151, 202, 123, 0.08) 1px, transparent 1px);
    background-size: 24px 24px;
    z-index: 0;
    pointer-events: none;
}

@keyframes restaurantStatsFloatShape {
    0%,
    100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(1.05);
    }
}

@keyframes restaurantStatsPulseShape {
    0%,
    100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.restaurant-cta-section {
    background-image: var(--restaurant-cta-bg);
}

.restaurant-cta-section .cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2.5rem;
}

.restaurant-cta-section .theme-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.restaurant-cta-section .btn-primary {
    background-color: #97ca7b;
    color: #ffffff;
    border: 2px solid #97ca7b;
}

.restaurant-cta-section .btn-primary:hover {
    background-color: #7ab862;
    border-color: #7ab862;
    color: #ffffff;
}

.restaurant-cta-section .btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.restaurant-cta-section .btn-secondary:hover {
    background-color: #ffffff;
    color: #4c3b3a;
}

.restaurant-cta-section h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.restaurant-cta-section p {
    font-size: 1.125rem;
    opacity: 0.95;
    line-height: 1.6;
}

@media (max-width: 1199.98px) {
    .restaurant-stats-section .counter-content .counter,
    .restaurant-stats-section .counter-content .counter-unit {
        font-size: 44px;
    }

    .restaurant-stats-section .counter-content .counter-unit {
        font-size: 28px;
    }

    .restaurant-stats-section .counter-content .counter-prefix,
    .restaurant-stats-section .counter-content .counter-suffix {
        font-size: 18px;
    }

    .restaurant-stats-section .deco-shape-1 {
        width: 220px;
        height: 220px;
    }

    .restaurant-stats-section .deco-shape-2 {
        width: 180px;
        height: 180px;
    }
}

@media (max-width: 991.98px) {
    .restaurant-hero-section .restaurant-hero-media {
        min-height: 580px;
    }

    .restaurant-stats-section .counter-box {
        min-height: 140px;
        padding: 22px 18px;
    }
}

@media (max-width: 768px) {
    .restaurant-hero-section .restaurant-hero-media {
        min-height: 520px;
    }

    .restaurant-hero-section .hero-btn {
        flex-direction: column;
        align-items: center;
    }

    .restaurant-hero-section .hero-trust-bar {
        gap: 14px;
    }

    .restaurant-hero-section .container {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .restaurant-hero-section .hero-content {
        padding: 28px 20px;
    }
}

.listing-hero {
    background: var(--color-gray);
    padding: 120px 0 40px;
}

.listing-breadcrumb {
    font-size: 14px;
    margin-bottom: 16px;
    color: var(--body-text-color);
}

.listing-breadcrumb a {
    color: var(--body-text-color);
    text-decoration: none;
}

.listing-breadcrumb a:hover {
    color: var(--theme-color);
}

.listing-breadcrumb i {
    font-size: 10px;
    margin: 0 8px;
    opacity: 0.5;
}

.listing-page-title {
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.listing-hero p {
    font-size: 17px;
    color: var(--body-text-color);
    max-width: 600px;
    margin-bottom: 0;
}

.listing-filters {
    background: #fff;
    border-bottom: 1px solid rgba(76, 59, 58, 0.08);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 12px rgba(76, 59, 58, 0.04);
}

.filter-bar {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.filter-field {
    flex: 1;
    min-width: 160px;
}

.filter-field select,
.filter-field input {
    width: 100%;
    padding: 10px 16px;
    border: 2px solid rgba(76, 59, 58, 0.1);
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-dark);
    background: #fff;
    font-family: var(--body-font);
    outline: none;
    transition: border-color 0.2s;
    -webkit-appearance: none;
    appearance: none;
}

.filter-field select,
.filter-sort select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%234c3b3a' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

.filter-field select:focus,
.filter-field input:focus {
    border-color: var(--theme-color);
}

.filter-sort {
    min-width: 180px;
}

.filter-sort select {
    width: 100%;
    padding: 10px 16px;
    border: 2px solid rgba(76, 59, 58, 0.1);
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-dark);
    background-color: #fff;
    font-family: var(--body-font);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.filter-actions {
    display: flex;
    align-items: stretch;
}

.filter-submit {
    min-width: 124px;
    border: none;
    border-radius: 10px;
    background: var(--theme-color);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    padding: 0 20px;
    transition: background 0.2s ease, transform 0.2s ease;
}

.filter-submit:hover {
    background: var(--color-dark);
    transform: translateY(-1px);
}

.filter-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
}

.filter-results-count {
    font-size: 14px;
    color: var(--body-text-color);
}

.filter-results-count strong {
    color: var(--color-dark);
}

.filter-clear {
    color: var(--theme-color);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.filter-clear:hover {
    color: var(--color-dark);
}

.filter-view-toggles {
    display: flex;
    gap: 8px;
}

.filter-view-btn {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 2px solid rgba(76, 59, 58, 0.1);
    background: #fff;
    color: var(--body-text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
}

.filter-view-btn.active,
.filter-view-btn:hover {
    border-color: var(--theme-color);
    color: var(--theme-color);
    background: rgba(151, 202, 123, 0.08);
}

.listing-grid-area {
    padding: 48px 0 80px;
    background: var(--color-gray);
}

.listing-card {
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 16px rgba(76, 59, 58, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
}

.listing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(76, 59, 58, 0.1);
}

.listing-card-img {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.listing-card-img > a {
    display: block;
    height: 100%;
}

.listing-card-img > a > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.listing-card:hover .listing-card-img > a > img {
    transform: scale(1.04);
}

.listing-card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.listing-card-badge.badge-popular {
    background: var(--theme-color);
    color: #fff;
}

.listing-card-badge.badge-premium {
    background: var(--theme-color2);
    color: #fff;
}

.listing-card-badge.badge-affordable {
    background: #4a9eda;
    color: #fff;
}

.listing-card-fav {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--body-text-color);
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
}

.listing-card-fav:hover {
    background: #fff;
    color: #e74c3c;
}

.listing-card-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.listing-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 4px;
}

.listing-card-title-group {
    min-width: 0;
}

.listing-card-logo {
    position: absolute;
    left: 16px;
    bottom: 12px;
    z-index: 2;
    width: 140px;
    height: 64px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 10px 26px rgba(76, 59, 58, 0.18);
    border: 1px solid rgba(76, 59, 58, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 9px 14px;
}

.listing-card-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.listing-card-name {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
    min-width: 0;
}

.listing-card-name a {
    color: inherit;
    text-decoration: none;
}

.listing-card-name a:hover {
    color: var(--theme-color);
}

.listing-card-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
    margin-left: 12px;
}

.listing-card-rating i {
    color: #f5a623;
    font-size: 13px;
}

.listing-card-rating span {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-dark);
}

.listing-card-rating small {
    font-size: 12px;
    color: var(--body-text-color);
}

.listing-card-location {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
    font-size: 14px;
    color: var(--body-text-color);
    margin-bottom: 8px;
}

.listing-card-location span {
    display: inline-flex;
    align-items: center;
}

.listing-card-location i {
    margin-right: 4px;
    font-size: 12px;
    color: var(--theme-color);
}

.listing-card-desc {
    font-size: 14px;
    color: var(--body-text-color);
    line-height: 1.5;
    margin-bottom: 12px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.listing-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 16px;
}

.listing-tag {
    font-size: 12px;
    padding: 3px 10px;
    border-radius: 999px;
    background: var(--color-gray);
    color: var(--color-dark);
    font-weight: 500;
}

.listing-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid rgba(76, 59, 58, 0.06);
    margin-top: auto;
}

.listing-card-fact {
    font-size: 18px;
    font-weight: 800;
    color: var(--color-dark);
}

.listing-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 20px;
    border-radius: 999px;
    background: var(--theme-color);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s;
}

.listing-card-cta:hover {
    background: var(--color-dark);
    color: #fff;
}

.listing-card-capacity {
    font-size: 13px;
    color: var(--body-text-color);
    margin-top: 4px;
}

.listing-card-capacity i {
    margin-right: 4px;
    font-size: 12px;
}

.listing-seo-area {
    padding: 60px 0;
    background: #fff;
}

.listing-seo-area h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.listing-seo-area p {
    color: var(--body-text-color);
    line-height: 1.7;
    max-width: 800px;
}

.listing-empty-state {
    background: #fff;
    border-radius: 18px;
    padding: 48px 36px;
    text-align: center;
    box-shadow: 0 2px 16px rgba(76, 59, 58, 0.05);
}

.listing-empty-state h3 {
    margin-bottom: 12px;
}

.listing-empty-state p {
    margin: 0 auto;
    max-width: 560px;
    color: var(--body-text-color);
}

@media (max-width: 991px) {
    .listing-hero {
        padding: 100px 0 30px;
    }

    .listing-page-title {
        font-size: 28px;
    }

    .restaurant-menu-card .listing-card-cta {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .filter-bar {
        flex-direction: column;
    }

    .filter-field,
    .filter-sort,
    .filter-actions {
        min-width: 100%;
    }

    .filter-submit {
        width: 100%;
        min-height: 46px;
    }

    .listing-card-img {
        height: 180px;
    }

    .listing-page-title {
        font-size: 24px;
    }

    .filter-meta,
    .listing-card-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .restaurant-menu-facts {
        width: 100%;
    }
}
