/*
Theme Name: Bare Homeo
Theme URI: https://barehomeo.com
Author: Bare Homeo
Author URI: https://barehomeo.com
Description: A polished, earthy WordPress theme for Bare Homeo — homeopathic herbal soaps and hair care. WooCommerce-ready. Tagline: "Nothing hidden. Nothing harsh. Just bare."
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GPL-2.0-or-later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: barehomeo
Tags: e-commerce, woocommerce, custom-colors, custom-menu, featured-images, blog
*/

/* =========================================================
   Fonts
========================================================= */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,700&family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* =========================================================
   Design tokens — Bare Homeo palette
========================================================= */
:root {
    --bh-deep-herbal: #234B34;
    --bh-forest: #183626;
    --bh-sage: #8D9B7A;
    --bh-olive: #6E7F52;
    --bh-cream: #F2EBDD;
    --bh-beige: #E7DCC8;
    --bh-sand: #D6C7AF;
    --bh-gold: #B59A5A;
    --bh-calendula: #D6A93A;
    --bh-text: #3E4537;
    --bh-text-muted: #6B6F60;
    --bh-white: #FFFFFF;
    --bh-radius: 0.75rem;
    --bh-radius-lg: 1rem;
    --bh-radius-pill: 9999px;
    --bh-shadow: 0 18px 40px -24px rgba(24, 54, 38, 0.22);
    --bh-shadow-sm: 0 6px 16px -10px rgba(24, 54, 38, 0.18);
    --bh-container: 1280px;
}

/* =========================================================
   Base reset
========================================================= */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: 'Outfit', system-ui, -apple-system, Segoe UI, sans-serif;
    background: var(--bh-cream);
    color: var(--bh-text);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--bh-forest); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--bh-calendula); }
::selection { background: var(--bh-calendula); color: var(--bh-forest); }

h1, h2, h3, h4 {
    font-family: 'Playfair Display', Georgia, serif;
    color: var(--bh-forest);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.01em;
    margin: 0 0 0.5em;
}
h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); letter-spacing: -0.025em; line-height: 1.02; }
h2 { font-size: clamp(2rem, 3.5vw, 3.25rem); }
h3 { font-size: clamp(1.4rem, 2vw, 1.875rem); }
p { margin: 0 0 1em; }

/* =========================================================
   Layout
========================================================= */
.bh-container {
    width: 100%;
    max-width: var(--bh-container);
    margin: 0 auto;
    padding: 0 1.5rem;
}
@media (min-width: 768px) { .bh-container { padding: 0 3rem; } }
@media (min-width: 1280px) { .bh-container { padding: 0 4rem; } }

.bh-section { padding: 5rem 0; }
@media (min-width: 768px) { .bh-section { padding: 7rem 0; } }

.bh-grid { display: grid; gap: 2rem; }
@media (min-width: 640px) { .bh-grid-2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 768px) { .bh-grid-3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .bh-grid-4 { grid-template-columns: repeat(4, 1fr); } }

.bh-overline {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--bh-olive);
    font-weight: 600;
    margin-bottom: 0.75rem;
    display: inline-block;
}

/* =========================================================
   Buttons
========================================================= */
.bh-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border-radius: var(--bh-radius-pill);
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    border: none;
    cursor: pointer;
    transition: background 0.25s, color 0.25s, transform 0.2s, border-color 0.25s;
    text-decoration: none;
    line-height: 1;
}
.bh-btn-primary {
    background: var(--bh-forest);
    color: var(--bh-cream);
}
.bh-btn-primary:hover {
    background: var(--bh-deep-herbal);
    color: var(--bh-cream);
}
.bh-btn-gold {
    background: var(--bh-calendula);
    color: var(--bh-forest);
}
.bh-btn-gold:hover {
    background: var(--bh-gold);
    color: var(--bh-forest);
}
.bh-btn-outline {
    background: transparent;
    color: var(--bh-forest);
    border: 1.5px solid var(--bh-forest);
}
.bh-btn-outline:hover {
    background: var(--bh-forest);
    color: var(--bh-cream);
}
.bh-btn:active { transform: scale(0.98); }

