.category-header {
    /* text-align: center; */
    margin-bottom: 20px;
}

.category-name {
    color: white;
}

.category-header h1 {
    font-size: 32px;
    color: #333;
}

.category-header h4 {
    font-size: 18px;
    color: #666;
    margin-top: 10px;
}

.subcategories-list {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.subcategory-item {
    background-color: #071d2b;
    color: white;
    padding: 20px;
    text-align: center;
    border-radius: 5px;
    width: 280px;
    transition: all 0.3s ease;
}

.product-count{
    padding-top: 10px;
}

.subcategory-item:hover {
    /* background-color: #444; */
    transform: scale(1.05);
}

.subcategory-item img {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
    border-radius: 5px;
}

.subcategory-item h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

.subcategory-item p {
    font-size: 14px;
    margin-bottom: 0;
}

.product-listing {
    margin-top: 20px;
}