/*
Theme Name: Twenty Twenty-Four
Theme URI: https://wordpress.org/themes/twentytwentyfour/
Author: the WordPress team
Author URI: https://wordpress.org
Description: Twenty Twenty-Four is designed to be flexible, versatile and applicable to any website. Its collection of templates and patterns tailor to different needs, such as presenting a business, blogging and writing or showcasing work. A multitude of possibilities open up with just a few adjustments to color and typography. Twenty Twenty-Four comes with style variations and full page designs to help speed up the site building process, is fully compatible with the site editor, and takes advantage of new design tools introduced in WordPress 6.4.
Requires at least: 6.4
Tested up to: 7.0
Requires PHP: 7.0
Version: 1.5
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: twentytwentyfour
Tags: one-column, custom-colors, custom-menu, custom-logo, editor-style, featured-images, full-site-editing, block-patterns, rtl-language-support, sticky-post, threaded-comments, translation-ready, wide-blocks, block-styles, style-variations, accessibility-ready, blog, portfolio, news
*/

/* =========================================
   ITS Wellness - Main Brand Colors
   ========================================= */

:root {
    --its-green: #1A5632;
    --its-green-light: #48785B;
    --its-bg: #E8EEEA;
    --its-gold: #D5C6B4;
    --its-cream: #EBE2D5;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--its-green);
}

/* Links */
a {
    color: var(--its-green);
}

a:hover {
    color: var(--its-green-light);
}

/* Navigation */
.wp-block-navigation a {
    color: var(--its-green) !important;
}

.wp-block-navigation a:hover {
    color: var(--its-green-light) !important;
}

/* WooCommerce buttons */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt {
    background-color: var(--its-green) !important;
    color: #fff !important;
    border: none;
    border-radius: 30px;
}

/* Button hover */
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
    background-color: var(--its-green-light) !important;
    color: #fff !important;
}

/* Product price */
.woocommerce ul.products li.product .price,
.woocommerce div.product p.price,
.woocommerce div.product span.price {
    color: var(--its-green) !important;
}

/* Sale badge */
.woocommerce span.onsale {
    background-color: var(--its-green) !important;
    color: #fff !important;
}

/* WooCommerce links */
.woocommerce a {
    color: var(--its-green);
}

/* WooCommerce notices */
.woocommerce-message {
    border-top-color: var(--its-green);
}

.woocommerce-message::before {
    color: var(--its-green);
}

/* Cart / Checkout headings */
.woocommerce-cart h1,
.woocommerce-checkout h1,
.woocommerce-account h1 {
    color: var(--its-green);
}

/* Form focus */
.woocommerce form .form-row input:focus,
.woocommerce form .form-row textarea:focus,
.woocommerce form .form-row select:focus {
    border-color: var(--its-green);
    outline: none;
}

/* Quantity buttons / inputs */
.woocommerce .quantity .qty {
    border-color: #D5C6B4;
}

/* Product cards */
.woocommerce ul.products li.product {
    border-radius: 18px;
}

/* Product card hover */
.woocommerce ul.products li.product:hover {
    box-shadow: 0 10px 30px rgba(26, 86, 50, 0.12);
}

/* Light green sections */
.its-light-section {
    background: var(--its-bg);
}

/* Text */
body {
    color: #315F47;
}