/* =========================================
   غذا و قدر — Ghazaghadar.ir
   Complete Redesign v2.0
   ========================================= */

/* --- Design Tokens --- */
:root {
    --c-primary: #059669;
    --c-primary-light: #d1fae5;
    --c-primary-dark: #047857;
    --c-accent: #d97706;
    --c-accent-light: #fef3c7;
    --c-text: #111827;
    --c-text-secondary: #6b7280;
    --c-text-muted: #9ca3af;
    --c-bg: #ffffff;
    --c-bg-alt: #f9fafb;
    --c-bg-warm: #fffbeb;
    --c-border: #e5e7eb;
    --c-border-light: #f3f4f6;
    --c-open: #10b981;
    --c-closed: #ef4444;
    --c-star: #f59e0b;
    --shadow-sm: 0 1px 2px rgba(0,0,0,.05);
    --shadow-md: 0 4px 12px rgba(0,0,0,.07);
    --shadow-lg: 0 10px 30px rgba(0,0,0,.1);
    --shadow-xl: 0 20px 50px rgba(0,0,0,.14);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-full: 999px;
}

/* =========================================
   ۱. RTL و پایه (بدون قانون هسته‌ای)
   ========================================= */
html {
    scroll-behavior: smooth;
}

/* RTL هدفمند — فقط المان‌هایی که نیاز دارن */
body {
    direction: rtl;
    text-align: right;
}

.entry-title,
.entry-content,
.post-content,
.comment-form,
#respond {
    direction: rtl;
    text-align: right;
}

.entry-content { text-align: justify; }

/* ===== صفحه بلاگ تکی ===== */

/* متای بالای پست */
.entry-meta {
    direction: rtl;
    text-align: right;
    font-size: 13px;
    color: var(--c-text-muted);
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 16px;
}

.entry-meta .posted-by,
.entry-meta .posted-on,
.entry-meta .cat-links {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.entry-meta a {
    color: var(--c-primary);
    text-decoration: none;
}

/* حذف Leave a Comment لینک از متا */
.entry-meta .comments-link {
    display: none;
}

/* Related Posts عنوان */
.ast-related-posts-title-section .ast-related-posts-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--c-text);
    text-align: right;
}

/* Related Posts کارت‌ها */
.ast-related-posts-inner .ast-related-post {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--c-border);
}

.ast-related-posts-inner .ast-related-post img {
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

/* حذف meta اضافی related */
.ast-related-post .entry-meta .comments-link,
.ast-related-post .entry-meta .posted-by {
    display: none;
}

/* Post Comment دکمه */
.comment-form .submit,
#submit {
    font-family: inherit;
}

/* PREVIOUS/NEXT navigation */
.post-navigation .nav-links {
    direction: rtl;
}

.post-navigation .nav-previous a::before { content: '→ '; }
.post-navigation .nav-next a::after { content: ' ←'; }

/* Astra overrides */
.alignleft { float: right; }
.alignright { float: left; }
.sub-menu { right: 0; left: auto; }

.ast-container {
    max-width: 1320px;
    margin: 0 auto;
    padding-left: 16px;
    padding-right: 16px;
}

/* =========================================
   ۲. صفحه اصلی — هیرو
   ========================================= */
.gz-homepage { direction: rtl; }

.gz-hero {
    position: relative;
    padding: 70px 20px 56px;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(160deg, #064e3b 0%, #047857 35%, #059669 70%, #10b981 100%);
}

.gz-hero-bg {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 80%, rgba(255,255,255,.06) 0%, transparent 50%),
                       radial-gradient(circle at 80% 20%, rgba(255,255,255,.04) 0%, transparent 50%);
}

.gz-hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
    margin: 0 auto;
}

.gz-hero-title {
    font-size: 34px;
    font-weight: 900;
    color: #fff;
    margin: 0 0 12px;
    line-height: 1.5;
    text-align: center;
}

.gz-hero-subtitle {
    font-size: 16px;
    color: rgba(255,255,255,.8);
    margin: 0 0 32px;
    text-align: center;
}

/* --- فرم جستجو --- */
.gz-search-wrap {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 6px;
    box-shadow: var(--shadow-xl), 0 0 0 1px rgba(255,255,255,.1);
    max-width: 580px;
    margin: 0 auto;
}

.gz-search-icon {
    margin: 0 12px;
    color: var(--c-text-muted);
    flex-shrink: 0;
}

.gz-search-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 14px 8px;
    font-size: 15px;
    background: transparent;
    color: var(--c-text);
    direction: rtl;
    text-align: right;
}

.gz-search-input::placeholder { color: #d1d5db; }

.gz-search-btn {
    background: var(--c-primary);
    color: #fff;
    border: none;
    border-radius: var(--radius-md);
    padding: 13px 30px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: background .2s, transform .15s;
    white-space: nowrap;
}

.gz-search-btn:hover {
    background: var(--c-primary-dark);
    transform: translateY(-1px);
}

/* --- تگ‌های پرجستجو --- */
.gz-hero-tags {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}

.gz-tag-label { color: rgba(255,255,255,.6); font-size: 13px; }

.gz-tag {
    display: inline-block;
    padding: 5px 14px;
    border-radius: var(--radius-full);
    background: rgba(255,255,255,.12);
    color: #fff;
    font-size: 13px;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,.2);
    transition: all .2s;
    text-align: center;
}

