@media print {
    body * {
        visibility: hidden;
    }

    #qrBusinessCard,
    #qrBusinessCard * {
        visibility: visible;
    }

    #qrBusinessCard {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        box-shadow: none !important;
    }
}

.whatsapp-gradient {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.hover-scale {
    transition: transform 0.2s;
}

.hover-scale:hover {
    transform: translateY(-2px);
}

.template-chip {
    transition: all 0.2s;
}

.template-chip:hover {
    background-color: #dcfce7;
    transform: scale(1.02);
}

/* Back to home button styles */
.back-home-btn {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 50px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #374151;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.back-home-btn:hover {
    background: #25D366;
    color: white;
    border-color: #25D366;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.back-home-btn:hover i {
    color: white;
}

@media (max-width: 640px) {
    .back-home-btn {
        top: 10px;
        right: 10px;
        padding: 8px 15px;
        font-size: 14px;
    }
}