.mobile-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 900;
    display: none;
}

.mobile-cta .cta-button {
    padding: 12px 24px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.coffee-mascot {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 990;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s, transform 0.5s;
    animation: showMascot 0.5s 3s forwards;
    visibility: hidden;
}

@keyframes showMascot {
    to {
        opacity: 1;
        transform: translateY(0);
        visibility: visible;
    }
}

.coffee-mascot.visible {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.mascot-container {
    display: flex;
    align-items: flex-end;
    position: relative;
}

.coffee-bean {
    width: 80px;
    height: 100px;
    position: relative;
    z-index: 2;
    cursor: pointer;
}

.bean-body {
    width: 100%;
    height: 100%;
    background: #5C3F2A;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    animation: bobbing 3s infinite alternate, wiggle 2s infinite;
}

@keyframes bobbing {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-10px);
    }
}

@keyframes wiggle {
    0% {
        transform: rotate(-5deg);
    }
    50% {
        transform: rotate(5deg);
    }
    100% {
        transform: rotate(-5deg);
    }
}

.bean-face {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.eyes {
    display: flex;
    gap: 20px;
    margin-bottom: 10px;
}

.eye {
    width: 10px;
    height: 15px;
    background: #FFF;
    border-radius: 50%;
    position: relative;
    animation: blinkEyes 4s infinite;
}

.eye.left {
    animation-delay: 0.5s;
}

.eye::after {
    content: '';
    position: absolute;
    width: 5px;
    height: 5px;
    background: #000;
    border-radius: 50%;
    top: 5px;
    left: 3px;
}

.mouth {
    width: 25px;
    height: 10px;
    border-bottom: 3px solid #FFF;
    border-radius: 0 0 50% 50%;
    margin-top: 5px;
    animation: smile 3s infinite;
}

.mascot-message {
    position: absolute;
    left: 100px;
    bottom: 40px;
    background: white;
    padding: 15px;
    border-radius: 10px;
    width: 220px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s;
    pointer-events: none;
}

.mascot-message::before {
    content: '';
    position: absolute;
    left: -10px;
    bottom: 15px;
    border-style: solid;
    border-width: 10px 10px 10px 0;
    border-color: transparent white transparent transparent;
}

.coffee-bean:hover + .mascot-message {
    opacity: 1;
    transform: translateX(0);
}


@keyframes blinkEyes {
    0%, 45%, 55%, 100% {
        transform: scaleY(1);
    }
    50% {
        transform: scaleY(0.1);
    }
}

@keyframes smile {
    0%, 100% {
        border-bottom-width: 3px;
        width: 25px;
    }
    50% {
        border-bottom-width: 4px;
        width: 30px;
    }
}

.bean-body::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(rgba(255,255,255,0.2), transparent);
    transform: rotate(30deg);
    animation: shine 6s infinite;
}

@keyframes shine {
    0% {
        opacity: 0;
        transform: translateX(-100%) rotate(30deg);
    }
    15% {
        opacity: 0.3;
    }
    25% {
        opacity: 0;
        transform: translateX(100%) rotate(30deg);
    }
    100% {
        opacity: 0;
        transform: translateX(100%) rotate(30deg);
    }
}