.gz-tag:hover {
    background: rgba(255,255,255,.25);
    color: #fff;
}

/* =========================================
   ۳. بخش‌های عمومی صفحه اصلی
   ========================================= */
.gz-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 16px;
}

.gz-section {
    padding: 48px 0;
    background: var(--c-bg);
}

.gz-section-gray { background: var(--c-bg-alt); }

.gz-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
    direction: rtl;
}

.gz-section-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--c-text);
    margin: 0;
}

.gz-section-desc {
    font-size: 14px;
    color: var(--c-text-muted);
    margin: 0;
}

.gz-section-link {
    color: var(--c-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
    transition: color .2s;
}

.gz-section-link:hover { color: var(--c-primary-dark); }

/* --- شهرهای محبوب --- */
.gz-cities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.gz-city-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 28px 16px;
    background: var(--c-bg);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    text-decoration: none;
    color: inherit;
    transition: all .25s ease;
    box-shadow: var(--shadow-sm);
}

.gz-city-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--c-primary);
    color: inherit;
}

.gz-city-icon { font-size: 32px; margin-bottom: 10px; display: block; }

.gz-city-name {
    font-size: 17px;
    font-weight: 700;
    color: var(--c-text);
    margin: 0 0 6px;
}

.gz-city-count {
    font-size: 13px;
    color: var(--c-text-secondary);
    background: var(--c-bg-alt);
    padding: 3px 12px;
    border-radius: var(--radius-full);
}

/* --- اسلایدر --- */
.gz-slider {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding: 8px 4px 24px;
    direction: rtl;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.gz-slider::-webkit-scrollbar { display: none; }

.gz-slider-item {
    min-width: 300px;
    max-width: 300px;
    flex-shrink: 0;
    scroll-snap-align: start;
}

/* --- بلاگ گرید --- */
.gz-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.gz-blog-card {
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--c-bg);
    border: 1px solid var(--c-border);
    box-shadow: var(--shadow-sm);
    transition: all .3s ease;
    display: flex;
    flex-direction: column;
}

.gz-blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--c-primary);
}

.gz-blog-card-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* تصویر */
.gz-blog-thumb {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.gz-blog-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}

.gz-blog-card:hover .gz-blog-thumb img { transform: scale(1.08); }

.gz-blog-no-thumb {
    height: 100%;
    background: linear-gradient(135deg, var(--c-primary-light), var(--c-bg-alt));
}

/* overlay + تاریخ float */
.gz-blog-thumb-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.35) 0%, transparent 50%);
    pointer-events: none;
}

.gz-blog-date-float {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(6px);
    color: var(--c-text);
    font-size: 12px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: var(--radius-sm);
    z-index: 1;
}

/* محتوا */
.gz-blog-content {
    padding: 18px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.gz-blog-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--c-text);
    margin: 0 0 8px;
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.gz-blog-excerpt {
    font-size: 13px;
    color: var(--c-text-muted);
    line-height: 1.7;
    margin: 0 0 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.gz-blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid var(--c-border-light);
    font-size: 12px;
}

.gz-blog-read-time {
    color: var(--c-text-muted);
}

.gz-blog-read-more {
    color: var(--c-primary);
    font-weight: 600;
    transition: color .2s;
}

.gz-blog-card:hover .gz-blog-read-more {
    color: var(--c-primary-dark);
}

/* legacy — hide if old template used */
.gz-blog-date {
    font-size: 12px;
    color: var(--c-accent);
    background: var(--c-accent-light);
    padding: 3px 10px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    display: inline-block;
}

/* =========================================
   ۴. کارت رستوران (ریدیزاین کامل)
   ========================================= */
.custom-restaurant-card {
    background: var(--c-bg);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    direction: rtl;
    text-align: right;
    transition: all .25s ease;
    box-shadow: var(--shadow-sm);
}

.custom-restaurant-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

/* تصویر بالای کارت */
.card-hero-image {
    position: relative;
    height: 180px;
    overflow: hidden;
    background: var(--c-bg-alt);
}

.card-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .3s;
}

.custom-restaurant-card:hover .card-hero-image img {
    transform: scale(1.05);
}

.card-hero-no-image {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--c-primary-light), #ecfdf5);
    color: var(--c-primary);
    font-size: 14px;
}