/* =========================================================
   Header / Nav
========================================================= */
.bh-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(242, 235, 221, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--bh-sand);
}
.bh-nav { display: flex; align-items: center; justify-content: space-between; padding: 1.1rem 0; gap: 1rem; }
.bh-brand { display: inline-flex; align-items: center; gap: 0.5rem; font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 600; color: var(--bh-forest); letter-spacing: -0.01em; }
.bh-brand .dot { color: var(--bh-calendula); }
.bh-menu { display: none; gap: 2.25rem; align-items: center; list-style: none; margin: 0; padding: 0; }
.bh-menu a { font-size: 0.95rem; color: var(--bh-text); letter-spacing: 0.01em; }
.bh-menu a:hover, .bh-menu .current-menu-item > a { color: var(--bh-calendula); }
@media (min-width: 768px) { .bh-menu { display: flex; } }
.bh-nav-actions { display: flex; align-items: center; gap: 0.5rem; }
.bh-icon-btn {
    width: 40px; height: 40px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: var(--bh-radius-pill);
    background: transparent;
    color: var(--bh-forest);
    border: none;
    cursor: pointer;
    position: relative;
    transition: background 0.2s;
}
.bh-icon-btn:hover { background: rgba(24, 54, 38, 0.08); }
.bh-cart-count {
    position: absolute; top: 2px; right: 2px;
    background: var(--bh-calendula);
    color: var(--bh-forest);
    font-size: 0.65rem;
    font-weight: 700;
    width: 18px; height: 18px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}
.bh-mobile-toggle { display: inline-flex; }
@media (min-width: 768px) { .bh-mobile-toggle { display: none; } }
.bh-mobile-menu {
    display: none;
    padding: 1.5rem 0;
    border-top: 1px solid var(--bh-sand);
}
.bh-mobile-menu.is-open { display: block; }
.bh-mobile-menu ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 1rem; }

/* =========================================================
   Hero
========================================================= */
.bh-hero {
    position: relative;
    padding: 6rem 0 5rem;
    background: linear-gradient(180deg, var(--bh-cream) 0%, var(--bh-beige) 100%);
    overflow: hidden;
}
.bh-hero-grid { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .bh-hero-grid { grid-template-columns: 1.1fr 1fr; } }
.bh-hero-tag {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: rgba(141, 155, 122, 0.18);
    color: var(--bh-deep-herbal);
    padding: 0.4rem 0.9rem;
    border-radius: var(--bh-radius-pill);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-weight: 600;
    margin-bottom: 1.5rem;
}
.bh-hero h1 { color: var(--bh-forest); }
.bh-hero h1 em { color: var(--bh-calendula); font-style: italic; font-weight: 500; }
.bh-hero p.lead { font-size: clamp(1.05rem, 1.4vw, 1.2rem); color: var(--bh-text-muted); max-width: 520px; margin-bottom: 2rem; }
.bh-hero-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; }
.bh-hero-image {
    border-radius: var(--bh-radius-lg);
    overflow: hidden;
    aspect-ratio: 4/5;
    box-shadow: var(--bh-shadow);
}
.bh-hero-image img { width: 100%; height: 100%; object-fit: cover; }

/* =========================================================
   Marquee
========================================================= */
.bh-marquee {
    background: var(--bh-forest);
    color: var(--bh-cream);
    padding: 1.1rem 0;
    overflow: hidden;
    border-top: 1px solid var(--bh-deep-herbal);
    border-bottom: 1px solid var(--bh-deep-herbal);
}
.bh-marquee-track { display: flex; gap: 4rem; white-space: nowrap; animation: bh-marquee 36s linear infinite; }
.bh-marquee-track span { display: inline-flex; align-items: center; gap: 1rem; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.22em; font-weight: 500; }
.bh-marquee-track span::after { content: ""; width: 6px; height: 6px; background: var(--bh-calendula); border-radius: 50%; display: inline-block; }
@keyframes bh-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* =========================================================
   Section heading
