
/* --- WIZARD SUCCESS & RECEIPT STYLES --- */
.wiz-success-icon {
    font-size: 4rem;
    color: #30d158;
    margin-bottom: 15px;
    animation: bounceIn 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
}

@keyframes bounceIn {
  0% { transform: scale(0); opacity: 0; }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); opacity: 1; }
}

.wiz-receipt-card {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
    text-align: left;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out 0.2s forwards;
    opacity: 0; 
    transform: translateY(20px);
}

.wiz-receipt-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 4px;
    background: linear-gradient(90deg, #d4af37, #fefefe, #d4af37);
}

.wiz-receipt-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: #ccc;
}

.wiz-receipt-row strong {
    color: white;
}

.wiz-receipt-divider {
    height: 1px;
    background: #333;
    margin: 15px 0;
}

.wiz-receipt-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.1rem;
    color: #d4af37;
    font-weight: bold;
}

.wiz-msg-neutral {
    color: #888;
    font-size: 0.9rem;
    line-height: 1.5;
    animation: fadeIn 1s ease 0.5s forwards;
    opacity: 0;
}

/* WhatsApp Button Pulse */
.btn-whatsapp {
    margin-top: 10px;
    width: 100%;
    background: #25D366;
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s;
}

.btn-whatsapp:hover {
    transform: scale(1.02);
    background: #20bd5a;
}

.btn-whatsapp::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: shine 2s infinite;
}

@keyframes shine {
    100% { left: 100%; }
}

@keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    to { opacity: 1; }
}
