/**
 * Dachblech Mengenrechner – Cross-Selling Styles
 * Dark Theme kompatibel – Für Empfehlungen auf Kantteil-Produktseiten
 */

.dbm-empfehlung-box {
    background: rgba(52,152,219,0.08);
    border: 1px solid rgba(52,152,219,0.3);
    border-left: 4px solid var(--ddb-accent-blue, #3498db);
    border-radius: 8px;
    padding: 14px 16px;
    margin: 16px 0;
    animation: dbm-slideIn 0.3s ease-out;
}

.dbm-empfehlung-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    color: var(--ddb-accent-blue, #3498db);
    font-size: 14px;
}

.dbm-empfehlung-header svg {
    flex-shrink: 0;
    color: var(--ddb-accent-blue, #3498db);
}

.dbm-empfehlung-content p {
    margin: 0 0 4px 0;
    font-size: 14px;
    color: var(--ddb-text-primary, #f0f2f5);
    line-height: 1.5;
}

.dbm-empfehlung-content strong {
    color: var(--ddb-accent-green, #2ecc71);
    font-size: 16px;
}

.dbm-empfehlung-content small {
    font-size: 12px;
    color: var(--ddb-text-muted, #8896a8);
}

@keyframes dbm-slideIn {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