========================================================= */
.bh-section-head { max-width: 720px; margin-bottom: 3.5rem; }
.bh-section-head h2 { margin-bottom: 0.5rem; }
.bh-section-head p { color: var(--bh-text-muted); font-size: 1.05rem; }

/* =========================================================
   Product card (used by homepage + WooCommerce override)
========================================================= */
.bh-product-card {
    background: var(--bh-white);
    border: 1px solid var(--bh-sand);
    border-radius: var(--bh-radius-lg);
    overflow: hidden;
    transition: transform 0.35s, box-shadow 0.35s;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.bh-product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--bh-shadow);
}
.bh-product-img-wrap { position: relative; overflow: hidden; aspect-ratio: 4/5; background: var(--bh-beige); }
.bh-product-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.bh-product-card:hover .bh-product-img-wrap img { transform: scale(1.06); }
.bh-product-badges { position: absolute; top: 1rem; left: 1rem; display: flex; flex-direction: column; gap: 0.4rem; }
.bh-badge {
    display: inline-flex; align-items: center;
    padding: 0.25rem 0.75rem;
    border-radius: var(--bh-radius-pill);
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 700;
}
.bh-badge-sage { background: rgba(141, 155, 122, 0.25); color: var(--bh-deep-herbal); }
.bh-badge-gold { background: rgba(214, 169, 58, 0.25); color: #7E5A12; }
.bh-product-body { padding: 1.4rem; flex: 1; display: flex; flex-direction: column; }
.bh-product-body h3 { font-size: 1.4rem; margin-bottom: 0.3rem; }
.bh-product-body .bh-tagline { font-size: 0.9rem; color: var(--bh-text-muted); flex: 1; margin-bottom: 1rem; }
.bh-product-foot { display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; }
.bh-product-price { font-family: 'Playfair Display', serif; font-size: 1.25rem; color: var(--bh-forest); font-weight: 600; }
.bh-product-cta {
    background: transparent; border: none; cursor: pointer;
    font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600;
    color: var(--bh-forest); padding: 0.5rem 0;
    transition: color 0.2s;
}
.bh-product-cta:hover { color: var(--bh-calendula); }

/* =========================================================
   Brand Story
========================================================= */
.bh-story { background: var(--bh-cream); }
.bh-story-grid { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .bh-story-grid { grid-template-columns: 1fr 1.1fr; } }
.bh-story-image { border-radius: var(--bh-radius-lg); overflow: hidden; aspect-ratio: 5/6; box-shadow: var(--bh-shadow); }
.bh-story-image img { width: 100%; height: 100%; object-fit: cover; }
.bh-story-text h2 em { color: var(--bh-calendula); font-style: italic; font-weight: 500; }
.bh-story-text p { font-size: 1.1rem; color: var(--bh-text-muted); }
.bh-story blockquote {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-style: italic;
    color: var(--bh-forest);
    border-left: 3px solid var(--bh-calendula);
    padding: 0.5rem 0 0.5rem 1.5rem;
    margin: 2rem 0;
}

/* =========================================================
   Coming Soon Bento
========================================================= */
.bh-coming { background: var(--bh-beige); }
.bh-coming-grid { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .bh-coming-grid { grid-template-columns: 1.4fr 1fr 1fr; grid-template-rows: auto auto; } }
.bh-coming-card {
    background: var(--bh-forest);
    color: var(--bh-cream);
    padding: 2.5rem;
    border-radius: var(--bh-radius-lg);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 220px;
    position: relative;
    overflow: hidden;
}
.bh-coming-card.featured { grid-row: span 2; min-height: 460px; background: linear-gradient(160deg, var(--bh-forest) 0%, var(--bh-deep-herbal) 100%); }
.bh-coming-card h3 { color: var(--bh-cream); margin-bottom: 0.5rem; }
.bh-coming-card .bh-overline { color: var(--bh-calendula); }
.bh-coming-card .bh-circle {
    position: absolute; right: -60px; bottom: -60px;
    width: 200px; height: 200px;
    background: radial-gradient(circle, var(--bh-calendula) 0%, transparent 70%);
    opacity: 0.25;
    border-radius: 50%;
}
.bh-coming-card.gold { background: var(--bh-calendula); color: var(--bh-forest); }
.bh-coming-card.gold h3 { color: var(--bh-forest); }
.bh-coming-card.gold .bh-overline { color: var(--bh-forest); }
.bh-coming-cta {
    display: inline-flex; align-items: center; gap: 0.4rem;
    color: inherit;
    font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 700;
}

/* =========================================================
   FAQ accordion
========================================================= */
.bh-faq { background: var(--bh-cream); }
.bh-faq-list { max-width: 780px; margin: 0 auto; }
.bh-faq-item { border-bottom: 1px solid var(--bh-sand); }
.bh-faq-q {
    width: 100%; text-align: left; background: none; border: none; cursor: pointer;
    padding: 1.5rem 0; font-family: 'Playfair Display', serif; font-size: 1.25rem;
    color: var(--bh-forest); display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.bh-faq-q::after { content: "+"; color: var(--bh-calendula); font-size: 1.5rem; transition: transform 0.3s; }
.bh-faq-item.is-open .bh-faq-q::after { content: "−"; }
.bh-faq-a { display: none; padding: 0 0 1.5rem; color: var(--bh-text-muted); font-size: 1rem; }
.bh-faq-item.is-open .bh-faq-a { display: block; }

/* =========================================================
   Newsletter (homepage band + footer)
========================================================= */
.bh-newsletter-band {
    background: var(--bh-forest);
    color: var(--bh-cream);
    border-radius: var(--bh-radius-lg);
    padding: 3rem 2rem;
    text-align: center;
}
.bh-newsletter-band h2 { color: var(--bh-cream); }
.bh-newsletter-band h2 em { color: var(--bh-calendula); font-style: italic; font-weight: 500; }
.bh-newsletter-band p { color: rgba(242, 235, 221, 0.75); max-width: 520px; margin: 0 auto 2rem; }
.bh-newsletter-form { display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: center; max-width: 480px; margin: 0 auto; }
.bh-newsletter-form input[type="email"] {
    flex: 1; min-width: 200px;
    background: rgba(242, 235, 221, 0.1);
    color: var(--bh-cream);
    border: 1px solid rgba(242, 235, 221, 0.3);
    border-radius: var(--bh-radius-pill);
    padding: 0.85rem 1.2rem;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    outline: none;
}
.bh-newsletter-form input[type="email"]::placeholder { color: rgba(242, 235, 221, 0.6); }
.bh-newsletter-form input[type="email"]:focus { border-color: var(--bh-calendula); }
.bh-newsletter-msg { margin-top: 1rem; font-size: 0.85rem; color: var(--bh-calendula); }

/* =========================================================
   Footer
========================================================= */
.bh-footer { background: var(--bh-forest); color: var(--bh-cream); padding: 5rem 0 2rem; }
.bh-footer-grid { display: grid; gap: 3rem; }
@media (min-width: 768px) { .bh-footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.bh-footer h4 { color: var(--bh-cream); font-family: 'Outfit', sans-serif; font-size: 0.8rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 600; margin-bottom: 1.25rem; }
.bh-footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.75rem; }
.bh-footer a { color: rgba(242, 235, 221, 0.75); font-size: 0.95rem; }
.bh-footer a:hover { color: var(--bh-calendula); }
.bh-footer-tagline { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--bh-cream); max-width: 320px; line-height: 1.3; }
.bh-footer-bottom { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid rgba(242, 235, 221, 0.15); display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; font-size: 0.8rem; color: rgba(242, 235, 221, 0.55); }

/* =========================================================
   Page hero (interior pages)
========================================================= */
.bh-page-hero {
    background: var(--bh-beige);
    padding: 6rem 0 4rem;
    border-bottom: 1px solid var(--bh-sand);
}
.bh-page-hero h1 { margin-bottom: 0.5rem; }
.bh-page-hero p { color: var(--bh-text-muted); font-size: 1.1rem; max-width: 640px; }

/* =========================================================
   Generic content area
========================================================= */
.bh-content { padding: 4rem 0 6rem; }
.bh-content .bh-prose { max-width: 720px; margin: 0 auto; font-size: 1.05rem; }
.bh-prose h2, .bh-prose h3 { margin-top: 2rem; }
.bh-prose a { color: var(--bh-calendula); text-decoration: underline; }
.bh-prose blockquote {
    border-left: 3px solid var(--bh-calendula);
    padding-left: 1.5rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-style: italic;
    color: var(--bh-forest);
    margin: 2rem 0;
}

/* =========================================================
   Blog grid
========================================================= */
.bh-blog-grid { display: grid; gap: 2rem; }
@media (min-width: 768px) { .bh-blog-grid { grid-template-columns: repeat(3, 1fr); } }
.bh-blog-card { background: var(--bh-white); border: 1px solid var(--bh-sand); border-radius: var(--bh-radius-lg); overflow: hidden; display: flex; flex-direction: column; transition: transform 0.3s, box-shadow 0.3s; }
.bh-blog-card:hover { transform: translateY(-4px); box-shadow: var(--bh-shadow); }
.bh-blog-card .img-wrap { aspect-ratio: 16/10; overflow: hidden; background: var(--bh-beige); }
.bh-blog-card .img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.bh-blog-card .body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.bh-blog-card h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }
.bh-blog-card .meta { font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--bh-olive); margin-bottom: 0.75rem; }
.bh-blog-card p { color: var(--bh-text-muted); flex: 1; }
.bh-blog-card .more { margin-top: 1rem; font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 700; color: var(--bh-forest); }

