/*
Theme Name: Shoptimizer Child Theme
Theme URI: 
Description: Child theme of Shoptimizer
Author: CommerceGurus
Author URI: 
Template: shoptimizer
Version: 1.2.2
License:         	GNU General Public License v2 or later
License URI:     	http://www.gnu.org/licenses/gpl-2.0.html
*/

.site-search input[type="search"]
{
border-radius: 1.8rem;
}
.widget_product_search input, .widget_search input {
    width: 80%;
}

/* Brand Display Under Product Title on Single product Page*/
.product-brand {
    font-size: 15px;
    margin-bottom: 12px;
    color: #222;
}
.product-brand strong {
    color: #444; /* green for label */
}
.product-brand a {
    color: #6ab12e;
    text-decoration: none;
    font-weight: 500;
}
.product-brand a:hover {
    text-decoration: underline;
}

/*footer Social Icon*/
.footer-social-icons {
  text-align: center; /* Align center */
  margin-top: 10px;
  display: flex; /* Make row */
  justify-content: left; /* Center icons */
  gap: 5px; /* Add spacing between icons */
}

.footer-social-icons a {
  display: inline-flex; /* Keep icons inline */
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.footer-social-icons a:hover {
  transform: scale(1.2);
}

.footer-social-icons svg {
  vertical-align: middle;
}

/* Whatsapp Style*/
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    left: 20px; /* 👈 Left side */
    z-index: 9999;
}

.whatsapp-float img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    transition: transform 0.3s ease-in-out;
}

.whatsapp-float img:hover {
    transform: scale(1.1);
}
