:root {
  color-scheme: light;
  --background: #f7f8fb;
  --surface: #ffffff;
  --ink: #18202f;
  --muted: #657085;
  --line: #dce2ea;
  --accent: #0d9488;
  --accent-dark: #0f766e;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: var(--accent-dark);
}

.site-header,
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.site-footer {
  justify-content: center;
  border-top: 1px solid var(--line);
  border-bottom: 0;
  color: var(--muted);
}

.site-brand {
  color: var(--ink);
  font-size: 20px;
  font-weight: 800;
  text-decoration: none;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

.site-main {
  width: min(1120px, calc(100% - 32px));
  margin: 36px auto;
}

.content-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(18px, 4vw, 40px);
}

.button,
.wp-element-button,
button,
input[type="submit"] {
  border-radius: 6px;
  background: var(--accent);
  color: #ffffff;
  border: 0;
  font-weight: 700;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
}

@media (max-width: 720px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav ul {
    flex-wrap: wrap;
  }
}