/* =========================================================
   Contact
========================================================= */
.bh-contact-grid { display: grid; gap: 3rem; }
@media (min-width: 1024px) { .bh-contact-grid { grid-template-columns: 1fr 1.1fr; } }
.bh-contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.bh-contact-form label { display: block; font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--bh-olive); margin-bottom: 0.4rem; font-weight: 600; }
.bh-contact-form input, .bh-contact-form textarea, .bh-contact-form select {
    width: 100%; padding: 0.9rem 1rem; border: 1px solid var(--bh-sand);
    background: var(--bh-white); color: var(--bh-text);
    border-radius: var(--bh-radius); font-family: 'Outfit', sans-serif; font-size: 1rem;
    outline: none; transition: border-color 0.2s;
}
.bh-contact-form input:focus, .bh-contact-form textarea:focus, .bh-contact-form select:focus { border-color: var(--bh-calendula); }
.bh-contact-form textarea { min-height: 140px; resize: vertical; }
.bh-contact-info { background: var(--bh-beige); border-radius: var(--bh-radius-lg); padding: 2.5rem; }
.bh-contact-info h3 { font-size: 1.5rem; }
.bh-contact-info p { color: var(--bh-text-muted); }
.bh-contact-info .row { margin-bottom: 1.5rem; }
.bh-contact-info .row .label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--bh-olive); font-weight: 600; margin-bottom: 0.3rem; }

