
.kampanya-container {
    background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 100%);
    border: 1px solid #ffcccc;
    border-radius: 10px;
    padding: 12px 15px;
}

.kampanya-baslik {
    font-size: 13px;
    color: #CB1217;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.kampanya-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.kampanya-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: white;
    border: 2px solid #CB1217;
    border-radius: 8px;
    padding: 8px 12px;
    min-width: 70px;
    transition: all 0.2s ease;
}

.kampanya-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(203, 18, 23, 0.2);
}

.kampanya-adet {
    font-size: 11px;
    color: #666;
    font-weight: 500;
}

.kampanya-indirim {
    font-size: 16px;
    color: #CB1217;
    font-weight: bold;
}