:root {
  --text-main: #1f2937;
  --text-muted: #6b7280;
  --heading-main: #111827;
  --border-soft: #e5e7eb;
  --primary: #2563eb;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Inter",
               "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-main);
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6 {
  color: var(--heading-main);
  font-weight: 600;
  line-height: 1.35;
  margin-top: 0;
}

h1 {
  font-size: 40px;
  margin-bottom: 24px;
  letter-spacing: -0.4px;
}

h2 {
  font-size: 30px;
  margin-bottom: 20px;
  letter-spacing: -0.2px;
}

h3 {
  font-size: 22px;
  margin-bottom: 16px;
}

h4 {
  font-size: 18px;
  margin-bottom: 12px;
}

h5 {
  font-size: 16px;
  margin-bottom: 8px;
}

h6 {
  font-size: 14px;
  margin-bottom: 6px;
}
p {
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 16px;
  color: var(--text-main);
}

strong {
  font-weight: 600;
  color: var(--heading-main);
}

small {
  font-size: 14px;
  color: var(--text-muted);
}
a {
  color: var(--primary);
  text-decoration: none;
  transition: color .2s ease;
}

a:hover {
  color: #1d4ed8;
  text-decoration: underline;
}
ul,
ol {
  padding-left: 22px;
  margin-top: 0;
  margin-bottom: 20px;
}

li {
  margin-bottom: 10px;
  line-height: 1.6;
}
hr {
  border: none;
  border-top: 1px solid var(--border-soft);
  margin: 48px 0;
}

blockquote {
  border-left: 4px solid var(--primary);
  padding-left: 16px;
  margin: 24px 0;
  color: #374151;
  font-style: italic;
}
input,
textarea,
select {
  font-family: inherit;
  font-size: 15px;
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid var(--border-soft);
  width: 100%;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--primary);
}
button,
.button,
input[type="submit"] {
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  padding: 12px 22px;
  border-radius: 6px;
  border: none;
  background-color: var(--primary);
  color: #ffffff;
  cursor: pointer;
  transition: background .2s ease;
}

button:hover,
.button:hover,
input[type="submit"]:hover {
  background-color: #1d4ed8;
}
.woocommerce p {
  font-size: 15.5px;
}

.woocommerce .price {
  font-weight: 600;
  color: var(--heading-main);
}
@media (max-width: 768px) {
  body {
    font-size: 15.5px;
  }

  h1 {
    font-size: 30px;
  }

  h2 {
    font-size: 24px;
  }

  h3 {
    font-size: 20px;
  }
}
