/* ====================================================================
   WIZARD BUTTON - PREMIUM DESIGN
   ==================================================================== */

.btn-wizard-premium {
    position: relative;
    background: linear-gradient(135deg,
            rgba(255, 215, 0, 0.15) 0%,
            rgba(212, 175, 55, 0.25) 100%);
    border: 2px solid rgba(255, 215, 0, 0.4);
    color: #fff;
    padding: 1.2rem 2.5rem;
    border-radius: 60px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow:
        0 8px 24px rgba(255, 215, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset,
        0 0 40px rgba(255, 215, 0, 0.1);
    overflow: hidden;
}

.btn-wizard-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.2),
            transparent);
    transition: left 0.6s ease;
}

.btn-wizard-premium:hover::before {
    left: 100%;
}

.btn-wizard-premium:hover {
    transform: translateY(-3px) scale(1.02);
    border-color: rgba(255, 215, 0, 0.8);
    background: linear-gradient(135deg,
            rgba(255, 215, 0, 0.25) 0%,
            rgba(212, 175, 55, 0.35) 100%);
    box-shadow:
        0 12px 32px rgba(255, 215, 0, 0.35),
        0 0 0 1px rgba(255, 255, 255, 0.2) inset,
        0 0 60px rgba(255, 215, 0, 0.2);
}

.btn-wizard-premium:active {
    transform: translateY(-1px) scale(1);
}

.wizard-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(255, 215, 0, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wizard-icon-wrapper i {
    color: #FFD700;
    font-size: 1rem;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {

    0%,
    100% {
        transform: rotate(0deg) scale(1);
        filter: brightness(1);
    }

    50% {
        transform: rotate(180deg) scale(1.1);
        filter: brightness(1.3);
    }
}

.btn-wizard-premium:hover .wizard-icon-wrapper {
    background: rgba(255, 215, 0, 0.3);
    transform: rotate(360deg);
}

.wizard-text {
    flex: 1;
    text-align: center;
    background: linear-gradient(135deg, #fff 0%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.wizard-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: rgba(255, 215, 0, 0.15);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wizard-arrow i {
    color: #FFD700;
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.btn-wizard-premium:hover .wizard-arrow {
    background: rgba(255, 215, 0, 0.3);
}

.btn-wizard-premium:hover .wizard-arrow i {
    transform: translateX(4px);
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .btn-wizard-premium {
        padding: 1rem 2rem;
        font-size: 0.95rem;
        gap: 0.75rem;
        max-width: 100%;
        width: auto;
    }

    .wizard-icon-wrapper,
    .wizard-arrow {
        width: 28px;
        height: 28px;
    }

    .wizard-icon-wrapper i {
        font-size: 0.9rem;
    }

    .wizard-arrow i {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .btn-wizard-premium {
        padding: 0.9rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
        max-width: 320px;
    }
}

/* Small Variant */
.btn-wizard-premium.small {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
    gap: 0.5rem;
}

.btn-wizard-premium.small .wizard-icon-wrapper,
.btn-wizard-premium.small .wizard-arrow {
    width: 24px;
    height: 24px;
}

.btn-wizard-premium.small .wizard-icon-wrapper i,
.btn-wizard-premium.small .wizard-arrow i {
    font-size: 0.8rem;
}