/* --- نوار دسته‌بندی‌ها --- */
.categories-scroll {
    overflow-x: auto;
    white-space: nowrap;
    padding: 10px 5px;
    margin-bottom: 15px;
    scrollbar-width: none;
}
.categories-scroll::-webkit-scrollbar { display: none; }

.cat-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    border: 1px solid #eee;
    padding: 8px 16px;
    border-radius: 50px;
    margin-left: 8px;
    color: #555;
    font-size: 0.9rem;
    transition: 0.2s;
    text-decoration: none;
}

.cat-item:hover, .cat-item.active {
    background: #e6fffa;
    color: var(--primary-color);
    border-color: #008f79;
}

/* --- کارت آگهی --- */
.post-card {
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid #f0f0f0 !important;
    position: relative;
    background: #fff;
    height: 100%; /* ارتفاع یکسان کارت‌ها */
}
.post-card:hover { 
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08) !important; 
}

/* --- اصلاح قطعی و نهایی بج‌ها (Badge Fix V2) --- */
.post-card .badge {
    /* جلوگیری از کش آمدن */
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: auto !important; 
    width: auto !important;
    min-height: 24px !important; /* حداقل ارتفاع */
    
    /* جلوگیری از عمودی شدن متن */
    white-space: nowrap !important;
    
    /* فونت و سایز */
    font-size: 0.75rem !important;
    padding: 4px 10px !important;
    border-radius: 50px !important;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2) !important;
    z-index: 20;
    
    /* موقعیت دقیق (شناور روی عکس) */
    position: absolute !important;
    top: 10px !important;
    left: 10px !important;
    
    /* خنثی کردن تمام کشش‌ها */
    right: auto !important;
    bottom: auto !important; 
    margin: 0 !important;
}

/* استایل بج فوری */
.post-card .badge.bg-danger {
    background-color: #dc3545 !important;
    animation: pulse-index 2s infinite;
}

@keyframes pulse-index {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* فیکس کردن عکس */
.ratio-1x1 img {
    object-fit: cover !important;
    width: 100% !important;
    height: 100% !important;
}