/*!
Theme Name: Ogenix Child theme
Theme URI: https://bracketweb.com/ogenixwp/
Template: ogenix
Author: Layerdrops
Author URI: https://themeforest.net/user/layerdrops
Description: This is a Child theme for Ogenix WordPress theme.
Version: 1.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: ogenix-child
*/



/*modifications*/





/* ===============================
   OVERRIDE ALL THEME GREEN COLORS
   =============================== */

/* 1️⃣ Replace the green base and primary variables */
:root {
  --ogenix-base: #006db5 !important;     /* Dark Blue */
  --ogenix-base-rgb: 0, 109, 181 !important;
  --ogenix-primary: #1b77b5 !important;  /* Light Blue */
  --ogenix-primary-rgb: 27, 119, 181 !important;
}

/* 2️⃣ Force-override WooCommerce and theme buttons */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce #place_order,
.woocommerce-cart .thm-btn,
.woocommerce .button.checkout-button,
.woocommerce-page a.button.alt,
.woocommerce-page button.button.alt,
.woosw-list .wp-element-button,
.hot-product-three__btn-box .thm-btn,
.hot-products__content .thm-btn,
ul.products .product__add-to-cart .thm-btn,
.product__all-btn,
.thm-btn {
  background-color: #006db5 !important;
  border-color: #006db5 !important;
  color: #fff !important;
  transition: all 0.3s ease !important;
}

/* 3️⃣ Hover state */
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.thm-btn:hover,
.product__all-btn:hover {
  background-color: #1b77b5 !important;
  border-color: #1b77b5 !important;
  color: #fff !important;
}

/* 4️⃣ Price filter button and misc accents */
.product__price-ranger-filter,
.product__price-ranger .ui-slider-handle,
.product__price-ranger .ui-slider-range {
  background-color: #006db5 !important;
}

/* 5️⃣ Ensure the search box uses blue instead of green */
.shop-search form,
.shop-search form input[type="search"],
.shop-search form input[type="text"] {
  background-color: #006db5 !important;
}