/* HerbMend Brand Override - matches landing page design system */

:root {
    --primary: #2D5016;
    --primary-light: #3D6A1F;
    --primary-dark: #1E3A0E;
    --accent: #C8A96E;
    --accent-light: #D4BC8A;
    --bg-light: #E8F5E9;
    --bg-cream: #FDF8F0;
}

/* Header */
.site-header {
    background-color: #2D5016 !important;
}
.site-header .site-title a,
.site-header .site-description {
    color: #ffffff !important;
}
.main-navigation ul li a {
    color: rgba(255,255,255,0.9) !important;
}
.main-navigation ul li a:hover {
    color: #C8A96E !important;
}

/* Buttons */
.button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
a.button,
button.button,
input[type="submit"] {
    background-color: #2D5016 !important;
    color: #ffffff !important;
    border-radius: 50px !important;
    font-weight: 600;
    transition: all 0.3s ease;
}
.button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover {
    background-color: #3D6A1F !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(45,80,22,0.3);
}

/* Accent buttons (secondary) */
.button.alt,
.woocommerce a.button.alt {
    background-color: #C8A96E !important;
    color: #1E3A0E !important;
}
.button.alt:hover,
.woocommerce a.button.alt:hover {
    background-color: #D4BC8A !important;
}

/* Links */
a {
    color: #2D5016;
}
a:hover {
    color: #3D6A1F;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    color: #2D5016;
}

/* Footer */
.site-footer {
    background-color: #1E3A0E !important;
    color: rgba(255,255,255,0.7);
}
.site-footer a {
    color: #C8A96E !important;
}

/* Product cards */
.woocommerce ul.products li.product .woocommerce-loop-product__title {
    color: #2D5016 !important;
    font-weight: 600;
}
.woocommerce ul.products li.product .price {
    color: #C8A96E !important;
    font-weight: 700;
}
.woocommerce ul.products li.product {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(45,80,22,0.08);
    transition: all 0.3s ease;
}
.woocommerce ul.products li.product:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

/* Price color */
.woocommerce div.product p.price,
.woocommerce div.product span.price {
    color: #C8A96E !important;
    font-size: 1.5em !important;
}

/* Cart */
.woocommerce-cart .cart_totals {
    background: #FDF8F0;
    border-radius: 12px;
    padding: 24px;
}

/* Checkout */
.woocommerce-checkout #payment {
    background: #FDF8F0;
    border-radius: 12px;
}

/* Body background */
body {
    background-color: #FAFAF5;
}

/* Sale badge */
.woocommerce span.onsale {
    background-color: #C8A96E !important;
    color: #1E3A0E !important;
}

/* Breadcrumbs */
.woocommerce-breadcrumb a {
    color: #2D5016;
}

/* Star ratings */
.woocommerce .star-rating span {
    color: #C8A96E;
}

/* Pagination */
.woocommerce nav.woocommerce-pagination ul li a:focus,
.woocommerce nav.woocommerce-pagination ul li a:hover,
.woocommerce nav.woocommerce-pagination ul li span.current {
    background: #2D5016;
    color: #ffffff;
}

/* Shop page title */
.woocommerce-products-header h1 {
    color: #2D5016;
    font-family: 'Playfair Display', 'Noto Serif SC', serif;
}

/* Widget titles */
.widget-title {
    color: #2D5016;
    border-bottom-color: #C8A96E;
}
