/* Typography */
.category-main-title {
    font-family: 'Georgia', serif; /* Matching the serif font in image */
    font-size: 2rem;
    color: #1a1a1a;
}

.product-count {
    font-size: 1.5rem;
    color: #6c757d;
    font-weight: normal;
}

/* Breadcrumb Styling */
.breadcrumb {
    font-size: 0.85rem;
    background: transparent;
    padding: 0;
}
.breadcrumb-item a {
    color: #6c757d;
    text-decoration: none;
}
.breadcrumb-item.active {
    color: #333;
}

/* Sidebar Styling */
.sidebar-card {
    background: #fff;
}

.category-list li {
    padding: 10px 0;
}

.category-list li a {
    text-decoration: none;
    color: #333;
    font-size: 0.95rem;
    display: block;
    transition: color 0.2s;
}

.category-list li a:hover {
    color: #b71c1c; /* Corporate red hover color */
}

.category-list li a span {
    font-weight: bold;
    font-size: 1.2rem;
    line-height: 1;
}

/* Banner Styling */
.banner-container img {
    object-fit: cover;
    min-height: 250px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .category-main-title {
        font-size: 1.5rem;
    }
    .product-count {
        font-size: 1.1rem;
    }
}


/* Default (Desktop) */
.category-list {
    display: block;
}

/* Small devices only */
@media (max-width: 767px) {
    .category-list {
        display: none;
    }

    .sidebar-card.active .category-list {
        display: block;
    }

    .toggle-icon {
        transition: transform 0.3s ease;
    }

    .sidebar-card.active .toggle-icon {
        transform: rotate(180deg);
    }

    .sidebar-toggle {
        cursor: pointer;
    }
}
