/* Custom Styling for Torqueline Power Tools Pvt. Ltd. (tptools.co.in) */

@layer utilities {
    .font-heading {
        font-family: 'Montserrat', sans-serif;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Glassmorphism Cards */
.glass-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(226, 232, 240, 0.8);
}

/* Category Filter Active State */
.cat-btn.active {
    background-color: #111418 !important;
    color: #ffffff !important;
    border-color: #111418 !important;
    box-shadow: 0 4px 12px rgba(17, 20, 24, 0.15);
}

/* Custom Pulsing Badge */
.pulse-badge {
    animation: pulse-ring 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse-ring {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}
