/* Frame only – no .vwg-* selectors here. */
:root {
  --frame-bg: #f6f7f6;
  --frame-ink: #1f2723;
  --frame-line: #e7ebe7;
}

html,
body {
  margin: 0;
  padding: 0
}

body {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  background: var(--frame-bg);
  color: var(--frame-ink);
}

/* Header/footer – light touch */
.site-header {
  background: #103528;
  color: #e3efe9;
  border-bottom: 1px solid #0d2e23
}

.header-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-end
}

.site-title {
  margin: 0;
  font-size: clamp(1.1rem, 2.4vw, 1.7rem)
}

.site-tag {
  margin: .2rem 0 0;
  opacity: .75
}

.theme-toggle {
  border: 1px solid #1e3f32;
  background: #11261e;
  color: #e3efe9;
  border-radius: 10px;
  padding: 10px 12px;
  cursor: pointer
}

.wrap {
  max-width: 1240px;
  margin: 16px auto;
  padding: 0;
  background: transparent;
  box-shadow: none;
  border-radius: 0
}

.site-footer {
  border-top: 1px solid var(--frame-line);
  background: #fbfaf7
}

.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  justify-content: space-between;
  color: #6a706c
}

/* A simple hero ABOVE the plugin (no .vwg- selectors) */
.garden-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(800px 260px at -10% -10%, #e9efe9 0, transparent 70%),
    radial-gradient(1000px 400px at 110% 120%, #f4efe5 0, transparent 60%),
    linear-gradient(180deg, #fbfaf7, #f4f2ea);
  border-bottom: 1px solid var(--frame-line);
}

.garden-hero__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 26px 20px 14px
}

.garden-hero h1 {
  margin: 0;
  font-size: clamp(1.5rem, 3.2vw, 2.4rem);
  letter-spacing: .2px;
  color: #224d3b
}

.garden-hero p {
  margin: 6px 0 0;
  color: #68746e
}

.garden-hero__search {
  margin: 12px 0 14px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap
}

.garden-hero__search input {
  flex: 1 1 420px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #cfe0d9;
  background: #fff
}

.garden-btn {
  padding: 12px 16px;
  border: 0;
  border-radius: 12px;
  background: #2e7a58;
  color: #fff;
  font-weight: 700;
  cursor: pointer
}

/* Dark mode toggle still OK */
html[data-theme="dark"] body {
  background: #0d1110;
  color: #eaeaea
}

html[data-theme="dark"] .site-header {
  background: #0e241d;
  border-bottom-color: #17362c
}

html[data-theme="dark"] .theme-toggle {
  background: #0e1a17;
  border-color: #17362c;
  color: #cfe1d9
}

html[data-theme="dark"] .site-footer {
  background: #0f1312;
  border-top-color: #17362c;
  color: #96a8a0
}

html[data-theme="dark"] .garden-hero {
  background: linear-gradient(180deg, #0f1512, #0c110f)
}

html[data-theme="dark"] .garden-hero h1 {
  color: #d9f0e5
}

html[data-theme="dark"] .garden-hero__search input {
  background: #0e1411;
  border-color: #1c3228;
  color: #e6efe9
}

html[data-theme="dark"] .garden-btn {
  background: #2b6e52
}