.premium-cta-wrapper-d0349860 {
    position: fixed;
    /* Bottom and right controlled by Elementor settings, with defaults defined below */
    bottom: 30px;
    right: 40px;
    width: 150px;
    height: 42px;
    border-radius: 28px;
    background: linear-gradient(135deg, #00D26A, #2563EB);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: 0 0 15px rgba(0, 210, 106, 0.2), 0 0 15px rgba(37, 99, 235, 0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2px 6px;
    z-index: 9999;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none !important;
    cursor: pointer;
    overflow: hidden;
}

/* Base Hover State */
.premium-cta-wrapper-d0349860:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 8px 25px rgba(0, 210, 106, 0.4), 
        0 8px 25px rgba(37, 99, 235, 0.4),
        inset 0 0 10px rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Moving gradient overlay effect for extra glow */
.premium-cta-wrapper-d0349860::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        from 0deg,
        transparent 0%,
        rgba(255, 255, 255, 0.1) 20%,
        rgba(255, 255, 255, 0.4) 50%,
        rgba(255, 255, 255, 0.1) 80%,
        transparent 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: rotate-glow-d0349860 3s linear infinite;
    pointer-events: none;
    z-index: -1;
}

.premium-cta-wrapper-d0349860:hover::before {
    opacity: 1;
}

@keyframes rotate-glow-d0349860 {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.premium-cta-left-icon-d0349860 {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #fff;
    font-size: 12px;
    background: rgba(255, 255, 255, 0.15);
    transition: background 0.3s ease;
}

.premium-cta-wrapper-d0349860:hover .premium-cta-left-icon-d0349860 {
    background: rgba(255, 255, 255, 0.25);
}

.premium-cta-left-icon-d0349860 svg {
    width: 12px;
    height: 12px;
    fill: #fff;
}
.premium-cta-left-icon-d0349860 i {
    color: #fff;
}

.premium-cta-content-d0349860 {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 0 4px;
    text-align: center;
    justify-content: center;
    z-index: 1; /* Keep above rotating glow */
}

.premium-cta-title-d0349860 {
    font-size: 11px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1;
    font-family: inherit;
    white-space: nowrap;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.premium-cta-right-icon-d0349860 {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #fff;
    font-size: 10px;
    background: rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.premium-cta-wrapper-d0349860:hover .premium-cta-right-icon-d0349860 {
    background: rgba(255, 255, 255, 0.25);
    transform: translateX(2px);
}

.premium-cta-right-icon-d0349860 svg {
    width: 10px;
    height: 10px;
    fill: #fff;
}
.premium-cta-right-icon-d0349860 i {
    color: #fff;
}

/* Fix Elementor editor display */
.elementor-editor-active .premium-cta-wrapper-d0349860 {
    position: relative;
    bottom: auto;
    right: auto;
    margin: 20px auto;
}