/*
Theme Name: Augury Child
Description: Safe child theme for Soul Street
Author: Soul Street
Template: augury
Version: 1.0.0
*/

/* ============================================================
   SLEDGEHAMMER UX FIX: KILLS ALL SHOP SLIDES & DELAYS
   ============================================================ */

/* 1. Stop the whole card from sliding/shifting */
.woocommerce ul.products li.product .product-wrapper,
.woocommerce ul.products li.product .product-wrapper:hover {
    transition: none !important;
    transform: none !important;
}

/* 2. Target the exact theme selector used for the "Slide Up" movement */
.woocommerce ul.products li.product .product-buttons-wrapper.product-button a,
.woocommerce ul.products li.product .product-buttons-wrapper.product-button a:hover,
.woocommerce ul.products li.product:hover .product-buttons-wrapper.product-button a {
    transform: none !important; /* Kills the -100% sliding movement */
    transition: none !important;  /* Kills the 0.3s delay */
    opacity: 1 !important;        /* Makes it visible immediately */
    visibility: visible !important;
    bottom: 20px !important;      /* Forces it to stay at the bottom */
}

/* 3. Force the button to be instant and clickable */
.soul-instant-click, 
.dt-sc-button.too-small {
    pointer-events: auto !important;
    position: relative !important;
    z-index: 99999 !important;
    display: inline-block !important;
    transform: none !important;
    transition: none !important;
}

/* 4. Remove the "Slide" effect from the details area */
.woocommerce ul.products li.product .product-details {
    transform: none !important;
    transition: none !important;
    position: relative !important;
    opacity: 1 !important;
}
