/**
 * WG Taste Profile - Styles
 *
 * @package WG_Taste_Profile
 */

/* Widget Styles (für Shortcodes) */
.wgtp-taste-dna-widget,
.wgtp-critic-reputation-widget {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Primary Type Widget */
.wgtp-primary-type {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border-left: 4px solid var(--type-color, #ff6b00);
}

.wgtp-type-emoji {
    font-size: 2rem;
}

.wgtp-type-info {
    display: flex;
    flex-direction: column;
}

.wgtp-type-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
}

.wgtp-type-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Secondary Type */
.wgtp-secondary-type {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
}

.wgtp-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

.wgtp-type-emoji-small {
    font-size: 1.2rem;
}

.wgtp-type-name-small {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

.wgtp-rating-count {
    margin-top: 12px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
}

/* Critic Badge Widget */
.wgtp-critic-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border-left: 4px solid var(--critic-color, #2196f3);
}

.wgtp-critic-emoji {
    font-size: 2rem;
}

.wgtp-critic-info {
    display: flex;
    flex-direction: column;
}

.wgtp-critic-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
}

.wgtp-critic-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Scores */
.wgtp-scores {
    display: flex;
    gap: 16px;
    margin-top: 16px;
}

.wgtp-score {
    flex: 1;
    text-align: center;
    padding: 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
}

.wgtp-score-num {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff6b00;
}

.wgtp-score-text {
    display: block;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 4px;
}

/* Mini Badges */
.wgtp-mini-badges {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.wgtp-mini-badge {
    font-size: 1.5rem;
    cursor: help;
    transition: transform 0.2s;
}

.wgtp-mini-badge:hover {
    transform: scale(1.2);
}

/* Notice */
.wgtp-notice {
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    font-size: 0.9rem;
}