/* بج‌ها روی تصویر */
.card-hero-badges {
    position: absolute;
    top: 12px;
    right: 12px;
    left: 12px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.card-status-badge {
    padding: 4px 10px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    backdrop-filter: blur(8px);
}

.card-status-badge.open {
    background: rgba(16,185,129,.9);
    color: #fff;
}

.card-status-badge.closed {
    background: rgba(239,68,68,.85);
    color: #fff;
}

.card-hero-badges-left {
    display: flex;
    align-items: center;
    gap: 6px;
}

.card-photo-count {
    padding: 4px 10px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    background: rgba(0,0,0,.6);
    backdrop-filter: blur(8px);
    color: #fff;
}

.card-rating-badge {
    display: flex;
    align-items: center;
    gap: 3px;
    background: rgba(0,0,0,.6);
    backdrop-filter: blur(8px);
    color: #fff;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 700;
}

.card-rating-badge .star-icon { color: var(--c-star); }

/* بدنه کارت */
.card-body {
    padding: 16px;
}

.card-title {
    margin: 0 0 8px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
}

.card-title a {
    color: var(--c-text);
    text-decoration: none;
}

.card-title a:hover { color: var(--c-primary); }

.card-meta-row {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--c-text-secondary);
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.card-category {
    color: var(--c-accent);
    font-weight: 600;
}

.card-location {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    color: var(--c-text-muted);
}

.card-review-count {
    color: var(--c-text-muted);
    font-size: 12px;
}

/* دکمه کارت */
.card-action {
    display: block;
    text-align: center;
    padding: 10px;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all .2s;
    background: var(--c-primary);
    color: #fff;
}

.card-action:hover {
    background: var(--c-primary-dark);
    color: #fff;
    transform: translateY(-1px);
}

/* =========================================
   ۵. آرشیو و تاکسونومی
   ========================================= */
.gz-archive-header {
    text-align: right;
    padding: 36px 0 16px;
}

.gz-archive-title {
    font-size: 28px;
    font-weight: 900;
    color: var(--c-text);
    margin: 0 0 8px;
}

.gz-archive-desc {
    font-size: 15px;
    color: var(--c-text-secondary);
    margin-top: 8px;
}

.gz-cities-grid--archive {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.gz-city-card--large {
    padding: 36px 20px;
    min-height: 160px;
}

.gz-city-card--large .gz-city-icon { font-size: 36px; }
.gz-city-card--large .gz-city-name { font-size: 20px; }

.gz-empty {
    text-align: center;
    width: 100%;
    color: var(--c-text-muted);
    padding: 40px;
    font-size: 15px;
}

/* --- گرید آرشیو رستوران --- */
.restaurant-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 8px 0;
}

/* =========================================
   ۶. صفحه‌بندی
   ========================================= */
.restaurant-pagination {
    margin: 40px 0;
    text-align: center;
}

.restaurant-pagination .nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.restaurant-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 14px;
    border-radius: var(--radius-md);
    background: var(--c-bg);
    border: 1px solid var(--c-border);
    color: var(--c-text);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all .2s ease;
}

.restaurant-pagination .page-numbers.current {
    background: var(--c-primary);
    border-color: var(--c-primary);
    color: #fff;
}

.restaurant-pagination a.page-numbers:hover {
    background: var(--c-primary-light);
    border-color: var(--c-primary);
    color: var(--c-primary);
}

/* =========================================
   ۷. صفحه تکی رستوران — Hero
   ========================================= */
.restaurant-page { direction: rtl; }

.restaurant-hero {
    position: relative;
    padding: 40px 0 48px;
    margin-bottom: 12px;
    color: #fff;
    background-size: cover;
    background-position: center;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.restaurant-hero.no-image {
    background: linear-gradient(135deg, #059669, #10b981, #d97706);
}

.restaurant-hero .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.65) 0%, rgba(0,0,0,.2) 60%, rgba(0,0,0,.3) 100%);
}

.restaurant-hero .hero-content {
    position: relative;
    z-index: 2;
}

.restaurant-title {
    font-size: 28px;
    margin: 0 0 10px;
    color: #fff;
    display: inline-block;
    background: rgba(0,0,0,.7);
    backdrop-filter: blur(8px);
    padding: 10px 18px;
    border-radius: var(--radius-md);
    line-height: 1.3;
}

.restaurant-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #fff;
    background: rgba(0,0,0,.45);
    backdrop-filter: blur(6px);
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    width: fit-content;
    max-width: 100%;
    margin-bottom: 16px;
}

.hero-content .current-status {
    order: -1;
    margin: 0;
    white-space: nowrap;
}

.meta-reviews {
    font-size: 13px;
    opacity: .8;
}

.meta-pill {
    background: rgba(255,255,255,.12);
    border-radius: var(--radius-full);
    padding: 3px 10px;
    font-size: 13px;
}

.meta-separator { margin: 0 2px; opacity: .5; }
.meta-rating { font-weight: 600; }

/* --- دکمه‌های Hero --- */
.hero-actions {
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 18px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 500;
    border: none;
    text-decoration: none;
    cursor: pointer;
    transition: all .2s ease;
}

