/*
Theme Name: Astra Child
Theme URI: http://example.com/astra-child
Description: قالب فرزند برای قالب آسترا
Author: Your Name
Author URI: http://example.com
Template: astra
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: astra-child
*/

@font-face {
    font-family: 'iransans';
    src: url('/wp-content/fonts/IRANSansWeb.eot'); /* IE9 Compat Modes */
    src: url('/wp-content/fonts/IRANSansWeb.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
         url('/wp-content/fonts/IRANSansWeb.woff2') format('woff2'), /* Super Modern Browsers */
         url('/wp-content/fonts/IRANSansWeb.woff') format('woff'), /* Modern Browsers */
         url('/wp-content/fonts/IRANSansWeb.ttf') format('truetype'); /* Safari, Android, iOS */
    font-weight: normal;
    font-style: normal;
    font-display: swap; /* باعث می‌شود سایتتان سریع‌تر نمایش داده شود */
}

/* اعمال فونت به تمام متن‌های سایت */
body, p, h1, h2, h3, h4, h5, h6, .ast-container, .site-content, .entry-content {
    font-family: 'iransans' !important;
}

        .container-ghali {
            max-width: 1280px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 28px;
            padding: 20px;
        }

        .box-ghali {
            background: #ffffff;
            border-radius: 28px;
            padding: 24px 20px 28px 20px;
            position: relative;
            transition: all 0.3s ease-in-out;
            box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.5);
            backdrop-filter: blur(2px);
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .box-ghali:hover {
            transform: translateY(-8px);
            box-shadow: 0 25px 40px -12px rgba(0, 0, 0, 0.2);
            border-color: rgba(210, 180, 140, 0.3);
            background: linear-gradient(145deg, #ffffff, #fefaf5);
        }

        /* نشانگر شماره با استایل خاص */
        .badge-number {
            position: absolute;
            top: -12px;
            right: 20px;
            background: linear-gradient(135deg, #c9a86b, #b48b3a);
            color: white;
            width: 44px;
            height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 30px;
            font-size: 1.5rem;
            font-weight: bold;
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
            border: 2px solid white;
            font-family: monospace;
        }

        /* تیتر اصلی */
        .box-ghali h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: #2c2c2c;
            margin-top: 10px;
            margin-bottom: 4px;
            letter-spacing: -0.5px;
            border-right: 4px solid #c9a86b;
            padding-right: 15px;
        }

        /* باکس تخفیف و هایلایت */
        .highlight {
            background: linear-gradient(120deg, #fff3e0, #ffe8ce);
            color: #b1620c;
            padding: 10px 16px;
            border-radius: 20px;
            font-weight: 600;
            font-size: 0.9rem;
            display: inline-block;
            width: fit-content;
            border: 1px solid #ffd9a5;
            box-shadow: 0 1px 2px rgba(0,0,0,0.02);
        }

        /* پاراگراف‌ها */
        .box-ghali p {
            font-size: 0.95rem;
            color: #3e3e3e;
            margin: 6px 0;
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }

        /* لینک‌ها */
        .box-ghali a {
            text-decoration: none;
            color: #1e6f5c;
            font-weight: 500;
            transition: all 0.2s ease;
            border-bottom: 1px dashed #c9a86b;
        }

        .box-ghali a:hover {
            color: #289672;
            border-bottom-style: solid;
        }

        /* ======================================== */
        /* اصلاح مشکل نمایش شماره تلفن (حل مشکل اصلی) */
        /* ======================================== */
        
        /* لینک تلفن - نمایش درست شماره */
        .box-ghali a[href^="tel"] {
            direction: ltr !important;
            unicode-bidi: bidi-override !important;
            display: inline-block;
            letter-spacing: 0.5px;
            font-size: 0.95rem;
        }
        
        /* پاراگراف تلفن - اصلاح کامل */
        .box-ghali p:first-of-type {
            direction: rtl;
            justify-content: flex-start;
        }
        
        /* آیکون تلفن */
        .box-ghali p:first-of-type::before {
            content: "📞";
            margin-left: 8px;
            font-size: 1rem;
            display: inline-block;
        }
        
        /* پاراگراف وبسایت */
        .box-ghali p:last-of-type::before {
            content: "🌐";
            margin-left: 8px;
            font-size: 1rem;
            display: inline-block;
        }
        
        /* لینک وبسایت */
        .box-ghali a:not([href^="tel"]) {
            direction: ltr;
            display: inline-block;
        }

        /* ریسپانسیو برای تبلت‌ها */
        @media (max-width: 768px) {
            .container-ghali {
                grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
                gap: 20px;
                padding: 10px;
            }

            .box-ghali {
                padding: 20px 16px 24px;
            }

            .box-ghali h3 {
                font-size: 1.3rem;
            }

            .badge-number {
                width: 38px;
                height: 38px;
                font-size: 1.2rem;
                top: -10px;
                right: 16px;
            }
            
            .box-ghali a[href^="tel"] {
                font-size: 0.85rem;
            }
        }

        /* ریسپانسیو برای موبایل */
        @media (max-width: 480px) {
            .container-ghali {
                grid-template-columns: 1fr;
                gap: 18px;
            }

            .box-ghali h3 {
                font-size: 1.2rem;
            }

            .highlight {
                font-size: 0.8rem;
                padding: 6px 12px;
            }

            .box-ghali p {
                font-size: 0.85rem;
                flex-direction: column;
                align-items: flex-start;
                gap: 4px;
            }

            .badge-number {
                top: -8px;
                right: 12px;
                width: 34px;
                height: 34px;
                font-size: 1rem;
            }
            
            .box-ghali a[href^="tel"] {
                font-size: 0.8rem;
            }
        }


/* استایل پایه برای کانتینر اصلی */
#rank-math-faq.rank-math-block {
    max-width: 800px;
    margin: 40px auto;
    direction: rtl;
}

/* لیست اصلی */
.rank-math-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* هر آیتم سوال و جواب */
.rank-math-list-item {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #eef2f6;
    overflow: hidden;
}

.rank-math-list-item:hover {
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
    border-color: #dce3ec;
}

/* استایل سوال (h3) */
.rank-math-question {
    margin: 0;
    padding: 20px 28px;
    font-size: 1.1rem !important;
    font-weight: 600;
    line-height: 1.5;
    color: #1a2c3e;
    background: #fafcfd;
    cursor: pointer;
    position: relative;
    transition: background 0.2s;
    border-bottom: 1px solid transparent;
}

/* نشانگر گرافیکی برای سوال (بدون جاوااسکریپت صرفاً زیبایی) */
.rank-math-question::before {
    content: "❓";
    margin-left: 12px;
    font-size: 1.2rem;
    opacity: 0.7;
}

/* اضافه کردن آیکون شورون در سمت راست برای حس مدرن */
.rank-math-question::after {
    content: "▼";
    float: left;
    font-size: 0.8rem;
    color: #8595a6;
    transition: transform 0.2s;
}

/* هنگام hover روی سوال */
.rank-math-list-item:hover .rank-math-question::after {
    transform: rotate(180deg);
    color: #2c7da0;
}

/* استایل جعبه جواب */
.rank-math-answer {
    padding: 8px 28px 24px 28px;
    background: #ffffff;
    border-top: none;
    color: #2c3e4e;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* پاراگراف داخل جواب */
.rank-math-answer p {
    margin: 0 0 12px 0;
}

.rank-math-answer p:last-child {
    margin-bottom: 0;
}

/* لینک‌های داخل جواب (در صورت وجود) */
.rank-math-answer a {
    color: #2c7da0;
    text-decoration: none;
    border-bottom: 1px dashed #bdd4e2;
    transition: color 0.2s, border-color 0.2s;
}

.rank-math-answer a:hover {
    color: #1f5e7e;
    border-bottom-color: #1f5e7e;
}

/* بهبود خوانایی شماره تلفن و تاکیدها */
.rank-math-answer strong,
.rank-math-answer b {
    color: #1e5a74;
    font-weight: 600;
}

/* ریسپانسیو برای موبایل */
@media (max-width: 640px) {
    #rank-math-faq.rank-math-block {
        margin: 20px 16px;
    }
    
    .rank-math-question {
        padding: 13px 3px;
        font-size: 1rem !important;
    }
    
    .rank-math-question::before {
        font-size: 1rem;
        margin-left: 8px;
    }
    
    .rank-math-answer {
        padding: 4px 20px 20px 20px;
        font-size: 0.9rem;
    }
}





/*کامنت های سایت*/
/* --- راست‌چین‌سازی و ساختار کلی بخش کامنت‌های آسترا --- */
#comments.comments-area {
    max-width: 100%;
    margin: 40px auto;
    font-family: inherit;
}

/* عنوان بخش نظرات */
#comments .comments-title, 
#comments .comment-reply-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e3a8a; /* رنگ سورمه‌ای سازمانی سایت */
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 12px;
    margin-bottom: 30px;
    position: relative;
}