/* =========================================================
   WooCommerce overrides (shop, single product)
========================================================= */
.woocommerce-page .bh-page-hero { margin-bottom: 0; }
.woocommerce ul.products { display: grid !important; gap: 2rem; padding: 0 !important; margin: 0; list-style: none !important; }
@media (min-width: 640px) { .woocommerce ul.products { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .woocommerce ul.products { grid-template-columns: repeat(3, 1fr); } }
.woocommerce ul.products li.product { width: auto !important; margin: 0 !important; float: none !important; clear: none !important; }
.woocommerce ul.products li.product .bh-product-card { height: 100%; }

.woocommerce-result-count, .woocommerce-ordering { color: var(--bh-text-muted); font-size: 0.85rem; }
.woocommerce-message, .woocommerce-info, .woocommerce-error {
    background: var(--bh-beige) !important; border-top-color: var(--bh-calendula) !important;
    color: var(--bh-text) !important; border-radius: var(--bh-radius) !important;
}

/* Single product */
.woocommerce div.product { display: grid; gap: 3rem; }
@media (min-width: 1024px) { .woocommerce div.product { grid-template-columns: 1.1fr 1fr; align-items: flex-start; } }
.woocommerce div.product .product_title { font-family: 'Playfair Display', serif; color: var(--bh-forest); font-size: 2.5rem; line-height: 1.1; }
.woocommerce div.product p.price, .woocommerce div.product span.price { color: var(--bh-forest) !important; font-family: 'Playfair Display', serif; font-size: 1.75rem !important; font-weight: 600; }
.woocommerce div.product .woocommerce-product-details__short-description { color: var(--bh-text-muted); font-size: 1.05rem; }
.woocommerce div.product .images img { border-radius: var(--bh-radius-lg); }
.woocommerce #respond input#submit, .woocommerce a.button, .woocommerce button.button, .woocommerce input.button,
.woocommerce #respond input#submit.alt, .woocommerce a.button.alt, .woocommerce button.button.alt, .woocommerce input.button.alt {
    background: var(--bh-forest) !important;
    color: var(--bh-cream) !important;
    border: none !important;
    border-radius: var(--bh-radius-pill) !important;
    padding: 0.875rem 2rem !important;
    font-family: 'Outfit', sans-serif !important;
    font-weight: 500 !important;
    letter-spacing: 0.02em !important;
    font-size: 0.95rem !important;
    text-shadow: none !important;
    transition: background 0.25s;
}
.woocommerce #respond input#submit:hover, .woocommerce a.button:hover, .woocommerce button.button:hover, .woocommerce input.button:hover,
.woocommerce #respond input#submit.alt:hover, .woocommerce a.button.alt:hover, .woocommerce button.button.alt:hover, .woocommerce input.button.alt:hover {
    background: var(--bh-deep-herbal) !important;
}

