body {
    background-color: #000;
    color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Hide scrollbar for category pills */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}
.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Subtle glowing background effect */
.bg-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.03) 0%, rgba(0,0,0,0) 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    pointer-events: none;
}

.glass-nav {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.glass-card {
    background: rgba(17, 17, 17, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
}

.glass-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 10px 40px -10px rgba(255,255,255,0.05);
}

.text-gradient {
    background: linear-gradient(180deg, #FFFFFF 0%, #71717A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Abstract Product Image Backgrounds */
.product-bg-1 { background: linear-gradient(135deg, #1f1c2c 0%, #928dab 100%); }
.product-bg-2 { background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%); }
.product-bg-3 { background: linear-gradient(135deg, #141e30 0%, #243b55 100%); }
.product-bg-4 { background: linear-gradient(135deg, #232526 0%, #414345 100%); }
.product-bg-5 { background: linear-gradient(135deg, #000000 0%, #434343 100%); }
.product-bg-6 { background: linear-gradient(135deg, #16222a 0%, #3a6073 100%); }

/* Reveal on scroll animation */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
#seller-gate {
    transition: opacity 0.25s ease;
}
#seller-gate.gate-hidden {
    opacity: 0;
    pointer-events: none;
}
.seller-gate-card {
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}
.seller-gate-card.card-visible {
    opacity: 1;
    transform: translateY(0);
}