/* خط تزیینی زیر عنوان */
#comments .comments-title::after,
#comments .comment-reply-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    right: 0;
    width: 60px;
    height: 2px;
    background-color: #f97316; /* رنگ اکسنت دوم (نارنجی ملایم) برای توازن بصری */
}

/* لیست کامنت‌ها */
.ast-comment-list, .ast-comment-list .children {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* --- استایل کارت‌های دیدگاه اصلی (سطح ۱) --- */
.ast-comment-list li.comment {
    margin-bottom: 24px;
}

.ast-comment-list li.comment > .ast-comment {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02), 0 2px 4px -1px rgba(0, 0, 0, 0.01);
    transition: all 0.3s ease;
}

.ast-comment-list li.comment > .ast-comment:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.04);
    border-color: #cbd5e1;
}

/* --- استایل پاسخ‌ها (کامنت‌های فرزند / کامنت مدیریت) --- */
.ast-comment-list .children {
    margin-right: 30px; /* ایجاد پله و تورفتگی در زبان فارسی */
    margin-top: 15px;
}

.ast-comment-list .children li.comment > .ast-comment {
    background-color: #f8fafc; /* پس‌زمینه طوسی مایل به آبی بسیار روشن */
    border-right: 4px solid #1e3a8a; /* خط عمودی سورمه‌ای برای مشخص شدن پاسخ مدیریت */
    border-left: 1px solid #e2e8f0;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    border-radius: 0 12px 12px 0; /* گرد شدن لبه‌ها فقط در سمت چپ */
}

