/*
 Theme Name:     Flatsome Child
 Theme URI:      http://example.com/flatsome-child
 Description:     Child theme for Flatsome
 Author:          Your Name
 Author URI:      http://example.com
 Template:        flatsome
 Version:         1.0.0
 Text Domain:     flatsome-child
*/

/* ==== आपकी custom CSS नीचे लिखें ==== */
/* Hide the minimum order message on all pages except Checkout */
body:not(.woocommerce-checkout) .woocommerce-error,
body:not(.woocommerce-checkout) .woocommerce-message,
body:not(.woocommerce-checkout) .woocommerce-notices-wrapper {
    display: none !important;
}


/* Hide Quick View */
a.quick-view,
.button.quick-view,
.product-lightbox-link {
    display: none !important;
}

/* Make Add to Cart permanently visible */
.flatsome-add-to-cart.permanent {
    opacity: 1 !important;
    visibility: visible !important;
    position: static !important;
    text-align: center;
    margin-top: 8px;
}

/* Compact Add to Cart button */
.flatsome-add-to-cart.permanent a.button {
    background-color: #000;
    color: #fff;
    padding: 6px 14px;  /* 👈 height yahan control hoti hai (kam padding = chhota button) */
    border-radius: 6px;
    font-weight: 400;
    font-size: 12px;    /* optional: thoda chhota font for balanced look */
    line-height: 1.2;   /* tighter vertical spacing */
    transition: 0.3s ease;
}

/* Hover effect */
.flatsome-add-to-cart.permanent a.button:hover {
    background-color: #333;
}





//checkout
/* Force permanent background color for checkout button (all Woo blocks) */
.wc-block-cart__submit a,
.wc-block-cart__submit button,
.wc-block-components-button,
.wp-block-woocommerce-proceed-to-checkout-block,
.wc-block-components-checkout-button,
.wp-element-button {
  background-color: #1ABC9C !important; /* set your color */
  color: #fff !important;
  border: none !important;
  border-radius: 6px !important;
  padding: 14px 26px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  text-align: center !important;
  display: inline-block !important;
  box-shadow: none !important;
  transition: none !important;
}

/* Disable hover effect completely */
.wc-block-cart__submit a:hover,
.wc-block-cart__submit button:hover,
.wc-block-components-button:hover,
.wp-block-woocommerce-proceed-to-checkout-block:hover,
.wc-block-components-checkout-button:hover,
.wp-element-button:hover {
  background-color: #1ABC9C !important;
  color: #fff !important;
}

/* Optional: center align */
.wc-block-cart__submit {
  text-align: center !important;
}


/*  hover text*/






