/* Custom CSS for Ibrahim Anbashi Garment Factory Website */

/* Typography Rules for Multilingual Support */
html[lang="ar"] {
    font-family: 'Cairo', sans-serif;
}

html[lang="tr"],
html[lang="en"] {
    font-family: 'Inter', sans-serif;
}

/* LTR Adjustments when Turkish or English is active */
html[dir="ltr"] .catalog-item a {
    float: right;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

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

::-webkit-scrollbar-track {
    background: #0f172a;
}

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

::-webkit-scrollbar-thumb:hover {
    background: #b45309;
}

/* Active Filter Tab Styling */
.catalog-tab.active {
    background-color: #0f172a !important;
    color: #ffffff !important;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.25);
    border-color: #c49a45 !important;
}

/* Catalog Filter Animations */
.catalog-item {
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.catalog-item.hidden-item {
    display: none !important;
    opacity: 0;
    transform: scale(0.95);
}

/* Luxury Card Hover Effect */
.catalog-item:hover {
    border-color: rgba(196, 154, 69, 0.4);
}

/* Counter Pulse Animation */
@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 15px rgba(196, 154, 69, 0.2);
    }
    50% {
        box-shadow: 0 0 25px rgba(196, 154, 69, 0.5);
    }
}

.glow-box {
    animation: pulseGlow 3s infinite ease-in-out;
}
