/* 
* Premium Modern Styles for Lottie Widget 
*/

.lcake-lottie-wrapper {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.lcake-lottie-container {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    width: 100%;
    max-width: 100%; /* controlled by Elementor */
    transition: all 0.4s ease;
}

/* Optional wrapper hover scale */
.lcake-lottie-wrapper:hover .lcake-lottie-container {
    transform: translateY(-2px);
}

/* Custom Play Controls */
.lcake-lottie-controls {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
    padding: 10px 20px;
    background: rgba(17, 24, 39, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    opacity: 0.9;
    transition: all 0.3s ease;
}

.lcake-lottie-controls:hover {
    opacity: 1;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.lcake-lottie-controls button {
    background: transparent;
    border: none;
    padding: 8px;
    margin: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.lcake-lottie-controls button svg {
    width: 24px;
    height: 24px;
    fill: #ffffff;
    transition: all 0.2s ease;
}

.lcake-lottie-controls button:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
}

/* Alignments natively supported via Elementor */
