.mesh-bg {
    background-color: #f8f6f5;
    background-image: 
        radial-gradient(at 0% 0%, rgba(255, 82, 0, 0.05) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(255, 82, 0, 0.03) 0px, transparent 50%);
}

.dark .mesh-bg {
    background-color: #1a100c;
    background-image: 
        radial-gradient(at 0% 0%, rgba(255, 82, 0, 0.1) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(255, 82, 0, 0.05) 0px, transparent 50%);
}

.no-scrollbar::-webkit-scrollbar {
    display: none;
}
.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.chip {
    @apply shrink-0 px-5 py-2.5 rounded-full text-xs font-bold uppercase tracking-widest transition-all border;
    background: white;
    border-color: #e5e7eb;
    color: #6b7280;
}

.dark .chip {
    background: #2a1e19;
    border-color: rgba(255, 255, 255, 0.05);
    color: #9ca3af;
}

.chip-active {
    @apply bg-primary text-white border-primary shadow-glow;
}

.shadow-glow {
    box-shadow: 0 0 15px rgba(255, 82, 0, 0.25);
}

.fill-1 {
    font-variation-settings: 'FILL' 1;
}
