/*
Theme Name: Salient Child Theme
Description: This is a custom child theme for Salient
Theme URI:   https://themeforest.net/item/salient-responsive-multipurpose-theme/4363266
Author: ThemeNectar
Author URI:  https://themeforest.net/user/themenectar
Template: salient
Version: 1.0
*/
.row .col.section-title {border:none !important}
.woocommerce.widget_product_tag_cloud h4{display:none !important;}

.my-center-btn {
  display: block !important;
  width: fit-content !important;
  margin-left: auto!important;
  margin-right: auto!important;
  margin-top: 50px !important;
}

/* ===== WooCommerce Search Full Styling ===== */

/* ===== Container ===== */
.woocommerce-product-search {
    position: relative;
    width: 100%;
    max-width: 100%;
}

/* ===== Hide default Woo button ===== */
.woocommerce-product-search button {
    display: none !important;
}

/* ===== Search input ===== */
.woocommerce-product-search input.search-field {
    width: 100%;
    height: 45px;
    padding: 0 35px 0 35px; /* balanced spacing */
    border-radius: 50px;
    border: 1px solid #ddd;
    background: #f1f3f5; /* soft modern background */
    font-size: 15px;
    color: #333;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

/* ===== Placeholder ===== */
.woocommerce-product-search input.search-field::placeholder {
    color: #888;
}

/* ===== Left search icon ===== */
.woocommerce-product-search::before {
    content: "🔍";
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    color: #666;
}

/* ===== Right 2-line icon ===== */
.woocommerce-product-search::after {
    content: "";
    position: absolute;
    right: 12px;
    top: 50%;
    width: 16px;
    height: 10px;
    transform: translateY(-50%);
    
    background: 
        linear-gradient(#666, #666) top,
        linear-gradient(#666, #666) bottom;
    
    background-size: 100% 2px;
    background-repeat: no-repeat;
}

/* ===== Focus effect ===== */
.woocommerce-product-search input.search-field:focus {
    outline: none;
    background: #fff;
    border-color: #bbb;
    box-shadow: 0 0 6px rgba(0,0,0,0.08);
}

/* ===== Hover effect ===== */
.woocommerce-product-search input.search-field:hover {
    background: #e9ecef;
}