/* Hide Woostify search icon on desktop */
@media (min-width: 1025px) {
    .woostify-svg-icon.icon-search {
        display: none !important;
    }
}

/* Show Woostify search icon on tablet/mobile */
@media (max-width: 1024px) {
    .woostify-svg-icon.icon-search {
        display: inline-block !important; /* or block if needed */
    }
}






/* ===========================
CHECKOUT "COMMANDER" BUTTON – FORCE DESKTOP
=========================== */

/* Base button */
body .wc-block-components-checkout-place-order-button.contained {
    background-color: #4BE3D9 !important;
    color: #ffffff !important;
    border: none !important;
}

/* Text inside */
body .wc-block-components-checkout-place-order-button.contained 
.wc-block-components-checkout-place-order-button__text {
    color: #ffffff !important;
    font-weight: 600;
}

/* Hover (DESKTOP FIX) */
@media (hover: hover) {
    body .wc-block-components-checkout-place-order-button.contained:hover {
        background-color: #35c9bf !important; /* darker */
    }

    body .wc-block-components-checkout-place-order-button.contained:hover 
    .wc-block-components-checkout-place-order-button__text {
        color: #e6e6e6 !important; /* slightly gray */
    }
}