/* Cart / checkout tweaks */
.woocommerce table.shop_table { background: var(--bh-white); border: 1px solid var(--bh-sand); border-radius: var(--bh-radius); }
.woocommerce-cart .cart-collaterals .cart_totals h2 { font-family: 'Playfair Display', serif; }
.woocommerce-checkout #payment { background: var(--bh-beige) !important; border-radius: var(--bh-radius) !important; }

/* =========================================================
   Animations
========================================================= */
@keyframes bh-fade-up { 0% { opacity: 0; transform: translateY(16px); } 100% { opacity: 1; transform: translateY(0); } }
.bh-fade-up { animation: bh-fade-up 0.7s ease-out both; }
.bh-fade-up-delay-1 { animation-delay: 0.1s; }
.bh-fade-up-delay-2 { animation-delay: 0.25s; }
.bh-fade-up-delay-3 { animation-delay: 0.4s; }

/* =========================================================
   Shop by Concern
========================================================= */
.bh-concerns-section { background: var(--bh-beige); padding: 5rem 0; }
@media (min-width: 768px) { .bh-concerns-section { padding: 7rem 0; } }
.bh-concerns-section h2 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 3.5vw, 3rem); color: var(--bh-forest); margin: 0.5rem 0 3rem; line-height: 1.1; }
.bh-concerns-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; }
.bh-concern-card {
    background: var(--bh-white);
    border: 1px solid var(--bh-sand);
    border-radius: 16px;
    padding: 24px;
    text-decoration: none;
    color: var(--bh-text);
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform 0.25s, box-shadow 0.25s, background 0.2s, color 0.2s;
    cursor: pointer;
}
.bh-concern-card:hover { transform: translateY(-3px); box-shadow: var(--bh-shadow-sm); background: var(--bh-forest); color: var(--bh-cream); }
.bh-concern-card:hover h3 { color: var(--bh-cream); }
.bh-concern-card:hover p { color: rgba(242,235,221,0.85); }
.bh-concern-card:hover .bh-concern-cta { color: var(--bh-calendula); }
.bh-concern-icon { font-size: 32px; line-height: 1; }
.bh-concern-card h3 { font-family: 'Playfair Display', serif; font-size: 20px; color: var(--bh-forest); margin: 0; transition: color 0.2s; }
.bh-concern-card p { font-size: 14px; color: var(--bh-text-muted); margin: 0; flex: 1; line-height: 1.5; transition: color 0.2s; }
.bh-concern-cta { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--bh-forest); font-weight: 700; transition: color 0.2s; }