.btn-call { background: #fff; color: var(--c-primary); font-weight: 700; }
.btn-direction, .btn-balad { background: #fff; color: var(--c-text); }

.btn-call:hover, .btn-direction:hover, .btn-balad:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

.btn-ghost {
    background: rgba(255,255,255,.12);
    color: #fff;
    border: 1px solid rgba(255,255,255,.3);
}
.btn-ghost:hover { background: rgba(255,255,255,.22); }

.btn-comment {
    background: var(--c-accent);
    color: #fff;
    font-weight: 700;
}
.btn-comment:hover {
    background: #b45309;
    color: #fff;
}

/* =========================================
   ۸. چیدمان صفحه تکی
   ========================================= */
.layout-wrap {
    display: grid;
    grid-template-columns: minmax(0, 2.2fr) minmax(0, 1fr);
    gap: 24px;
    margin: 24px 0 40px;
}

.info-card,
.side-card {
    background: var(--c-bg);
    border-radius: var(--radius-lg);
    padding: 20px;
    margin-bottom: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--c-border-light);
}

.info-card h2,
.side-card h2,
.side-card h3 {
    margin: 0 0 12px;
    font-size: 17px;
    color: var(--c-text);
    font-weight: 700;
}

.info-card p, .faq-block p, .faq-block li, .ai-summary-text { line-height: 1.9; }
.info-meta-line { margin-top: 6px; font-size: 14px; color: var(--c-text-secondary); }

/* --- گالری استریپ (صفحه تکی) --- */
.gallery-strip {
    display: flex;
    direction: ltr;
    gap: 10px;
    overflow-x: auto;
    padding: 16px 0;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
}

.gallery-strip::-webkit-scrollbar { display: none; }

.gallery-strip-item {
    flex: 0 0 220px;
    height: 160px;
    min-width: 220px;
    border-radius: var(--radius-md);
    overflow: hidden;
    scroll-snap-align: start;
    display: block;
    border: 2px solid var(--c-border-light);
    transition: border-color .2s, transform .2s;
}

.gallery-strip-item:hover {
    border-color: var(--c-primary);
    transform: translateY(-2px);
}

.gallery-strip-item img {
    width: 220px;
    height: 160px;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .gallery-strip-item {
        flex: 0 0 160px;
        height: 120px;
        min-width: 160px;
    }
    .gallery-strip-item img {
        width: 160px;
        height: 120px;
    }
}

/* --- اطلاعات تماس سایدبار --- */
.quick-info-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.quick-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    font-size: 14px;
    color: var(--c-text-secondary);
    border-bottom: 1px solid var(--c-border-light);
}

.quick-info-item:last-child { border-bottom: none; }

.quick-info-item span:first-child {
    width: 36px;
    height: 36px;
    background: var(--c-primary-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 16px;
    text-align: center;
}

.quick-info-item a {
    color: var(--c-text);
    text-decoration: none;
    font-weight: 600;
    transition: color .2s;
}

.quick-info-item a:hover { color: var(--c-primary); }

/* =========================================
   هدر سایت — ریدیزاین کامل
   ========================================= */

/* کانتینر اصلی هدر */
.ast-primary-header-bar,
.ast-above-header-bar,
.ast-below-header-bar,
.main-header-bar,
.ast-header-break-point .main-header-bar,
.site-header,
#ast-desktop-header .ast-above-header,
#ast-desktop-header .ast-below-header {
    background: #fff;
    border-bottom: none;
    box-shadow: 0 2px 20px rgba(0,0,0,.06);
}

/* sticky */
.site-header {
    position: sticky;
    top: 0;
    z-index: 999;
}

/* padding داخلی هدر */
.site-primary-header-wrap {
    padding-top: 8px;
    padding-bottom: 8px;
}

/* لوگو */
.site-title a,
.ast-site-title-wrap a {
    color: var(--c-primary);
    font-weight: 800;
}

.custom-logo {
    max-height: 48px;
    width: auto;
}

/* ===== لینک‌های منو ===== */
.main-header-menu .menu-item > .menu-link,
.ast-builder-menu .menu-item > .menu-link {
    color: var(--c-text);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    border: none;
    box-shadow: none;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    transition: color .2s, background .2s;
    position: relative;
}

/* hover */
.main-header-menu .menu-item > .menu-link:hover,
.ast-builder-menu .menu-item > .menu-link:hover {
    color: var(--c-primary);
    background: var(--c-primary-light);
}

/* فعال */
.main-header-menu .current-menu-item > .menu-link,
.main-header-menu .current-menu-ancestor > .menu-link,
.ast-builder-menu .current-menu-item > .menu-link {
    color: var(--c-primary);
    background: var(--c-primary-light);
}

/* فلش dropdown */
.ast-header-navigation-arrow,
.ast-menu-toggle {
    color: var(--c-text-muted);
}

.ast-header-navigation-arrow .ast-arrow-svg {
    width: 10px;
    height: 10px;
}

/* ===== زیرمنو (dropdown) ===== */
.main-header-menu .sub-menu,
.ast-builder-menu .sub-menu {
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 8px 0;
    min-width: 200px;
    margin-top: 4px;
}

.main-header-menu .sub-menu .menu-item > .menu-link,
.ast-builder-menu .sub-menu .menu-item > .menu-link {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--c-text-secondary);
    border-radius: 0;
    transition: color .15s, background .15s, padding-right .15s;
}

