:root {
  --color-primary: var(--red);
  --color-secondary: var(--soft);
  --color-accent: var(--red);
  --color-dark: var(--ink);
  --color-light: #fff;
  --font-main: var(--font);
  --font-heading: var(--font);
  --container-width: var(--max);
  --border-radius: var(--radius);
  --transition: 180ms ease;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

body,
button,
input,
select,
textarea,
.header,
.footer,
.btn,
.logo,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font) !important;
  letter-spacing: 0;
}

.skip-link:focus,
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}

.menu-toggle { display: none; }

.custom-logo-link {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}
.custom-logo-link img {
  width: auto;
  max-width: 220px;
  max-height: 42px;
}
.footer-logo-wrap .custom-logo-link img { max-height: 36px; }

.footer-menu {
  display: grid;
  gap: 8px;
}
.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 18px;
  color: #fff;
  font-weight: 800;
  font-size: 12px;
}
.footer-socials a { opacity: .86; }
.footer-socials a:hover { opacity: 1; }

.wp-content-area h1 {
  margin: 0 0 20px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.05;
  font-weight: 900;
}
.entry-content,
.single-content,
.page-content {
  color: var(--ink);
  font-size: 16px;
  line-height: 1.7;
}
.entry-content > * { max-width: 820px; }
.entry-content .alignwide { max-width: var(--max); }
.post-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.post-meta {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 22px;
}
.post-thumb {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 26px;
}
.post-thumb img { width: 100%; height: auto; }
.nav-links {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin: 34px 0 0;
  font-weight: 800;
}
.nav-links a,
.nav-links span {
  min-width: 38px;
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  padding: 0 12px;
}
.nav-links .current,
.nav-links a:hover { background: var(--red); color: #fff; border-color: var(--red); }

.about-red-icon svg {
  width: 28px;
  height: 28px;
  display: inline-block;
}
.check-row {
  position: relative;
  cursor: pointer;
}
.check-row input {
  position: absolute;
  right: 0;
  width: 22px;
  height: 22px;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}
.check-row input:checked + .box,
.check-row .box.on {
  background: var(--red);
  border-color: var(--red);
}
.price-filter {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.price-filter h4 { grid-column: 1 / -1; }
.price-filter label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}
.price-filter input,
.woocommerce-ordering select,
.search-form input[type="search"] {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 11px 14px;
  background: #fff;
  color: var(--ink);
  font-weight: 700;
}
.filter-actions .btn { width: 100%; }
.wc-filter-toggle { display: none; }

@media (max-width: 760px) {
  .post-grid { grid-template-columns: 1fr; }
  .wc-filter-toggle {
    display: inline-flex;
    margin-bottom: 14px;
  }
  .wc-filter-panel:not(.is-open) { display: none; }
  .custom-logo-link img { max-width: 180px; }
}
