.category-menu {
    position: sticky;
    top: 0;
    background-color: rgba(255, 255, 255, 0.7);
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 12px 0;
    z-index: 100;
    transform-origin: top;
    transform: scaleY(0);
    opacity: 0;
    overflow: hidden;
    transition: transform 0.35s ease, opacity 0.35s ease;
}

    .category-menu.open {
        transform: scaleY(1);
        opacity: 1;
    }

    .category-menu a {
        font-weight: 600;
        padding: 10px 18px;
        text-decoration: none;
        border-radius: 25px;
        margin: 5px 8px;
        transition: background-color 0.3s, color 0.3s;
        color: #4E342E;
    }

        .category-menu a.active {
            background-color: #A52A2A !important;
            color: #ffffff !important;
        }

        .category-menu a:hover {
            color: #4E342E;
        }


.separator-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.title-separator {
    display: block;
    width: 189px;
    height: 24px;
}

.product-card {
    border-radius: 15px;
    background-color: #FFF8E1;
    padding: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.2s;
    height: 100%;
}

    .product-card:hover {
        transform: translateY(-5px);
    }

    .product-card img {
        width: 67px;
        height: 67px;
        object-fit: cover;
        border-radius: 8px;
        margin-bottom: 10px;
    }

    .product-card h5 {
        font-size: 1.1rem;
        font-weight: bold;
        margin: 10px 0 5px;
        color: #4E342E;
    }

    .product-card p {
        font-size: 0.9rem;
        color: #6D4C41;
        margin: 0 0 10px;
    }

    .product-card .price {
        color: #A0522D;
        font-weight: 600;
    }

#toggleCategoryMenu {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 200;
}
