/* ==========================================================================
   Quick Deals — /deals Seite
   ========================================================================== */

/* Section-Wrapper */
.fkfl-qd-section {
    margin-bottom: 40px;
}

/* Header */
.fkfl-qd-header {
    display: flex;
    align-items: baseline;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.fkfl-qd-title {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
}

.fkfl-qd-affiliate {
    font-size: 11px;
    color: #94a3b8;
    margin: 0;
    line-height: 1.4;
}

.fkfl-qd-affiliate a {
    color: #94a3b8;
    text-decoration: underline;
}

/* Filter-Leiste */
.fkfl-qd-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 16px;
}

.fkfl-qd-filter-btn {
    display: inline-flex;
    align-items: center;
    padding: 5px 12px;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    background: #fff;
    color: #64748b;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
    line-height: 1.4;
}

.fkfl-qd-filter-btn:hover {
    background: #f1f5f9;
    color: #1e293b;
    border-color: #cbd5e1;
}

.fkfl-qd-filter-btn.active {
    background: #2563eb;
    color: #fff;
    border-color: #2563eb;
}

/* Grid */
.fkfl-qd-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

@media (max-width: 768px) {
    .fkfl-qd-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .fkfl-qd-grid {
        grid-template-columns: 1fr;
    }
}

/* Karte */
@keyframes fkfl-qd-slide-in {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fkfl-qd-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 8px;
    padding: 14px 16px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    text-decoration: none;
    color: #1e293b;
    transition: box-shadow 0.15s, border-color 0.15s, transform 0.15s;
    animation: fkfl-qd-slide-in 0.35s ease both;
    animation-delay: calc(var(--i, 0) * 0.06s);
}

.fkfl-qd-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: #cbd5e1;
    transform: translateY(-2px);
    color: #1e293b;
    text-decoration: none;
}

.fkfl-qd-card.fkfl-qd-hidden {
    display: none;
}

/* Karten-Inhalt */
.fkfl-qd-card-body {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;
}

.fkfl-qd-card-title {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.35;
    color: #1e293b;
    flex: 1;
    min-width: 0;
}

.fkfl-qd-card-price {
    flex-shrink: 0;
    font-size: 14px;
    font-weight: 700;
    color: #e74c3c;
    white-space: nowrap;
}

.fkfl-qd-card-partner {
    font-size: 11px;
    color: #94a3b8;
    font-weight: 400;
}
