/* ── Oculta ícone laranja do carrinho nos cards ─────────────────────────────── */
.vs-product-box1 .actions-btn { display: none !important; }
.fyc-add-btn ~ .added_to_cart,
.vs-product-box1 .added_to_cart.wc-forward { display: none !important; }

/* ── Controles +/− e botão ADICIONAR nos cards ─────────────────────────────── */
.fyc-loop-ctrl {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 12px 14px;
    gap: 10px;
}
.fyc-loop-qty {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 50px;
    overflow: hidden;
    background: #fff;
}
.fyc-btn {
    width: 34px; height: 34px;
    border: none; background: transparent;
    font-size: 20px; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; line-height: 1;
    transition: background .2s;
}
.fyc-btn:hover { background: #f0f0f0; }
.fyc-count {
    min-width: 36px; text-align: center;
    font-size: 15px; font-weight: 600; color: #222;
    border-left: 1px solid #ddd; border-right: 1px solid #ddd;
    line-height: 34px; padding: 0 2px;
}
.fyc-add-btn {
    display: block !important;
    width: 100%; text-align: center;
    background: #4caf50 !important;
    color: #fff !important;
    font-size: 13px !important; font-weight: 700 !important;
    letter-spacing: 1px;
    padding: 10px 16px !important;
    border-radius: 50px !important;
    border: none !important;
    text-decoration: none !important;
    transition: background .2s, opacity .2s !important;
    cursor: pointer;
}
.fyc-add-btn:hover { background: #43a047 !important; color: #fff !important; }
.fyc-add-btn[data-blocked="1"] { opacity: .4 !important; cursor: not-allowed !important; }

/* Icone Vegetarianos: carrot FA */
button[data-filter=".vegetarianos"] i::before {
    font-family: "Font Awesome 5 Pro" !important;
    font-weight: 900 !important;
    content: "\f787" !important;
}

/* Altura fixa do titulo do card: maximo 3 linhas */
.vs-product-box1 .product-title {
    display: -webkit-box !important;
    -webkit-line-clamp: 3 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    min-height: 3.9em;
}
