:root {
    --green: #16834f;
    --dark: #173b2d;
    --light: #f2fbf5;
    --border: #dceee3;
    --text: #23352d;
}

* { box-sizing: border-box; }
body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text);
    background: #fff;
}
a { color: inherit; text-decoration: none; }
.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.site-header {
    background: #fff;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 10;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: 76px; gap: 20px; }
.brand { display: flex; align-items: center; gap: 10px; font-size: 22px; font-weight: 800; color: var(--dark); }
.brand-icon { font-size: 28px; }
.main-nav ul { list-style: none; display: flex; gap: 18px; margin: 0; padding: 0; }
.main-nav a { font-weight: 600; }
.cart-link { background: var(--light); border: 1px solid var(--border); padding: 10px 14px; border-radius: 999px; font-weight: 700; }
.hero { background: linear-gradient(135deg, #edfdf4, #fff); padding: 70px 0; }
.hero-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 36px; align-items: center; }
.eyebrow { color: var(--green); font-weight: 800; margin-bottom: 10px; }
.hero h1 { font-size: clamp(34px, 5vw, 62px); line-height: 1.05; margin: 0 0 18px; color: var(--dark); }
.hero-text { font-size: 19px; line-height: 1.7; max-width: 620px; }
.btn-primary, .single_add_to_cart_button, .add_to_cart_button, .button.product_type_simple {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    background: var(--green) !important;
    color: #fff !important;
    padding: 12px 18px !important;
    border-radius: 12px !important;
    border: 0 !important;
    font-weight: 800 !important;
}
.hero-card { background: #fff; padding: 34px; border-radius: 28px; box-shadow: 0 20px 60px rgba(22,131,79,.12); border: 1px solid var(--border); }
.hero-card h2 { margin-top: 0; color: var(--dark); }
.hero-card span { display: inline-block; margin-top: 18px; background: var(--light); padding: 10px 14px; border-radius: 999px; font-weight: 700; color: var(--green); }
.section { padding: 56px 0; }
.section-title { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.section-title h2 { font-size: 34px; margin: 0; color: var(--dark); }
.section-title a { color: var(--green); font-weight: 800; }
.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.info-grid div, .notice-box, .post-card { padding: 24px; border: 1px solid var(--border); border-radius: 22px; background: #fff; }
.info-grid h3 { color: var(--dark); margin-top: 0; }
.page-content, .shop-page { padding: 42px 0; }
.site-footer { background: var(--dark); color: #fff; padding: 28px 0; margin-top: 50px; text-align: center; }
.woocommerce ul.products li.product { border: 1px solid var(--border); border-radius: 22px; padding: 16px !important; background: #fff; transition: .2s; }
.woocommerce ul.products li.product:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(0,0,0,.08); }
.woocommerce ul.products li.product img { border-radius: 16px; }
.woocommerce-loop-product__title { color: var(--dark); font-weight: 800; }
.price { color: var(--green) !important; font-weight: 900 !important; }

@media (max-width: 800px) {
    .header-inner, .main-nav ul { flex-wrap: wrap; }
    .hero-grid, .info-grid { grid-template-columns: 1fr; }
    .main-nav { display: none; }
}