/* تگ نویسنده یا ادمین (در صورت وجود کلاس آسترا) */
.ast-comment-meta .ast-cmt-post-author::after {
    content: "مدیریت";
    background-color: #1e3a8a;
    color: #ffffff;
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 20px;
    margin-right: 8px;
    display: inline-block;
    vertical-align: middle;
}

/* --- بخش متاداده و هدر هر کامنت (نام نویسنده و تاریخ) --- */
.ast-comment-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 12px;
    border-bottom: 1px dashed #f1f5f9;
    padding-bottom: 10px;
}

.ast-comment-meta .fn {
    font-size: 1rem;
    font-weight: 600;
    color: #334155;
}

.ast-comment-meta .ast-comment-time a {
    font-size: 0.85rem;
    color: #94a3b8;
    text-decoration: none;
}

.ast-comment-time .timendate, .ast-comment-time .reply {
    margin-right: 1.5em !important;
}
/* --- متن دیدگاه --- */
.ast-comment-content.comment p {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* --- دکمه‌های پاسخ و ویرایش --- */
.ast-comment-edit-reply-wrap {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.ast-comment-edit-reply-wrap a {
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    padding: 6px 14px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

/* دکمه پاسخ */
.ast-comment-edit-reply-wrap a.comment-reply-link {
    background-color: #f1f5f9;
    color: #475569;
}

.ast-comment-edit-reply-wrap a.comment-reply-link:hover {
    background-color: #1e3a8a;
    color: #ffffff;
}

/* دکمه ویرایش برای ادمین */
.ast-comment-edit-reply-wrap a.comment-edit-link {
    background-color: #fef3c7;
    color: #d97706;
}

/* --- استایل فرم ارسال دیدگاه جدید (Respond) --- */
#respond.comment-respond {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 25px;
    margin-top: 40px;
}

#respond p.logged-in-as {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 20px;
}

#respond p.logged-in-as a {
    color: #1e3a8a;
    font-weight: 600;
}

/* باکس متنی فیلد نظر */
.comment-form-textarea textarea {
    width: 100%;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    padding: 12px;
    font-family: inherit;
    font-size: 0.95rem;
    color: #334155;
    background-color: #f8fafc;
    transition: all 0.2s ease;
    outline: none;
}

