        :root {
            --primary-color: #18185B;
            --secondary-color: #1a1c1e;
            --text-dark: #333;
            --text-light: #666;
            --border-color: #e0e0e0;
        }
        
        body {
            font-family: 'Roboto', sans-serif;
            color: var(--text-dark);
            line-height: 1.6;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Roboto Condensed', sans-serif;
            font-weight: 700;
        }
        
        /* Header Styles */
        .header-top {
            background-color: #1a1a1a;
            color: #fff;
            padding: 10px 0;
            font-size: 14px;
        }
        
        .header-top a {
            color: #fff;
            margin: 0 8px;
            text-decoration: none;
        }
        
        .header-top a:hover {
            color: var(--primary-color);
        }
        
        .header-top i {
            margin-right: 5px;
        }
        
        .navbar {
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .navbar-brand img {
            height: 50px;
        }
        
        .navbar-nav .nav-link {
            color: var(--text-dark);
            font-weight: 500;
            padding: 10px 20px;
            text-transform: uppercase;
            font-size: 14px;
        }
        
        .navbar-nav .nav-link:hover,
        .navbar-nav .nav-link.active {
            color: var(--primary-color);
        }
        
        /* Page Title */
        .page-title-section {
            background-color: #f8f9fa;
            padding: 40px 0;
            margin-bottom: 40px;
        }
        
        .page-title-section h1 {
            font-size: 36px;
            margin-bottom: 10px;
        }
        
        .breadcrumb {
            background-color: transparent;
            padding: 0;
            margin: 0;
        }
        
        .breadcrumb-item a {
            color: var(--text-dark);
            text-decoration: none;
        }
        
        .breadcrumb-item a:hover {
            color: var(--primary-color);
        }
        
        /* Toolbar */
        .products-toolbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
            padding: 15px;
            background-color: #f8f9fa;
            border-radius: 4px;
        }
        
        .result-count {
            color: var(--text-light);
            margin: 0;
        }
        
        .products-toolbar select {
            padding: 8px 15px;
            border: 1px solid #ddd;
            border-radius: 4px;
        }
        
        /* Product Grid */
        .product-card {
            background-color: #fff;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            overflow: hidden;
            margin-bottom: 30px;
            transition: all 0.3s;
        }
        
        .product-card:hover {
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transform: translateY(-5px);
        }
        
        .product-image {
            position: relative;
            overflow: hidden;
            background-color: #f8f9fa;
        }
        
        .product-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        .product-card .btn-read-more {
            position: absolute;
            bottom: 10px;
            left: 50%;
            transform: translateX(-50%);
            background-color: var(--primary-color);
            color: #fff;
            padding: 8px 20px;
            border-radius: 4px;
            text-decoration: none;
            opacity: 0;
            transition: opacity 0.3s;
            font-size: 14px;
            font-weight: 600;
        }
        
        .product-card:hover .btn-read-more {
            opacity: 1;
        }
        
        .product-info {
            padding: 20px;
            text-align: center;
        }
        
        .product-info h3 {
            font-size: 18px;
            margin-bottom: 10px;
        }
        
        .product-info h3 a {
            color: var(--text-dark);
            text-decoration: none;
        }
        
        .product-info h3 a:hover {
            color: var(--primary-color);
        }
        
        /* Sidebar */
        .sidebar {
            background-color: #f8f9fa;
            padding: 20px;
            border-radius: 8px;
        }
        
        .sidebar-widget {
            margin-bottom: 30px;
        }
        
        .sidebar-widget h3 {
            font-size: 18px;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--primary-color);
        }
        
        .search-form {
            display: flex;
            margin-bottom: 20px;
        }
        
        .search-form input {
            flex: 1;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 4px 0 0 4px;
        }
        
        .search-form button {
            background-color: var(--primary-color);
            color: #fff;
            border: none;
            padding: 10px 20px;
            border-radius: 0 4px 4px 0;
        }
        
        .category-list {
            list-style: none;
            padding: 0;
        }
        
        .category-list li {
            margin-bottom: 8px;
        }
        
        .category-list a {
            color: var(--text-dark);
            text-decoration: none;
            display: block;
            padding: 5px 0;
        }
        
        .category-list a:hover,
        .category-list a.active {
            color: var(--primary-color);
        }
        
        .category-list .children {
            padding-left: 20px;
            margin-top: 5px;
        }
        
        /* Pagination */
        .pagination {
            justify-content: center;
            margin-top: 40px;
        }
        
        .pagination .page-link {
            color: var(--text-dark);
            border: 1px solid #ddd;
            margin: 0 3px;
        }
        
        .pagination .page-link:hover {
            background-color: var(--primary-color);
            color: #fff;
            border-color: var(--primary-color);
        }
        
        .pagination .page-item.active .page-link {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
        }
        
        /* Footer */
        /* Footer */
        .footer {
            background-color: #1a1c1e;
            color: #fff;
            padding: 60px 0 30px;
        }

        .footer h5 {
            font-size: 20px;
            margin-bottom: 25px;
            color: #ffd700;
        }

        .footer ul {
            list-style: none;
            padding: 0;
        }

        .footer ul li {
            margin-bottom: 12px;
        }

        .footer ul li a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer ul li a:hover {
            color: #ffd700;
        }

        .footer-bottom {
            border-top: 1px solid #333;
            margin-top: 40px;
            padding-top: 30px;
            text-align: center;
            color: #999;
        }
        
        .social-icons a {
            color: #fff;
            margin: 0 10px;
            font-size: 18px;
        }
        
        .social-icons a:hover {
            color: var(--primary-color);
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .products-toolbar {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .products-toolbar select {
                margin-top: 10px;
                width: 100%;
            }
        }
