.category-title {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
}

/* Scrollable category container */
.category-slider {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    white-space: nowrap;
    padding: 10px;
    scrollbar-width: thin;
    scrollbar-color: #006cae transparent;
}

/* Hide default scrollbar for Webkit browsers */
.category-slider::-webkit-scrollbar {
    height: 5px;
}

.category-slider::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}

.category-slider::-webkit-scrollbar-track {
    background: transparent;
}

/* Category box */
.category-item {
    flex: 0 0 auto;
    width: 120px;
    text-align: center;
    background: #fff;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Hover effect */
.category-item:hover {
    transform: scale(1.05);
}

/* Image styling */
.category-image {
    width: 100%;
    height: 100px;
    overflow: hidden;
    border-radius: 8px;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Category text - stays inside */
.category-name {
    font-size: 14px;
    font-weight: bold;
    color: #333;
    margin-top: 8px;
    white-space: normal;
    word-wrap: break-word;
    max-width: 100%;
    text-align: center;
}
 
.product-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background-color: #f9f9f9;
}

.product-details {
    flex: 1;
}

.product-name {
    font-size: 14px;
    font-weight: bold;
    margin: 5px 0;
}

.product-price {
    color: #f00;
    font-weight: bold;
}

.product-rating {
    font-size: 14px;
    color: #089106;
    font-weight: bold;
}

.serving-info {
    font-size: 12px;
    color: #1230ae;
    margin-left: 3px;
    margin-right: 56px;
}

.product-image {
    width: 70px;
    height: 70px;
    border-radius: 10px;
    margin-right: 15px;
    object-fit: cover;
    margin-top: -27px;
}
