.shine-btn-wrapper-0375020a {
    display: flex;
    width: 100%;
}

.shine-button-0375020a {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    /* Defaults, overridden by Elementor settings */
    --shine-color: rgba(255, 255, 255, 0.15);
    --x: 50%;
    --y: 50%;
}

.shine-button-0375020a:hover {
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
    transform: translateY(-1px);
}

.shine-button-0375020a::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at var(--x) var(--y), var(--shine-color) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 0;
}

.shine-button-0375020a:hover::before {
    opacity: 1;
}

.shine-button-text-0375020a {
    position: relative;
    z-index: 1;
}