.comment-form-textarea textarea:focus {
    border-color: #1e3a8a;
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

/* دکمه ثبت نظر */
#ast-commentform .form-submit input[type="submit"] {
    background-color: #1e3a8a;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    padding: 10px 30px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

#ast-commentform .form-submit input[type="submit"]:hover {
    background-color: #1d4ed8;
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.2);
}

/* --- بهینه‌سازی ریسپانسیو موبایل --- */
@media (max-width: 768px) {
    .ast-comment-list .children {
        margin-right: 15px; /* کمتر کردن فاصله در موبایل برای جلوگیری از فشرده شدن متن */
    }
    .ast-comment-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }
    .ast-comment-edit-reply-wrap {
        justify-content: flex-start;
    }
}


    /* ===== HERO BADGE ===== */
    .hero-badge{display:inline-block;background:rgba(255,255,255,.15);border:1px solid rgba(255,255,255,.25);color:#b8e6cb;font-size:11px;padding:3px 12px;border-radius:20px;margin-bottom:10px;letter-spacing:.5px;text-decoration:none}
    a.hero-badge:hover{background:rgba(255,255,255,.25)}

    /* ===== TRUST BAR ===== */
    .trust-bar{background:#fff;border-bottom:1px solid #e8e8e8;display:flex;justify-content:space-around;padding:12px 8px}
    .trust-item{text-align:center;font-size:11px;color:#555;display:flex;flex-direction:column;align-items:center;gap:3px}
    .trust-icon{font-size:20px}
    .trust-item strong{font-size:12px;color:#1c1c1c;display:block}

    /* ===== PRICE TABLE ===== */
    .price-card{background:#fff;border-radius:12px;border:1px solid #e0e0e0;overflow:hidden;margin-bottom:8px;box-shadow:0 1px 4px rgba(0,0,0,.05)}
    .price-card-head{background:#0d3d22;color:#fff;padding:10px 14px;font-size:13px;font-weight:600;display:flex;justify-content:space-between}
    .price-row{display:flex;justify-content:space-between;align-items:center;padding:11px 14px;font-size:13px;border-bottom:1px solid #f2f2f2}
    .price-row:last-child{border-bottom:none}
    .price-row.featured{background:#f0faf5}
    .price-row .p-label{color:#444}
    .price-row .p-val{font-weight:700;color:#1b6b3a;font-size:14px}
    .price-note{font-size:12px;color:#888;margin-top:8px;padding:8px 12px;background:#fffbf0;border-right:3px solid #f4a600;border-radius:4px}

    /* ===== SHOP CARDS ===== */
/* ===== SHOP CARDS - MODERN & MINIMALISTIC ===== */

/* تنظیم ساختار والد برای نمایش همیشگی ۲ ستونه */
.shop-list-wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* نمایش دقیقاً ۲ ستون در همه ابعاد */
    gap: 16px; /* فاصله مناسب بین کارت‌ها */
    direction: rtl; /* هماهنگی کامل با ساختار فارسی */
    box-sizing: border-box;
}

/* استایل کارت‌ها: مینیمال با لبه‌های نرم و سایه ملایم */
.shop-card {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #eaeaea;
    padding: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* چسبیدن دکمه‌ها به پایین کارت در صورت نامساوی بودن متن‌ها */
    transition: all 0.3s ease;
    box-sizing: border-box;
}

/* افکت هاور ظریف برای دسکتاپ */
@media (min-width: 768px) {
    .shop-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
        border-color: #c3e6d0;
    }
}

/* بخش هدر کارت */
.shop-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

/* رتبه عددی متمایز و شیک */
.shop-rank {
    min-width: 32px;
    height: 32px;
    background: #f0faf5;
    border: 1px solid #e1f5eb;
    color: #1b6b3a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}

.shop-meta-top {
    flex: 1;
}

/* نام مغازه با خوانایی بالا */
.shop-name {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 4px;
    line-height: 1.4;
}

/* ریتینگ و ستاره‌ها */
.shop-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
}

.stars {
    color: #ffb400;
    letter-spacing: 1px;
}

.rating-num {
    color: #666666;
    font-weight: 500;
}

/* تگ‌های تخفیف و ویژگی‌ها */
.shop-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 14px;
}

.tag {
    background: #f4fbf7;
    color: #1b6b3a;
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 8px;
    border: 1px solid #e2f4ea;
    font-weight: 600;
    line-height: 1.5;
}

/* توضیحات: فونت خاکستری تاریک برای بیشترین خوانایی بدون خستگی چشم */
.shop-desc {
    font-size: 13px;
    color: #4a4a4a;
    line-height: 1.7;
    margin-top: 0;
    margin-bottom: 20px;
    text-align: justify;
}

/* دکمه‌های عملیاتی */
.shop-actions {
    display: flex;
    gap: 10px;
    margin-top: auto; /* سوق دادن دکمه‌ها به انتهای کارت */
}

/* دکمه تماس: مینیمال و واضح */
.btn-contact {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: #1b6b3a;
    color: #ffffff;
    padding: 11px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.1s ease;
    white-space: nowrap;
}

.btn-contact:hover {
    background: #15522c;
}

.btn-contact:active {
    transform: scale(0.98);
}

/* دکمه سایت: هماهنگ با هویت بصری */
.btn-site {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    color: #1b6b3a;
    padding: 11px 16px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid #1b6b3a;
    transition: all 0.2s ease;
}

.btn-site:hover {
    background: #f0faf5;
}

/* مدیا کوئری برای گوشی‌های خیلی کوچک (زیر 400 پیکسل) جهت جلوگیری از به‌هم‌ریختگی دکمه‌ها */
@media (max-width: 400px) {
    .shop-list-wrap {
        gap: 10px; /* کمتر کردن فاصله در صفحات بسیار کوچک */
    }
    .shop-card {
        padding: 12px;
    }
    .shop-actions {
        flex-direction: column; /* در موبایل‌های بسیار باریک دکمه‌ها زیر هم می‌روند تا متن لوپ نشود */
        gap: 6px;
    }
    .btn-site {
        padding: 8px;
    }
    .btn-contact {
        padding: 8px;
    }
}

    /* ===== LOCAL INFO ===== */
    .local-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:10px;margin-bottom:14px}
    .local-card{background:#fff;border-radius:12px;border:1px solid #e8e8e8;padding:12px;text-align:center;box-shadow:0 1px 4px rgba(0,0,0,.05)}
    .local-card .lc-icon{font-size:22px;margin-bottom:4px}
    .local-card .lc-label{font-size:11px;color:#888;display:block;margin-bottom:2px}
    .local-card .lc-val{font-size:13px;font-weight:700;color:#0d3d22}

    /* ===== TIPS ===== */
    .tips-list{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:8px}
    .tips-list li{display:flex;gap:10px;align-items:flex-start;background:#fff;border-radius:12px;border:1px solid #e8e8e8;padding:12px;font-size:13px;color:#444;line-height:1.6;box-shadow:0 1px 4px rgba(0,0,0,.05)}
    .tip-icon{font-size:18px;flex-shrink:0;margin-top:1px}

    /* ===== FAQ ===== */
    .carpet-faq-wrap{display:flex;flex-direction:column;gap:8px}
    .carpet-faq-item{background:#fff;border-radius:10px;border:1px solid #e0e0e0;overflow:hidden;box-shadow:0 1px 3px rgba(0,0,0,.04)}
    .carpet-faq-item summary{list-style:none;cursor:pointer;padding:13px 14px;font-size:13px;font-weight:700;color:#0d3d22;display:flex;justify-content:space-between;align-items:center;line-height:1.5}
    .carpet-faq-item summary::-webkit-details-marker{display:none}
    .carpet-faq-item summary::marker{content:''}
    .carpet-faq-arrow{font-size:11px;color:#999;margin-right:8px;transition:transform .2s;display:inline-block;flex-shrink:0}
    .carpet-faq-item[open] .carpet-faq-arrow{transform:rotate(180deg)}
    .carpet-faq-answer{padding:0 14px 13px;font-size:13px;color:#444;line-height:1.7;border-top:1px solid #f2f2f2;padding-top:10px}

    /* ===== NEARBY ===== */
    .nearby-links{display:flex;flex-wrap:wrap;gap:8px}
    .nearby-link{display:inline-block;background:#fff;color:#1b6b3a;font-size:12px;padding:6px 13px;border-radius:20px;border:1px solid #c3e6d0;text-decoration:none;font-weight:600}

    @media (min-width:600px){
        .local-grid{grid-template-columns:repeat(4,1fr)}
    }