.product-categories {
    margin-bottom: 20px; /* Adjust spacing as needed */
}

.category-list {
    /* display: flex; */
    /* flex-wrap: wrap; Allow wrapping if categories exceed width */
}

.category-item {
    margin-right: 15px; /* Adjust spacing between categories */
    white-space: nowrap; /* Prevent wrapping of category items */
}

.category-item:last-child {
    margin-right: 0; /* Remove right margin from the last item */
}

.category-item {
    display: inline;
}

.category-item a {
    display: inline-block;
    padding: 5px 10px; /* Adjust padding as needed */
    background-color: #f2eded7d; /* Example background color */
    text-decoration: none;
    color: #555; /* Text color */
    border-radius: 5px;
}

.category-subtitle {
    font-size: 16px; /* Adjust font size for subtitle */
    margin-top: 5px; /* Space between link and subtitle */
    color: #000; /* Subtitle text color */
    display: inline;
    margin-left: 15px;
    font-weight: bold;
}
