/* assets/css/tabs/terpenes.css */

/* --- TERPENE KARTEN-LAYOUT --- */
#terpenes .card-head h4 {
    margin: 0;
    display: flex;
    align-items: center;
    font-size: 1.4rem;
}

/* Spezifisches Styling für die Terpen-Icons in der Überschrift */
#terpenes .card-head i {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-right: 12px;
    min-width: 25px;
    text-align: center;
}

/* --- DETAILS & EFFEKT-PROFIL --- */
.terpene-details {
    background: rgba(255, 255, 255, 0.7);
    padding: 15px;
    border-radius: 8px;
    margin-top: 15px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    flex-grow: 1; /* Stellt sicher, dass die Details-Box den verfügbaren Platz nutzt */
}

.terpene-details p {
    margin: 0 0 10px 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.terpene-details p:last-child {
    margin-bottom: 0;
}

/* --- SYNERGIE BOX (ENTOURAGE-INFORMATION) --- */
.synergy-box {
    color: var(--primary-dark);
    border-left: 3px solid var(--primary-color);
    padding: 10px 12px;
    margin-top: 12px !important;
    font-style: italic;
    font-size: 0.85rem;
    line-height: 1.5;
    background: rgba(90, 125, 110, 0.03);
    border-radius: 0 4px 4px 0;
}

.synergy-box strong {
    color: var(--primary-dark);
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 4px;
}

/* --- HOVER EFFEKT FÜR DETAILS --- */
.terpene-details:hover {
    background: rgba(255, 255, 255, 1);
    border-color: rgba(90, 125, 110, 0.2);
}