/**
 * Golden Hive Blocks — Loop add-to-cart button.
 * Replaces the core WooCommerce loop button (see includes/add-to-cart.php).
 * Behaviour (variation picker / add) lives in the quick-add modal.
 */

.ghb-atc {
    margin-top: auto;       /* pin the button to the bottom of the card */
    padding-top: 6px;
}

.ghb-atc-trigger {
    display: block;
    width: 100%;
    padding: 10px 14px;
    border: none;
    border-radius: 8px;
    background: #721124;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .03em;
    text-transform: uppercase;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    transition: filter .15s ease, background .15s ease;
}
.ghb-atc-trigger:hover {
    filter: brightness(1.1);
    color: #fff;
}
.ghb-atc--disabled .ghb-atc-trigger,
.ghb-atc-trigger[aria-disabled="true"] {
    background: #e2e2e6;
    color: #8a8a90;
    cursor: not-allowed;
    pointer-events: none;
}
