﻿.banner-container {
    position: relative;
    background: #fff;
    border-radius: 5px;
    padding: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #f0f0f0;
}

/* طراحی مدرن و نامتقارن لیبل */
.modern-badge {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 10;
    padding: 4px 15px;
    font-size: 11px;
    font-weight: 800;
    color: #fff;
    /* گوشه‌های نامتقارن: بالا-راست 5px، پایین-چپ 15px */
    border-radius: 0 5px 0 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: -2px 4px 12px rgba(0, 0, 0, 0.15);
}

/* طیف رنگی سبز-آبی نئونی (Cyan/Teal) */
.badge-active {
    background: linear-gradient(135deg, #425ae9eb 0%, #44df6a 100%);
    border-bottom: 1px solid rgba(255,255,255,0.3);
    box-shadow: 0 5px 15px rgba(79, 172, 254, 0.4);
}

/* حالت غیرفعال با رنگ خاکستری متالیک مدرن */
.badge-inactive {
    background: linear-gradient(135deg, #757f9a 0%, #d7dde8 100%);
    color: #2c3e50;
    border-radius: 0 5px 15px 0; /* جهت مخالف برای تنوع */
    right: auto;
    left: 0;
}

/* انیمیشن برق حرفه‌ای (Premium Shine) */
.modern-badge::before {
    content: "";
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient( 90deg, transparent, rgba(255, 255, 255, 0.6), transparent );
    animation: premiumShine 3.5s infinite;
}

@keyframes premiumShine {
    0% {
        left: -150%;
    }

    25% {
        left: 150%;
    }

    100% {
        left: 150%;
    }
}

/* هاور جذاب کارت */
.banner-container:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: #4facfe;
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.banner-image {
    border-radius: 5px;
    transition: transform 0.5s ease;
}

.banner-container:hover .banner-image {
    transform: scale(1.05);
}

.center-name-style {
    font-size: 14px;
    font-weight: 700;
    margin-top: 10px;
    color: #2d3436; /* رنگ تیره‌تر برای خوانایی بیشتر */
    transition: color 0.3s ease;
}

.banner-container:hover .center-name-style {
    color: #800000; /* در هاور به رنگ زرشکی سایت شما در می‌آید */
}
