/* ===============================
   FIRSAT BANNER - Kategori Detay Sayfası
   =============================== */

.firsat-banner {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #1a5a9e 100%);
    border-radius: 12px;
    padding: 16px 24px;
    margin-bottom: 20px;
    box-shadow: 0 4px 16px rgba(0, 102, 204, 0.15);
    position: relative;
    overflow: hidden;
}

.firsat-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.firsat-banner.expired {
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
    opacity: 0.8;
}

.firsat-banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Sol taraf - Başlık */
.firsat-banner-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.firsat-icon {
    display: none; /* Ateş ikonu gizlendi */
    font-size: 48px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.firsat-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.firsat-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    margin: 0;
    line-height: 1.3;
}

.firsat-subtitle {
    font-size: 12px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

/* Sağ taraf - Sayaç */
.firsat-banner-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.firsat-countdown-label {
    font-size: 11px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.firsat-countdown {
    display: flex;
    gap: 8px;
}

.firsat-time-box {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 6px;
    padding: 8px 12px;
    min-width: auto;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: opacity 0.3s ease;
}

.firsat-time-box.time-box-zero {
    opacity: 0.4;
}

.firsat-number {
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    color: var(--primary-blue);
}

.firsat-label {
    font-size: 9px;
    font-weight: 500;
    color: var(--text-gray);
    text-transform: capitalize;
    letter-spacing: 0.3px;
}

.firsat-expired-badge {
    background: rgba(255, 255, 255, 0.95);
    color: #dc3545;
    padding: 8px 20px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Responsive - Tablet */
@media (max-width: 768px) {
    .firsat-banner {
        padding: 20px 24px;
    }
    
    .firsat-banner-content {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
    
    .firsat-banner-right {
        align-items: flex-start;
        width: 100%;
    }
    
    .firsat-title {
        font-size: 20px;
    }
    
    .firsat-icon {
        font-size: 40px;
    }
    
    .firsat-time-box {
        min-width: 60px;
        padding: 10px 12px;
    }
    
    .firsat-number {
        font-size: 24px;
    }
}

/* Responsive - Mobile */
@media (max-width: 480px) {
    .firsat-banner {
        padding: 16px 20px;
        border-radius: 12px;
    }
    
    .firsat-banner-left {
        gap: 12px;
    }
    
    .firsat-icon {
        font-size: 32px;
    }
    
    .firsat-title {
        font-size: 18px;
    }
    
    .firsat-subtitle {
        font-size: 12px;
    }
    
    .firsat-countdown {
        gap: 8px;
        width: 100%;
        justify-content: space-between;
    }
    
    .firsat-time-box {
        min-width: 0;
        flex: 1;
        padding: 8px 10px;
    }
    
    .firsat-number {
        font-size: 20px;
    }
    
    .firsat-label {
        font-size: 10px;
    }
    
    .firsat-expired-badge {
        padding: 10px 20px;
        font-size: 14px;
        width: 100%;
        text-align: center;
    }
}
