                :root {
            --primary-color: #4a1726;
            --primary-dark: #290813;
            --primary-light: #d39e7f;
            --accent-color: #efefef;
            --secondary-color: #5e646b;
            --text-dark: #2d3748;
            --text-light: #718096;
            --border-color: #e2e8f0;
            --success-color: #38a169;
            --gold-color: #d4af37;
            --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
            --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
            --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            --transition-fast: all 0.2s ease;
        }
        

        
        .row {
            display: flex;
            flex-wrap: wrap;
            margin: 0 -15px;
        }
        
        .col-lg-4 {
            width: 33.3333%;
            padding: 15px;
        }
        
        .cat-item {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: var(--card-shadow);
            transition: var(--transition);
            position: relative;
            height: 100%;
            display: flex;
            flex-direction: column;
            border: none !important;
            padding: 0 !important;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.6s forwards;
        }
        
        .cat-item:nth-child(2) {
            animation-delay: 0.1s;
        }
        
        .cat-item:nth-child(3) {
            animation-delay: 0.2s;
        }
        
        .cat-item:nth-child(4) {
            animation-delay: 0.3s;
        }
        
        .cat-item:nth-child(5) {
            animation-delay: 0.4s;
        }
        
        .cat-item:nth-child(6) {
            animation-delay: 0.5s;
        }
        
        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .cat-item:hover {
            transform: translateY(-15px);
            box-shadow: var(--card-shadow-hover);
        }
        
        .cat-item:hover .cat-img img {
            transform: scale(1.1);
        }
        
        .cat-item:hover .category-overlay {
            opacity: 1;
            visibility: visible;
        }
        
        .cat-img {
            position: relative;
            overflow: hidden;
            height: 220px;
            border-radius: 16px 16px 0 0;
        }
        
        .cat-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.7s ease;
        }
        
        .category-overlay {
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(79, 70, 229, 0.85), rgba(16, 185, 129, 0.85));
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            border-radius: 16px 16px 0 0;
        }
        
        .view-category-btn {
            background: white;
            color: var(--primary-color);
            border: none;
            padding: 12px 24px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .view-category-btn:hover {
            background: var(--primary-dark);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }
        
        .category-content {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .category-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 15px;
        }
        
        .category-count {
            background: var(--light-bg);
            color: var(--primary-color);
            font-weight: 700;
            font-size: 1rem;
            padding: 8px 16px;
            border-radius: 50px;
            display: flex;
            align-items: center;
            gap: 5px;
            transition: var(--transition);
        }
        
        .cat-item:hover .category-count {
            background: var(--primary-color);
            color: white;
        }
        
        .category-name {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--dark-text);
            margin-bottom: 10px;
            transition: var(--transition);
        }
        
        .cat-item:hover .category-name {
            color: var(--primary-color);
        }
        
        .category-description {
            color: var(--light-text);
            margin-bottom: 20px;
            flex-grow: 1;
        }
        
        .category-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: auto;
            padding-top: 15px;
            border-top: 1px solid #e2e8f0;
        }
        
        .category-products {
            font-size: 0.9rem;
            color: var(--light-text);
        }
        
        .category-link {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: var(--transition);
        }
        
        .category-link:hover {
            color: var(--primary-dark);
            gap: 12px;
        }
        
        @media (max-width: 992px) {
            .col-lg-4 {
                width: 50%;
            }
        }
        
        @media (max-width: 768px) {


            .text-center p {
                font-size: 9px!important;
            }
            .col-lg-4 {
                width: 100%;
            }
            


            #categories-section {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
            } 
            .view-category-btn {
                font-size: 10px;
                padding: 4px 10px;
            }
            .view-category-btn i{
                font-size: 10px;
            }
            .cat-img{
                height: 150px;
            }
            .category-content {
                padding: 5px;
                font-size: 10px;  
            }
            .category-name {
                font-size: 11px;
            }
            .category-count {
                font-size: 9px;
                padding: 4px 8px;
            }
            .category-products{
                font-size: 10px;
            }
            .category-link{
                font-size: 10px;
            }
        }
        
        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }
        
        .container-fluid {
            animation: fadeIn 0.8s ease-out;
        }
        
        .new-badge {
            position: absolute;
            top: 20px;
            left: 20px;
            background: var(--accent-color);
            color: white;
            font-weight: 700;
            padding: 6px 15px;
            border-radius: 0 50px 50px 0;
            font-size: 0.8rem;
            z-index: 2;
            box-shadow: 0 4px 8px rgba(245, 158, 11, 0.3);
        }