/*
 Theme Name:   Twenty Twenty-Five Child
 Template:     twentytwentyfive
 Version:      1.0.0
*/


.menu-category-section  .wpc-row {
    display: flex;
    flex-direction: column;
}

.menu-category-section .wpc-row .wpc-col-lg-6 {
    min-width: 100%;
}


.menu-category-section .wpc-row .wpc-col-lg-6 .wpc-row{
    display: flex;
    flex-direction: row;
}

.wpc-food-menu-item > .wpc-row {
        margin: unset;
        min-width: 100%;

}

.wp-block-group.alignwide.is-content-justification-space-between.is-nowrap.is-layout-flex.wp-container-core-group-is-layout-cb46ffcb.wp-block-group-is-layout-flex {
    display: none;
}

.wp-block-woocommerce-product-collection.alignwide.is-layout-flow.wp-block-woocommerce-product-collection-is-layout-flow {
    display: none;
}

.custom-menu-wrapper {
    max-width: var(--wp--style--global--wide-size);
    margin: auto;
}


/* Container generale */
.custom-menu-wrapper { max-width: 1100px; margin: 0 auto; padding: 20px; }

/* Filtri Sticky (rimangono in alto allo scroll) */
.wpc-filter-nav { 
    display: flex; justify-content: center; gap: 12px; list-style: none; padding: 15px 0; 
    position: sticky; top: 0; background: rgba(255,255,255,0.95); backdrop-filter: blur(5px);
    z-index: 999; margin-bottom: 40px; border-bottom: 1px solid #eee;
}

.filter-btn { 
    padding: 10px 22px; border: 1px solid #eee; border-radius: 30px; text-decoration: none; 
    color: #444; font-weight: bold; font-size: 14px; transition: 0.3s; background: #fff;
}

.filter-btn.active { 
    background: #e44d26 !important; color: #fff !important; border-color: #e44d26; 
    box-shadow: 0 4px 10px rgba(228, 77, 38, 0.3);
}

/* Griglia dei prodotti */
.wpc-custom-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); gap: 25px; }

/* La Card */
.menu-card { 
    background: #fff; border-radius: 15px; padding: 20px; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.05); border: 1px solid #f9f9f9;
}

.card-content { display: flex; justify-content: space-between; align-items: flex-start; gap: 15px; }

.text-side { flex: 1; }
.product-title { margin: 0 0 5px 0; font-size: 18px; color: #111; font-weight: bold; }
.product-desc { font-size: 13px; color: #888; margin-bottom: 12px; line-height: 1.4; }
.product-price { background: #ffeb3b; padding: 4px 10px; font-weight: 800; border-radius: 6px; font-size: 14px; }

/* Lato Immagine e Bottone */
.image-side { width: 100px; flex-shrink: 0; text-align: center; }
.img-wrapper img { width: 100px; height: 100px; object-fit: cover; border-radius: 12px; margin-bottom: 8px; box-shadow: 0 3px 8px rgba(0,0,0,0.1); }

.add-btn { 
    display: block; background: #e44d26; color: #fff; text-decoration: none; 
    font-size: 10px; font-weight: bold; padding: 10px 0; border-radius: 10px; 
    text-transform: uppercase; letter-spacing: 1px;
}

/* Mobile */
@media (max-width: 600px) {
    .wpc-custom-grid { grid-template-columns: 1fr; }
    .card-content { flex-direction: column-reverse; align-items: center; text-align: center; }
    .image-side { width: 100%; margin-bottom: 15px; }
}