/* ==========================================================================
   FP WooCommerce — Shop loop "Add to cart" sempre visibile
   ==========================================================================
   Override per temi (es. Salient/Nectar) che nascondono il bottone fuori
   dall'area visibile mostrandolo solo on-hover.
   ========================================================================== */

body.woocommerce ul.products li.product .product-wrap {
    overflow: visible !important;
}

body.woocommerce ul.products li.product .product-add-to-cart {
    position: static !important;
    height: auto !important;
    margin-top: 0.75rem;
}

body.woocommerce ul.products li.product .product-add-to-cart a.button,
body.woocommerce ul.products li.product .product-add-to-cart a.added_to_cart {
    position: static !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0.7rem 1rem !important;
    box-sizing: border-box;
    text-align: center;
    line-height: 1.2;
    border-radius: 10px;
    font-weight: 600;
    transition: background-color 0.15s ease, transform 0.12s ease, box-shadow 0.12s ease;
}

body.woocommerce ul.products li.product .product-add-to-cart a.button:hover,
body.woocommerce ul.products li.product .product-add-to-cart a.added_to_cart:hover {
    transform: translateY(-1px) !important;
}

body.woocommerce ul.products li.product .product-add-to-cart a.added_to_cart {
    margin-top: 0.4rem !important;
    background: rgba(34, 197, 94, 0.12) !important;
    color: #166534 !important;
    border: 1px solid rgba(34, 197, 94, 0.35) !important;
}

/* Riallinea la zona prezzo/CTA quando il bottone non è più assoluto. */
body.woocommerce ul.products li.product .price {
    margin-bottom: 0.5rem;
}
