/* Nexus Demo Store - Custom Styles */

.product-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px -5px rgba(15, 23, 42, 0.1), 0 4px 10px -6px rgba(15, 23, 42, 0.05);
}

.product-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
}

.btn-primary {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    transition: all 0.2s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1E293B 0%, #334155 100%);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.3);
}

.btn-crypto {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
    transition: all 0.2s ease;
}

.btn-crypto:hover {
    background: linear-gradient(135deg, #D97706 0%, #B45309 100%);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
}

.status-pending {
    background-color: #FEF3C7;
    color: #92400E;
}

.status-detected,
.status-confirming {
    background-color: #DBEAFE;
    color: #1E40AF;
}

.status-confirmed {
    background-color: #D1FAE5;
    color: #065F46;
}

.status-expired,
.status-failed {
    background-color: #FEE2E2;
    color: #991B1B;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    animation: pulse-dot 1.5s ease-in-out infinite;
}