/* =========================================================
   Offers carousel
========================================================= */
.bh-offers-section { background: var(--bh-cream); padding: 5rem 0; }
@media (min-width: 768px) { .bh-offers-section { padding: 7rem 0; } }
.bh-offers-head { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 24px; margin-bottom: 32px; }
.bh-offers-head h2 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 3.5vw, 3rem); color: var(--bh-forest); margin: 0; line-height: 1.1; }
.bh-offers-arrows { display: flex; gap: 10px; }
.bh-offers-arrow { background: var(--bh-forest); color: var(--bh-cream); border: none; width: 44px; height: 44px; border-radius: 50%; cursor: pointer; font-size: 20px; transition: opacity 0.2s; }
.bh-offers-arrow:disabled { opacity: 0.4; cursor: not-allowed; }
.bh-offers-track { display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 8px; scrollbar-width: thin; }
.bh-offer-card { flex: 0 0 auto; min-width: 320px; max-width: 360px; border-radius: 18px; padding: 36px 32px; display: flex; flex-direction: column; gap: 14px; min-height: 280px; position: relative; overflow: hidden; scroll-snap-align: start; }
.bh-offer-badge { align-self: flex-start; background: rgba(242,235,221,0.18); padding: 5px 12px; border-radius: 999px; font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 700; }
.bh-offer-card h3 { font-family: 'Playfair Display', serif; font-size: clamp(1.5rem, 2vw, 1.85rem); margin: 0; line-height: 1.15; color: inherit; }
.bh-offer-card p { opacity: 0.82; font-size: 14px; flex: 1; margin: 0; line-height: 1.55; color: inherit; }
.bh-offer-cta { font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 700; text-decoration: none; align-self: flex-start; padding-top: 4px; }
.bh-offer-glow { position: absolute; right: -40px; bottom: -40px; width: 140px; height: 140px; opacity: 0.18; border-radius: 50%; pointer-events: none; }

/* =========================================================
   Wishlist heart button (on product cards)
========================================================= */
.bh-wishlist-btn {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--bh-white);
    border: 1px solid var(--bh-sand);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 14px -8px rgba(24,54,38,0.2);
    transition: transform 0.2s, background 0.2s;
    z-index: 2;
    padding: 0;
}
.bh-wishlist-btn:hover { transform: scale(1.06); }
.bh-wishlist-btn.is-active svg { fill: var(--bh-calendula); stroke: var(--bh-calendula); }
.woocommerce ul.products li.product { position: relative; }

/* =========================================================
   Utility
========================================================= */
.text-center { text-align: center; }
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.bh-divider { height: 1px; background: var(--bh-sand); border: 0; margin: 4rem 0; }
.bh-hidden { display: none !important; }
.bh-visually-hidden { position: absolute !important; height: 1px; width: 1px; overflow: hidden; clip: rect(1px 1px 1px 1px); }
