/* Cute Eyes Button Styles */
.elementor-button, .e-form-button, .cute-button-3dea1474 {
    position: relative !important;
    overflow: visible !important; /* Allow eyes to peek out from behind */
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1) !important;
    z-index: 1;
}

/* Eye Container hidden behind the button, positioned near the top-center or bottom-center */
.cute-eyes-container-3dea1474 {
    display: inline-flex;
    gap: 4px;
    align-items: center;
    pointer-events: none;
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%) scale(0.8);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s cubic-bezier(0.25, 1, 0.5, 1), transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Button lift effect reveals the eyes peeking out */
.elementor-button:hover,
.e-form-button:hover,
button[type="submit"]:hover {
    transform: translateY(-8px) !important;
}

/* Show and scale up eyes on hover */
.elementor-button:hover .cute-eyes-container-3dea1474,
.e-form-button:hover .cute-eyes-container-3dea1474,
button[type="submit"]:hover .cute-eyes-container-3dea1474 {
    opacity: 1;
    transform: translateX(-50%) scale(1) translateY(2px);
}

/* Individual Eye */
.cute-eye-3dea1474 {
    width: 14px;
    height: 14px;
    background-color: #ffffff;
    border-radius: 50%;
    position: relative;
    border: 1px solid #333333;
    display: inline-block;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
}

/* Pupil */
.cute-pupil-3dea1474 {
    width: 6px;
    height: 6px;
    background-color: #111111;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.05s linear;
}

/* Little white spark in pupil */
.cute-pupil-3dea1474::after {
    content: '';
    position: absolute;
    top: 1px;
    left: 1px;
    width: 2px;
    height: 2px;
    background-color: #ffffff;
    border-radius: 50%;
}