.main-header-menu .sub-menu .menu-item > .menu-link:hover,
.ast-builder-menu .sub-menu .menu-item > .menu-link:hover {
    color: var(--c-primary);
    background: var(--c-primary-light);
    padding-right: 24px;
}

/* حذف فلش SVG در زیرمنو */
.sub-menu .menu-link > .ast-icon {
    display: none;
}

/* حذف border اضافی Astra */
.ast-primary-header-bar .ast-builder-menu .menu-item,
.ast-above-header-bar .ast-builder-menu .menu-item {
    border: none;
}

/* ===== آیکون‌های شبکه اجتماعی ===== */
.ast-builder-social-element {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    transition: transform .2s, opacity .2s;
    opacity: .6;
}

.ast-builder-social-element:hover {
    transform: scale(1.15);
    opacity: 1;
}

/* ===== موبایل ===== */
.ast-mobile-menu-trigger-minimal,
.ast-button-wrap .ast-mobile-menu-buttons-minimal,
.ast-mobile-menu-buttons {
    color: var(--c-primary);
}

/* منو موبایل */
.ast-header-break-point .main-header-menu .menu-item > .menu-link,
.ast-header-break-point .ast-builder-menu .menu-item > .menu-link {
    padding: 12px 16px;
    border-bottom: 1px solid var(--c-border-light);
    border-radius: 0;
    font-size: 15px;
}

.ast-header-break-point .main-header-menu .menu-item > .menu-link:hover {
    background: var(--c-primary-light);
}

/* =========================================
   فوتر سفارشی
   ========================================= */
.gz-footer {
    background: #0f172a;
    color: #94a3b8;
    direction: rtl;
    text-align: right;
}

.gz-footer-main {
    max-width: 1320px;
    margin: 0 auto;
    padding: 56px 24px 40px;
}

.gz-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
}

.gz-footer-heading {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--c-primary);
    display: inline-block;
}

.gz-footer-about {
    font-size: 14px;
    line-height: 1.9;
    color: #94a3b8;
    margin: 0 0 20px;
}

/* شبکه اجتماعی */
.gz-footer-social {
    display: flex;
    gap: 12px;
}

.gz-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    color: #94a3b8;
    transition: all .2s;
    text-decoration: none;
    border: none;
    box-shadow: none;
}

.gz-social-link:hover {
    background: var(--c-primary);
    color: #fff;
    transform: translateY(-2px);
}

/* لینک‌ها */
.gz-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gz-footer-links li {
    margin-bottom: 10px;
}

.gz-footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 14px;
    transition: color .2s, padding-right .2s;
    display: inline-block;
    border: none;
    box-shadow: none;
}

.gz-footer-links a:hover {
    color: var(--c-primary);
    padding-right: 4px;
}

/* خط پایین */
.gz-footer-bottom {
    border-top: 1px solid #1e293b;
    padding: 20px 24px;
    text-align: center;
    font-size: 13px;
    color: #64748b;
}

.gz-footer-bottom strong {
    color: var(--c-primary);
}

/* ریسپانسیو */
@media (max-width: 900px) {
    .gz-footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

@media (max-width: 480px) {
    .gz-footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .gz-footer-main { padding: 40px 16px 32px; }
}

/* حذف فوتر Astra + دکمه scroll to top */
.site-footer,
.ast-footer-overlay,
.ast-small-footer {
    display: none;
}

#ast-scroll-top,
.ast-scroll-top-icon,
a#ast-scroll-top {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* =========================================
   بخش نظرات — قالب سفارشی
   ========================================= */
.gz-comments-area {
    direction: rtl;
    text-align: right;
}

/* تیتر Astra رو مخفی کن */
.gz-comments-area .comments-title,
.gz-comments-area h3.comments-title {
    display: none;
}

.gz-comments-count {
    font-size: 14px;
    font-weight: 600;
    color: var(--c-text-secondary);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--c-border-light);
}

.gz-comment-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gz-comment {
    margin-bottom: 0;
}

.gz-comment-inner {
    padding: 16px 0;
    border-bottom: 1px solid var(--c-border-light);
}

.gz-comment:last-child .gz-comment-inner {
    border-bottom: none;
}

.gz-comment-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.gz-comment-avatar img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--c-border-light);
}

.gz-comment-author-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.gz-comment-author {
    font-size: 14px;
    font-weight: 700;
    color: var(--c-text);
}

.gz-comment-date {
    font-size: 12px;
    color: var(--c-text-muted);
}

.gz-comment-rating {
    margin-bottom: 6px;
    font-size: 18px;
    line-height: 1;
}

.gz-star.filled { color: var(--c-star); }
.gz-star { color: var(--c-border); }

.gz-comment-body {
    font-size: 14px;
    line-height: 1.8;
    color: var(--c-text-secondary);
}

.gz-comment-body p {
    margin: 0 0 4px;
}

/* حذف rating تکراری از فیلتر comment_text */
.gz-comment-body .user-rating-display {
    display: none;
}

