/* ========== FACE – Niedliche, moderne Eule (keine Emojis) ========== */
.face-owl {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 10000;
    cursor: pointer;
    filter: drop-shadow(0 8px 15px rgba(0,0,0,0.15));
    transition: filter 0.3s;
}
.face-owl:hover {
    filter: drop-shadow(0 12px 20px rgba(0,0,0,0.2));
}
.face-container {
    position: relative;
    width: 100px;
    height: 110px;
}
/* ===== OHREN mit Fellzacken ===== */
.face-ears {
    position: absolute;
    top: -18px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 8px;
}
.face-ear {
    width: 28px;
    height: 32px;
    background: #fbd5a2;
    border-radius: 50% 50% 40% 40%;
    position: relative;
    overflow: hidden;
}
.face-ear.left {
    transform: rotate(-12deg);
}
.face-ear.right {
    transform: rotate(12deg);
}
.ear-inner {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 15px;
    background: #e8b07d;
    border-radius: 0 0 40% 40%;
}
/* ===== KOPF ===== */
.face-head {
    width: 100%;
    height: 75px;
    background: #fbd5a2;
    border-radius: 50%;
    position: relative;
    box-shadow: inset 0 -2px 0 rgba(0,0,0,0.03), 0 5px 10px rgba(0,0,0,0.05);
}
/* ===== AUGEN (groß, glänzend) ===== */
.face-eyes {
    display: flex;
    justify-content: center;
    gap: 18px;
    padding-top: 18px;
}
.face-eye {
    position: relative;
    width: 28px;
    height: 28px;
}
.eye-white {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.eye-pupil {
    width: 12px;
    height: 12px;
    background: #2c1810;
    border-radius: 50%;
    position: absolute;
    top: 8px;
    left: 8px;
    transition: transform 0.1s;
}
.eye-glow {
    position: absolute;
    top: 4px;
    left: 5px;
    width: 6px;
    height: 6px;
    background: rgba(255,255,255,0.8);
    border-radius: 50%;
}
.eyelid {
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fbd5a2;
    border-radius: 50%;
    transition: top 0.1s ease;
}
/* ===== LÄCHELN (geschwungener Bogen) ===== */
.face-smile {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 14px;
    border-bottom: 3px solid #c47d4a;
    border-radius: 0 0 20px 20px;
}
/* ===== WANGEN (rosa) ===== */
.face-cheek {
    position: absolute;
    bottom: 18px;
    width: 16px;
    height: 9px;
    background: #f7bc9b;
    border-radius: 50%;
    opacity: 0.7;
}
.face-cheek.left {
    left: 12px;
}
.face-cheek.right {
    right: 12px;
}
/* ===== SCHNABEL (klein, dezent) ===== */
.face-beak {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 8px;
    background: #e8a86a;
    border-radius: 50% 50% 20% 20%;
}
/* ===== KÖRPER (flauschig) ===== */
.face-body {
    position: absolute;
    bottom: -18px;
    left: 12px;
    width: 76px;
    height: 40px;
    background: #fbd5a2;
    border-radius: 0 0 50% 50%;
    z-index: -1;
    box-shadow: inset 0 5px 8px rgba(0,0,0,0.02);
}
/* ===== FÜSSE ===== */
.face-feet {
    position: absolute;
    bottom: -28px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 24px;
}
.face-foot {
    width: 16px;
    height: 8px;
    background: #e8a86a;
    border-radius: 0 0 10px 10px;
}
/* ===== SPRECHBLASE ===== */
.face-bubble {
    position: absolute;
    bottom: 105px;
    left: 110px;
    background: white;
    border-radius: 28px;
    padding: 14px 20px;
    max-width: 280px;
    min-width: 180px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    line-height: 1.45;
    border: 1px solid #f0d5b0;
    z-index: 10001;
    transition: opacity 0.2s;
}
.face-bubble::before {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 20px;
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 12px solid white;
    filter: drop-shadow(0 2px 0 #f0d5b0);
}
.bubble-text {
    margin-right: 20px;
    color: #4a2c1a;
}
.bubble-close {
    position: absolute;
    top: 10px;
    right: 12px;
    background: none;
    border: none;
    cursor: pointer;
    color: #c29a6b;
    font-size: 0.8rem;
}
.bubble-close:hover {
    color: #a56e3a;
}
/* ===== EINGABEBEREICH (schwebend) ===== */
.face-input-area {
    position: absolute;
    bottom: 135px;
    left: 110px;
    background: white;
    border-radius: 50px;
    padding: 6px 12px;
    display: flex;
    gap: 8px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    z-index: 10002;
    border: 1px solid #f0d5b0;
}
#face-input {
    border: none;
    padding: 8px 12px;
    font-size: 0.85rem;
    width: 180px;
    outline: none;
    font-family: 'Montserrat', sans-serif;
}
#face-send {
    background: #fbd5a2;
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a56e3a;
    transition: background 0.2s;
}
#face-send:hover {
    background: #f0c28a;
    color: #7a512c;
}
/* ===== ANIMATIONEN ===== */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-6px); }
}
.face-owl {
    animation: float 3.5s ease-in-out infinite;
}
@keyframes blink {
    0%, 45%, 55%, 100% { top: -100%; }
    48%, 52% { top: 0; }
}
.eyelid {
    animation: blink 4s infinite;
}
@keyframes gentleLook {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(3px, 2px); }
    50% { transform: translate(-2px, -1px); }
    75% { transform: translate(1px, 3px); }
}
.eye-pupil {
    animation: gentleLook 8s infinite ease-in-out;
}
/* Zusätzliche kleine Bewegung der Wangen (atmen) */
@keyframes cheekPulse {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50% { opacity: 0.9; transform: scale(1.05); }
}
.face-cheek {
    animation: cheekPulse 3s infinite;
}