/* =========================================
   Filtri Menu – Linee di Prodotti / Esigenze Specifiche
   ========================================= */

.filtri-menu {
    font-family: inherit;
    font-size: 15px;
}

.filtri-menu__group {
    margin-bottom: 8px;
}

/* Lista voci */
.filtri-menu__list {
    list-style: none;
    margin: 0 0 4px 0;
    padding: 0;
}

.filtri-menu__item {
    border: none;
}

/* Voci 11+ nasconte quando la lista è collassata */
.filtri-menu__list.is-collapsed .filtri-menu__item--extra {
    display: none;
}

/* Link voce – identico a .placify-catmenu__subcat-link con border-left per stato attivo */
.filtri-menu__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 10px 14px;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    border-bottom: 1px solid #e8e8e8;
    border-left: 2px solid transparent;
    transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

/* Hover: sfondo beige chiaro + bordo sinistro – stile macrocategoria OUT */
.filtri-menu__link:hover {
    background-color: rgba(218, 201, 185, 0.2);
    border-left-color: #DAC9B9;
    color: #1a1a1a;
    text-decoration: none;
}

/* Voce selezionata */
.filtri-menu__link.is-current {
    background-color: rgba(218, 201, 185, 0.2);
    border-left-color: #DAC9B9;
    font-weight: 700;
    color: #1a1a1a;
}

/* Chevron: sempre a destra (›), sempre grigio */
.filtri-menu__arrow {
    color: #999;
    font-size: 18px;
    flex-shrink: 0;
    margin-left: 8px;
    line-height: 1;
}

/* Pulsante "Mostra altri / Mostra meno" */
.filtri-menu__toggle {
    display: flex;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    padding: 8px 0 8px 14px;
    font-size: 13px;
    color: #888;
    cursor: pointer;
    transition: color 0.15s ease;
    width: 100%;
    text-align: left;
}

.filtri-menu__toggle::after {
    content: '▾';
    font-size: 11px;
    transition: transform 0.2s ease;
    display: inline-block;
}

.filtri-menu__toggle.is-expanded::after {
    transform: rotate(180deg);
}

.filtri-menu__toggle:hover {
    color: #4E3629;
}

@media (max-width: 768px) {
    .filtri-menu__link {
        padding: 9px 0 9px 14px;
        font-size: 14px;
    }
}
/* =========================================
   Tag classificazione prodotto – scheda prodotto
   ========================================= */

.product-classification-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.pctag {
    display: inline-block;
    padding: 4px 12px;
    font-size: 12px;
    font-family: "century-gothic", sans-serif;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-decoration: none;
    color: #666;
    border: 1px solid #bbb;
    background: transparent;
    transition: none;
    white-space: nowrap;
}

.pctag:hover {
    background: rgba(0, 0, 0, 0.05);
    color: #333;
    border-color: #999;
    text-decoration: none;
}