.gz-comment-actions {
    margin-top: 8px;
}

.gz-comment-actions .comment-reply-link {
    font-size: 13px;
    color: var(--c-primary);
    text-decoration: none;
    font-weight: 600;
    transition: color .2s;
    border: none;
    box-shadow: none;
    background: none;
}

.gz-comment-actions .comment-reply-link:hover {
    color: var(--c-primary-dark);
}

.gz-comment-nav {
    display: flex;
    justify-content: space-between;
    padding: 16px 0;
    font-size: 14px;
}

.gz-comment-nav a {
    color: var(--c-primary);
    text-decoration: none;
}

.gz-comments-closed {
    text-align: center;
    color: var(--c-text-muted);
    padding: 20px;
    font-size: 14px;
}

#respond {
    direction: rtl;
    text-align: right;
    background: var(--c-bg-alt);
    padding: 28px;
    border-radius: var(--radius-lg);
    margin-top: 24px;
    border: 1px solid var(--c-border-light);
}

#respond .comment-reply-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--c-text);
    margin: 0 0 20px;
}

.comment-form label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--c-text);
    margin-bottom: 6px;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    background: var(--c-bg);
    direction: rtl;
    text-align: right;
    font-size: 14px;
    transition: border-color .2s, box-shadow .2s;
}

.comment-form input:focus,
.comment-form textarea:focus {
    border-color: var(--c-primary);
    box-shadow: 0 0 0 3px rgba(5,150,105,.1);
    outline: none;
}

.form-submit .submit {
    background: var(--c-primary);
    color: #fff;
    padding: 12px 32px;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    font-weight: 700;
    font-size: 15px;
    transition: background .2s, transform .15s;
}

.form-submit .submit:hover {
    background: var(--c-primary-dark);
    transform: translateY(-1px);
}

.star-rating-input label {
    font-size: 32px;
    color: var(--c-border);
    cursor: pointer;
    margin: 0 1px;
    transition: color .15s;
}

.star-rating-input input:checked ~ label,
.star-rating-input label:hover,
.star-rating-input label:hover ~ label {
    color: var(--c-star);
}

.user-rating-display .star.filled { color: var(--c-star); }
.user-rating-display .star.empty { color: var(--c-border); }

/* =========================================
   رستوران‌های پیشنهادی — بهبود
   ========================================= */
.nearby-section h2 { margin-bottom: 16px; }

.nearby-card {
    flex: 0 0 230px;
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    background: var(--c-bg);
    transition: all .25s ease;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
}

.nearby-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--c-primary);
    color: inherit;
}

.nearby-img-wrap {
    position: relative;
    height: 150px;
    background: var(--c-bg-alt);
    overflow: hidden;
}

.nearby-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s;
}

.nearby-card:hover .nearby-img-wrap img {
    transform: scale(1.05);
}

.nearby-rating {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0,0,0,.6);
    backdrop-filter: blur(6px);
    padding: 3px 10px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 700;
    color: #fff;
}

.nearby-content {
    padding: 14px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.nearby-title {
    font-size: 15px;
    font-weight: 700;
    margin: 0;
    line-height: 1.5;
    color: var(--c-text);
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.nearby-meta-item {
    font-size: 13px;
    color: var(--c-text-muted);
    display: flex;
    align-items: center;
    gap: 4px;
}

.nearby-category {
    color: var(--c-accent);
    font-weight: 600;
}

.nearby-view-btn {
    display: block;
    text-align: center;
    margin-top: auto;
    padding: 8px 0;
    font-size: 13px;
    font-weight: 600;
    color: var(--c-primary);
    border-top: 1px solid var(--c-border-light);
    transition: color .2s;
}

.nearby-card:hover .nearby-view-btn {
    color: var(--c-primary-dark);
}

.summary-title {
    font-size: 16px;
    font-weight: 700;
    margin: 0;
    color: var(--c-text);
}

/* نقشه */
.restaurant-map iframe {
    width: 100%;
    min-height: 260px;
    border: 0;
    border-radius: var(--radius-md);
}

/* =========================================
   ۹. گالری و لایت‌باکس
   ========================================= */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.gallery-item {
    overflow: hidden;
    border-radius: var(--radius-md);
}

.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    transition: transform .25s ease;
}

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

/* لایت‌باکس مدرن */
.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 99999;
    direction: ltr;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease, visibility .3s ease;
}

.gallery-lightbox.is-open {
    opacity: 1;
    visibility: visible;
}

.gallery-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.92);
    backdrop-filter: blur(8px);
}

.gallery-lightbox-content {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 16px 40px;
}

.gallery-lightbox-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: var(--radius-md);
    box-shadow: 0 0 60px rgba(0,0,0,.4);
    transition: transform .25s ease;
}

/* دکمه بستن */
.gallery-lightbox-close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 10;
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.15);
    color: #fff;
    font-size: 20px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s, transform .2s;
}

.gallery-lightbox-close:hover {
    background: rgba(255,255,255,.25);
    transform: rotate(90deg);
}

