[x-cloak] { display: none !important; }

@keyframes fade-up {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse-soft {
    0%, 100% { opacity: .55; }
    50% { opacity: 1; }
}
.animate-fade-up {
    animation: fade-up .55s ease both;
}
.animate-fade-up-delay {
    animation: fade-up .7s ease .08s both;
}
.animate-fade-up-delay-2 {
    animation: fade-up .7s ease .16s both;
}
.live-dot {
    animation: pulse-soft 1.6s ease-in-out infinite;
}

.product-grid article {
    transition: transform .25s ease, box-shadow .25s ease;
}
.product-grid article:hover {
    transform: translateY(-3px);
}

.admin-table th {
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #64748b;
}
.admin-table td, .admin-table th {
    padding: .75rem 1rem;
    border-bottom: 1px solid #e2e8f0;
    text-align: left;
}
.stat-tile {
    background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}

.scan-pass { color: #059669; }
.scan-warn { color: #d97706; }
.scan-fail { color: #e11d48; }
