/* --- KATEGORİ SAYFASI ÖZEL STİLLERİ --- */
.category-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 15px;
}

/* En Üstteki Özel Kampanya Banner Kartı */
.campaign-banner-card {
    grid-column: 1 / -1;
    height: 100px;
    background: linear-gradient(135deg, var(--logo-red, #a61214) 0%, rgba(20, 20, 20, 0.95) 85%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 18px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

.banner-badge {
    background: var(--logo-yellow, #f2b705);
    color: #111;
    font-size: 10px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 6px;
}

.banner-text-side h3 {
    font-size: 17px;
    color: #fff;
    margin-top: 4px;
}

.banner-text-side p {
    font-size: 11px;
    color: #bbb;
}

.banner-img-side img {
    width: 75px;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.5));
}

/* Standart Kategori Kartları */
.category-card {
    background: rgba(25, 25, 25, 0.85);
    border: 1px solid #2a2a2a;
    border-radius: 16px;
    padding: 15px;
    text-align: center;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.category-card:active {
    transform: scale(0.96);
}

.card-icon-wrapper img {
    width: 65px;
    height: 65px;
    object-fit: contain;
    margin-bottom: 8px;
}

.category-card h3 {
    font-size: 14px;
    color: #ffffff;
    font-weight: 700;
}