/* فلش‌های ناوبری — روی تصویر */
.gallery-lightbox-prev,
.gallery-lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255,255,255,.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.15);
    color: #fff;
    font-size: 20px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s, transform .15s;
    opacity: .7;
}

.gallery-lightbox-prev:hover,
.gallery-lightbox-next:hover {
    background: rgba(255,255,255,.25);
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

.gallery-lightbox-prev { left: 16px; }
.gallery-lightbox-next { right: 16px; }

@media (max-width: 768px) {
    .gallery-lightbox-prev,
    .gallery-lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    .gallery-lightbox-prev { left: 8px; }
    .gallery-lightbox-next { right: 8px; }
    .gallery-lightbox-content { padding: 50px 8px 30px; }
}

/* =========================================
   ۱۰. امکانات
   ========================================= */
.facilities-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.facility-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    background: var(--c-bg-alt);
    color: var(--c-text-secondary);
    border: 1px solid var(--c-border);
    font-size: 13px;
    font-weight: 500;
    transition: all .2s;
}

.facility-badge:hover {
    background: var(--c-primary-light);
    color: var(--c-primary);
    border-color: var(--c-primary);
}

/* =========================================
   ۱۱. نظرات و امتیازدهی
   ========================================= */
#respond {
    direction: rtl;
    text-align: right;
    background: var(--c-bg-alt);
    padding: 24px;
    border-radius: var(--radius-lg);
    margin-top: 24px;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    background: var(--c-bg);
    direction: rtl;
    text-align: right;
    transition: border-color .2s;
}

.comment-form input:focus,
.comment-form textarea:focus {
    border-color: var(--c-primary);
    outline: none;
}

.form-submit .submit {
    background: var(--c-primary);
    color: #fff;
    padding: 12px 28px;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    font-weight: 700;
    font-size: 15px;
    transition: background .2s;
}

.form-submit .submit:hover { background: var(--c-primary-dark); }

.comment-rating-wrapper {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.star-rating-input {
    display: inline-flex;
    flex-direction: row-reverse;
}

.star-rating-input input { display: none; }

.star-rating-input label {
    font-size: 28px;
    color: #d1d5db;
    cursor: pointer;
    margin: 0 1px;
    transition: color .15s;
}

.star-rating-input input:checked ~ label,
.star-rating-input label:hover,
.star-rating-input label:hover ~ label {
    color: var(--c-star);
}

.user-rating-display {
    color: var(--c-star);
    font-size: 18px;
    margin-bottom: 8px;
}

/* =========================================
   ۱۲. بردکرامب
   ========================================= */
.restaurant-breadcrumbs {
    width: 100%;
    margin-top: 12px;
    margin-bottom: 4px;
    padding: 6px 0;
    font-size: 13px;
    color: var(--c-text-muted);
}

.restaurant-breadcrumbs a {
    text-decoration: none;
    border: none;
    box-shadow: none;
    background: none;
    color: var(--c-text-secondary);
    transition: color .2s;
}

.restaurant-breadcrumbs a:hover { color: var(--c-primary); }

/* =========================================
   ۱۳. ساعات کاری
   ========================================= */
.working-hours-card { padding: 0; overflow: hidden; }

.hours-dropdown { width: 100%; }

.hours-summary {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    cursor: pointer;
    background: var(--c-bg);
    font-weight: 600;
}

.hours-summary::-webkit-details-marker { display: none; }

.summary-left { display: flex; align-items: center; gap: 10px; }
.summary-right { display: flex; align-items: center; gap: 12px; }
.clock-icon { font-size: 1.2em; }

.current-status {
    font-size: 13px;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-weight: 600;
}

.current-status.is-open { background: var(--c-primary-light); color: var(--c-primary-dark); }
.current-status.is-closed { background: #fee2e2; color: var(--c-closed); }

.dropdown-chevron {
    width: 8px; height: 8px;
    border-right: 2px solid var(--c-text-muted);
    border-bottom: 2px solid var(--c-text-muted);
    transform: rotate(45deg);
    transition: transform .3s;
    margin-bottom: 4px;
}

.hours-dropdown[open] .dropdown-chevron {
    transform: rotate(-135deg);
    margin-bottom: -4px;
}

.hours-content {
    background: var(--c-bg-alt);
    padding: 12px 20px 20px;
    border-top: 1px solid var(--c-border-light);
}

.restaurant-hours-list { list-style: none; padding: 0; margin: 0; }

.restaurant-hours-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--c-border-light);
    font-size: 14px;
    color: var(--c-text-secondary);
}

.restaurant-hours-list li:last-child { border-bottom: none; }

.restaurant-hours-list li.is-today {
    color: var(--c-primary-dark);
    font-weight: 700;
}

.today-tag { margin-right: 6px; font-weight: 400; font-size: 12px; opacity: .7; }
.day-time { direction: rtl; text-align: left; }

/* (nearby styles moved to section above) */
.nearby-scroller {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 12px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--c-border) transparent;
}

