/* Ensure product card is positioning context */
.woocommerce ul.products li.product {
    position: relative;
}

/* Overlay container */
.fm-plp-atc-overlay {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 20;
}

/* Remove default Woo button styling */
.products .add_to_cart_button.fm-plp-atc-btn {
    padding: 4px 0px !important;
    background: transparent;
    box-shadow: none;
}

/* Icon image */
.fm-plp-atc-icon-img {
    width: 42px;
    height: 42px;
    display: block;
}

@media screen and (min-width: 768px) {
    /* Optional hover effect */
    .fm-plp-atc-btn:hover .fm-plp-atc-icon-img {
        transform: scale(1.05);
        transition: transform 0.15s ease;
    }
}