.nearby-scroller::-webkit-scrollbar { height: 5px; }
.nearby-scroller::-webkit-scrollbar-thumb { background: var(--c-border); border-radius: 3px; }

.nearby-no-img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: var(--c-text-muted);
    font-size: 18px;
    background: var(--c-bg-alt);
}

.nearby-meta-stack { display: flex; flex-direction: column; gap: 3px; }

/* =========================================
   ۱۵. منوی رستوران
   ========================================= */
.menu-section .menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--c-border-light);
    padding-bottom: 14px;
}

.menu-section h2 { margin: 0; font-size: 18px; color: var(--c-text); }

.menu-date {
    font-size: 13px;
    color: var(--c-text-muted);
    background: var(--c-bg-alt);
    padding: 5px 14px;
    border-radius: var(--radius-full);
}

.menu-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.menu-item-container { display: flex; flex-direction: column; width: 100%; }

.menu-row-top {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    width: 100%;
}

h3.menu-item-name {
    margin: 0; padding: 0;
    font-size: 15px; font-weight: 600;
    color: var(--c-text);
    flex-shrink: 0;
    max-width: 65%;
    line-height: 1.6;
}

.menu-dots {
    flex-grow: 1;
    border-bottom: 2px dotted var(--c-border);
    margin: 0 10px;
    position: relative;
    top: -4px;
}

.menu-item-price {
    font-weight: 800;
    color: var(--c-text);
    white-space: nowrap;
    font-size: 15px;
}

.menu-item-price small {
    font-size: .75em;
    font-weight: 400;
    color: var(--c-text-muted);
    margin-right: 3px;
}

h4.menu-item-desc {
    margin: 4px 0 0;
    padding: 0;
    font-size: 13px;
    font-weight: 400;
    color: var(--c-text-muted);
    line-height: 1.7;
}

/* =========================================
   ۱۶. صفحه جستجو
   ========================================= */
.gz-search-page {
    direction: rtl;
}

.gz-search-results-header {
    padding: 32px 0 8px;
    text-align: center;
}

.gz-search-results-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--c-text);
    margin: 0 0 8px;
}

.gz-search-results-meta {
    font-size: 14px;
    color: var(--c-text-muted);
}

.gz-search-results-meta strong {
    color: var(--c-primary);
}

.gz-search-again {
    max-width: 500px;
    margin: 20px auto 0;
}

.gz-search-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 28px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 24px;
}

.gz-no-results {
    text-align: center;
    padding: 60px 20px;
}

.gz-no-results-icon {
    font-size: 48px;
    margin-bottom: 16px;
    display: block;
}

.gz-no-results h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--c-text);
    margin: 0 0 8px;
}

.gz-no-results p {
    color: var(--c-text-muted);
    font-size: 15px;
}

/* =========================================
   ۱۷. ریسپانسیو
   ========================================= */
@media (max-width: 1024px) {
    .gz-cities-grid { grid-template-columns: repeat(3, 1fr); }
    .gz-blog-grid { grid-template-columns: repeat(2, 1fr); }
    .restaurant-grid { grid-template-columns: repeat(2, 1fr); }
    .gz-cities-grid--archive { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
    .layout-wrap {
        display: flex;
        flex-direction: column-reverse;
        gap: 12px;
        margin: 8px 0 32px;
    }

    .restaurant-hero {
        border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    }

    .gallery-grid {
        display: flex;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        gap: 6px;
        padding-bottom: 8px;
    }

    .gallery-item {
        flex: 0 0 75%;
        scroll-snap-align: center;
    }
}

@media (max-width: 768px) {
    .gz-hero { padding: 44px 16px 38px; }
    .gz-hero-title { font-size: 24px; }
    .gz-hero-subtitle { font-size: 14px; }

    .gz-cities-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .gz-city-card { padding: 20px 12px; }
    .gz-city-icon { font-size: 26px; }
    .gz-city-name { font-size: 15px; }

    .gz-section { padding: 32px 0; }
    .gz-slider-item { min-width: 260px; max-width: 260px; }

    .gz-cities-grid--archive { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .gz-city-card--large { padding: 24px 16px; min-height: auto; }
    .gz-archive-title { font-size: 22px; }

    .card-hero-image { height: 160px; }
}

@media (max-width: 650px) {
    .restaurant-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .gz-hero { padding: 32px 12px 28px; }
    .gz-hero-title { font-size: 20px; }
    .gz-search-wrap { flex-direction: column; gap: 8px; padding: 12px; }
    .gz-search-input { width: 100%; text-align: center; }
    .gz-search-btn { width: 100%; }
    .gz-search-icon { display: none; }
    .gz-blog-grid { grid-template-columns: 1fr; }
    .gz-cities-grid { grid-template-columns: 1fr; }
    .gz-cities-grid--archive { grid-template-columns: 1fr; }

    .menu-section .menu-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .restaurant-pagination .page-numbers {
        min-width: 36px; height: 36px;
        font-size: 13px; padding: 0 10px;
    }

    .nearby-card { flex: 0 0 170px; }
    .nearby-img-wrap { height: 100px; }
}
