:root {
  --bqw-red: #f8203f;
  --bqw-red-dark: #d91430;
  --bqw-orange: #f69946;
  --bqw-text: #222222;
  --bqw-muted: #555555;
  --bqw-border: #eeeeee;
  --bqw-hero-bg: #fbefd0;
  --bqw-radius: 10px;
  --bqw-container: 1430px;
}

* {
  box-sizing: border-box;
}

body {
  color: var(--bqw-text);
  font-family: Inter, Arial, sans-serif;
  background: #ffffff;
}

.bqw-container {
  width: min(var(--bqw-container), calc(100% - 32px));
  margin-inline: auto;
}

.bqw-site-header {
  position: relative;
  z-index: 20;
  background: #ffffff;
}

.bqw-topbar {
  background: var(--bqw-red);
}

.bqw-topbar__inner {
  display: grid;
  grid-template-columns: auto 42px minmax(260px, 1fr) auto;
  gap: 18px;
  align-items: center;
  min-height: 62px;
}

.bqw-logo {
  color: #ffffff;
  font-size: 26px;
  font-weight: 900;
  letter-spacing: 0;
  text-decoration: none;
  white-space: nowrap;
}

.bqw-logo:hover {
  color: #ffffff;
}

.bqw-menu-dot {
  width: 36px;
  height: 36px;
  border: 1px solid rgb(255 255 255 / 65%);
  border-radius: 50%;
  background: transparent;
  color: #ffffff;
  font-size: 18px;
  line-height: 1;
}

.bqw-search {
  display: grid;
  grid-template-columns: 126px minmax(0, 1fr) 54px;
  height: 44px;
  min-height: 44px;
  border-radius: 999px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: inset 0 0 0 1px rgb(0 0 0 / 8%);
}

.bqw-search select,
.bqw-search input,
.bqw-search button {
  min-width: 0;
  border: 0;
  background: transparent;
  color: #444444;
  font-size: 14px;
  line-height: 1;
  outline: none;
}

.bqw-search select {
  height: 44px;
  padding: 0 30px 0 22px;
  border-right: 1px solid #dcdcdc;
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #777777 50%), linear-gradient(135deg, #777777 50%, transparent 50%);
  background-position: calc(100% - 18px) 19px, calc(100% - 13px) 19px;
  background-repeat: no-repeat;
  background-size: 5px 5px, 5px 5px;
  font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
}

.bqw-search input {
  height: 44px;
  padding: 0 18px;
  border-right: 1px solid #eeeeee;
}

.bqw-site-header .bqw-search select,
.bqw-site-header .bqw-search input[type="search"] {
  border-top: 0 !important;
  border-bottom: 0 !important;
  border-left: 0 !important;
  box-shadow: none !important;
  outline: 0 !important;
}

.bqw-site-header .bqw-search input[type="search"] {
  border-right: 1px solid #eeeeee !important;
}

.bqw-site-header .bqw-search select {
  border-right: 1px solid #dcdcdc !important;
}

.bqw-search input::placeholder {
  color: #8b8b8b;
}

.bqw-search button {
  display: grid;
  place-items: center;
  width: 54px;
  height: 44px;
  color: #1f1f1f;
  cursor: pointer;
}

.bqw-search button svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.bqw-search:focus-within {
  box-shadow: inset 0 0 0 2px rgb(255 255 255 / 70%), 0 0 0 2px rgb(255 255 255 / 18%);
}

.bqw-user-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.bqw-user-actions a {
  color: #ffffff;
  text-decoration: none;
}

.bqw-cart-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  background: #ffffff;
}

.bqw-user-actions .bqw-cart-link {
  color: var(--bqw-red);
}

.bqw-navrow {
  border-bottom: 1px solid #eeeeee;
}

.bqw-navrow__inner {
  display: grid;
  grid-template-columns: 260px 1fr auto;
  align-items: center;
  min-height: 58px;
  gap: 20px;
}

.bqw-department-menu {
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
  z-index: 80;
}

.bqw-department-toggle {
  display: flex;
  gap: 7px;
  align-items: center;
  width: 100%;
  min-height: 58px;
  border: 0;
  background: transparent;
  color: #333333;
  font-size: 13px;
  font-weight: 700;
  text-align: left;
  text-transform: uppercase;
  cursor: pointer;
}

.bqw-burger {
  color: #555555;
  font-size: 14px;
  line-height: 1;
}

.bqw-department-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 260px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity .16s ease, transform .16s ease, visibility .16s ease;
}

.bqw-department-menu:hover .bqw-department-dropdown,
.bqw-department-toggle:hover + .bqw-department-dropdown,
.bqw-department-toggle:focus-visible + .bqw-department-dropdown,
.bqw-department-menu.is-open .bqw-department-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.bqw-department-list {
  position: relative;
  min-height: 358px;
  margin: 0;
  padding: 8px 0;
  border-radius: 0 0 10px 10px;
  background: #ffffff;
  box-shadow: 0 4px 10px rgb(0 0 0 / 12%);
  list-style: none;
}

.bqw-department-item {
  position: static;
}

.bqw-department-link {
  position: relative;
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr) auto 12px;
  gap: 10px;
  align-items: center;
  min-height: 40px;
  padding: 8px 14px;
  color: #333333;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.bqw-department-link::after {
  content: "›";
  grid-column: 4;
  justify-self: end;
  color: #bbbbbb;
  font-size: 17px;
}

.bqw-department-link:hover,
.bqw-department-item.is-active > .bqw-department-link,
.bqw-department-item:focus-within > .bqw-department-link {
  background: #fafafa;
  color: var(--bqw-red);
}

.bqw-department-link img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.bqw-department-link em,
.bqw-mega-column h3 span {
  border-radius: 4px;
  background: #ffe8a3;
  color: #8a6400;
  font-size: 10px;
  font-style: normal;
  line-height: 1;
  padding: 3px 4px;
}

.bqw-department-link em {
  grid-column: 3;
}

.bqw-mega-panel {
  position: absolute;
  top: 0;
  left: 260px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 28px;
  width: min(1100px, calc(100vw - 300px));
  min-height: 358px;
  padding: 28px 30px;
  border-left: 1px solid #eeeeee;
  border-radius: 0 0 10px 0;
  background: #ffffff;
  box-shadow: 8px 8px 18px rgb(0 0 0 / 10%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.bqw-department-item.is-active > .bqw-mega-panel,
.bqw-department-item:hover > .bqw-mega-panel,
.bqw-department-item:focus-within > .bqw-mega-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.bqw-mega-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(150px, 1fr));
  gap: 26px 34px;
  align-content: start;
}

.bqw-mega-column h3 {
  display: flex;
  gap: 8px;
  align-items: center;
  margin: 0 0 10px;
  color: #222222;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
}

.bqw-mega-column ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.bqw-mega-column a {
  display: block;
  padding: 5px 0;
  color: #777777;
  font-size: 13px;
  line-height: 1.35;
  text-decoration: none;
}

.bqw-mega-column a:hover {
  color: var(--bqw-red);
}

.bqw-mega-featured {
  display: grid;
  gap: 12px;
  align-content: start;
}

.bqw-mega-featured a {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 12px;
  align-items: center;
  color: #333333;
  text-decoration: none;
}

.bqw-mega-featured img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.bqw-mega-featured strong,
.bqw-mega-featured small,
.bqw-mega-featured em {
  display: block;
}

.bqw-mega-featured strong {
  font-size: 13px;
  line-height: 1.35;
}

.bqw-mega-featured small {
  color: #ffc400;
  font-size: 12px;
  letter-spacing: 0;
}

.bqw-mega-featured em {
  color: var(--bqw-red);
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
}

.bqw-main-menu ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.bqw-main-menu a,
.bqw-contact {
  color: #333333;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
}

.bqw-contact {
  text-transform: none;
  font-weight: 600;
}

.bqw-site-main {
  min-height: 60vh;
}

.bqw-home-hero {
  max-width: var(--bqw-container);
  margin: 10px auto 0;
}

.bqw-hero-shell {
  display: grid;
  grid-template-columns: 18% 1fr;
  gap: 18px;
  margin-top: 10px;
}

.bqw-departments {
  align-self: start;
  overflow: hidden;
  border: 1px solid #eeeeee;
  border-radius: var(--bqw-radius);
  background: #ffffff;
  box-shadow: 0 4px 10px rgb(0 0 0 / 8%);
}

.bqw-departments a {
  display: grid;
  grid-template-columns: 24px 1fr auto;
  gap: 10px;
  align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  color: #333333;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.bqw-departments a:hover {
  background: #fafafa;
  color: var(--bqw-red);
}

.bqw-departments img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.bqw-departments em {
  border-radius: 4px;
  background: #ffe8a3;
  color: #8a6400;
  font-size: 10px;
  font-style: normal;
  line-height: 1;
  padding: 3px 4px;
}

.bqw-hero-panel {
  min-height: 405px;
  border: 10px solid #ffffff;
  border-radius: var(--bqw-radius);
  background-color: var(--bqw-hero-bg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: 0 4px 12px rgb(0 0 0 / 12%);
  padding: 92px 90px 95px;
}

.bqw-hero-title {
  margin: 0;
  color: #363636;
  font-size: 60px;
  font-weight: 900;
  line-height: 1;
}

.bqw-hero-title strong {
  display: block;
  color: var(--bqw-red);
}

.bqw-hero-copy {
  max-width: 410px;
  margin: 24px 0 34px;
  color: #444444;
  font-size: 17px;
  line-height: 1.65;
}

.bqw-button,
.single_add_to_cart_button,
.checkout-button,
.button.alt {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  background: var(--bqw-red);
  color: #ffffff;
  font-weight: 700;
  transition: background-color .2s ease, transform .2s ease;
}

.bqw-button:hover,
.single_add_to_cart_button:hover,
.checkout-button:hover,
.button.alt:hover {
  background: var(--bqw-orange);
  color: #ffffff;
  transform: translateY(-1px);
}

.bqw-button span {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #ffffff;
  color: #111111;
}

.bqw-trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 34px;
  border-bottom: 1px solid rgb(152 152 152 / 10%);
}

.bqw-trust-row article {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  justify-content: center;
  padding: 28px 30px;
}

.bqw-trust-row span {
  color: var(--bqw-orange);
  line-height: 1;
}

.bqw-trust-icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  color: var(--bqw-orange);
}

.bqw-trust-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.bqw-trust-row h2 {
  margin: 0 0 5px;
  color: var(--bqw-red);
  font-family: Dosis, Inter, Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
}

.bqw-trust-row p {
  margin: 0;
  color: #555555;
  font-size: 14px;
}

.bqw-brand-tiles {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 28px;
  margin-top: 30px;
}

.bqw-brand-card {
  display: grid;
  place-items: center;
  min-height: 150px;
  padding: 18px;
  color: #388e3c;
  text-align: center;
  text-decoration: none;
}

.bqw-brand-card:hover {
  transform: translateY(-2px);
}

.bqw-brand-card img {
  width: 126px;
  height: 70px;
  max-width: 86%;
  object-fit: contain;
  margin-bottom: 18px;
}

.bqw-brand-card strong {
  color: #388e3c;
  font-family: Dosis, Inter, Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
}

.bqw-brand-card span {
  color: #388e3c;
  font-size: 13px;
}

.bqw-product-section {
  margin-top: 74px;
}

.bqw-section-heading {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: center;
  text-align: center;
}

.bqw-section-heading::before,
.bqw-section-heading::after {
  content: "";
  height: 4px;
  border-top: 1px solid #eeeeee;
  border-bottom: 1px solid #eeeeee;
}

.bqw-section-heading span {
  display: inline-block;
  justify-self: center;
  grid-column: 2;
  width: max-content;
  padding: 3px 8px;
  color: var(--bqw-orange);
  background: rgb(246 153 70 / 20%);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.bqw-section-heading h2 {
  grid-column: 2;
  margin: 0;
  color: #222222;
  font-family: Dosis, Inter, Arial, sans-serif;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.bqw-section-title,
.etheme-advanced-headline {
  font-family: Dosis, Inter, Arial, sans-serif;
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
}

.bqw-kicker,
.etheme-a-h-text-before {
  color: var(--bqw-orange);
  background: rgb(246 153 70 / 20%);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.bqw-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  margin: 24px 0 28px;
}

.bqw-tabs button {
  min-height: 38px;
  border: 0;
  border-radius: 999px;
  background: #ffffff;
  color: #444444;
  padding: 0 22px;
  font-family: Dosis, Inter, Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
}

.bqw-tabs button:hover,
.bqw-tabs button.is-active {
  background: var(--bqw-red);
  color: #ffffff;
}

.bqw-product-grid {
  display: grid;
  border-top: 1px solid #eeeeee;
  border-left: 1px solid #eeeeee;
}

.bqw-product-grid--five {
  grid-template-columns: repeat(5, 1fr);
}

.bqw-product-card {
  position: relative;
  min-width: 0;
  border-right: 1px solid #eeeeee;
  border-bottom: 1px solid #eeeeee;
  background: #ffffff;
  text-align: center;
}

.bqw-product-card__image {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 1 / .92;
  padding: 28px 24px 12px;
  overflow: hidden;
  text-decoration: none;
}

.bqw-product-card__image img {
  width: 82%;
  max-width: 210px;
  height: 180px;
  object-fit: contain;
  transition: transform .2s ease;
}

.bqw-product-card:hover .bqw-product-card__image img {
  transform: translateY(-4px);
}

.bqw-sale-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  border-radius: 2px;
  background: var(--bqw-red);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  padding: 6px 7px;
}

.bqw-quick-buy {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translate(-50%, 12px);
  opacity: 0;
  border-radius: 999px;
  background: var(--bqw-red);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  padding: 9px 16px;
  transition: opacity .2s ease, transform .2s ease;
}

.bqw-product-card:hover .bqw-quick-buy {
  opacity: 1;
  transform: translate(-50%, 0);
}

.bqw-product-card__body {
  padding: 0 18px 28px;
}

.bqw-product-card h3 {
  min-height: 42px;
  margin: 0 0 4px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
}

.bqw-product-card h3 a {
  color: #333333;
  text-decoration: none;
}

.bqw-product-card p {
  margin: 0 0 8px;
  color: #999999;
  font-size: 13px;
}

.bqw-stars {
  color: #fdd835;
  font-size: 15px;
  letter-spacing: 0;
  line-height: 1;
  margin-bottom: 8px;
}

.bqw-price-line {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  justify-content: center;
  align-items: baseline;
  font-size: 13px;
}

.bqw-price-line del {
  color: #999999;
}

.bqw-price-line strong {
  color: var(--bqw-red);
  font-size: 14px;
}

.bqw-faq-section {
  margin-top: 0;
  padding: 72px 0 76px;
  background: #f5f8fc;
}

.bqw-faq-inner {
  max-width: 872px;
}

.bqw-faq-heading {
  margin-bottom: 46px;
  text-align: center;
}

.bqw-faq-heading h2 {
  margin: 0 0 14px;
  color: #071831;
  font-size: 34px;
  font-weight: 700;
  line-height: 1.25;
}

.bqw-faq-heading p {
  margin: 0;
  color: #66758c;
  font-size: 16px;
  line-height: 1.6;
}

.bqw-faq-list {
  display: grid;
  gap: 10px;
}

.bqw-faq-item {
  overflow: hidden;
  border: 1px solid #dce6f2;
  border-radius: 8px;
  background: #ffffff;
  transition: border-color .18s ease, box-shadow .18s ease;
}

.bqw-faq-item.is-open {
  border-color: #c8d8ef;
  box-shadow: 0 12px 30px rgb(13 38 76 / 8%);
}

.bqw-faq-question {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) 28px;
  gap: 8px;
  align-items: center;
  width: 100%;
  min-height: 62px;
  border: 0;
  background: transparent;
  color: #071831;
  padding: 0 26px 0 24px;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.bqw-faq-number {
  color: #0b5cff;
  font-size: 14px;
  font-weight: 700;
}

.bqw-faq-title {
  min-width: 0;
  color: #071831;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
}

.bqw-faq-icon {
  justify-self: end;
  color: #58708d;
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
  transition: transform .18s ease, color .18s ease;
}

.bqw-faq-item.is-open .bqw-faq-icon {
  color: var(--bqw-red);
  transform: rotate(45deg);
}

.bqw-faq-answer {
  border-top: 1px solid #edf2f8;
  padding: 0 28px 20px 56px;
}

.bqw-faq-answer p {
  max-width: 720px;
  margin: 0;
  color: #596a82;
  font-size: 14px;
  line-height: 1.75;
}

.bqw-faq-link {
  display: flex;
  gap: 7px;
  align-items: center;
  justify-content: center;
  width: max-content;
  max-width: 100%;
  margin: 34px auto 0;
  color: #0b5cff;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.bqw-faq-link:hover {
  color: var(--bqw-red);
}

.bqw-blog-row {
  margin-top: 86px;
  padding-bottom: 78px;
  background:
    radial-gradient(circle at 8% 45%, #f6b53b 0 14px, transparent 15px),
    radial-gradient(circle at 55% 70%, transparent 0 14px, #f6b53b 15px 22px, transparent 23px),
    linear-gradient(174deg, transparent 0 46%, #f7f7f7 47% 100%);
}

.bqw-shop-hero {
  padding: 78px 0 58px;
  text-align: center;
}

.bqw-breadcrumb,
.bqw-single-breadcrumb {
  color: #9a9a9a;
  font-size: 14px;
}

.bqw-breadcrumb span {
  margin-left: 7px;
}

.bqw-shop-hero h1 {
  margin: 10px 0 0;
  font-family: Dosis, Inter, Arial, sans-serif;
  font-size: 34px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.bqw-shop-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 34px;
  align-items: start;
}

.bqw-shop-sidebar section {
  margin-bottom: 42px;
}

.bqw-shop-sidebar h2 {
  margin: 0 0 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid #eeeeee;
  color: #222222;
  font-family: Dosis, Inter, Arial, sans-serif;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
}

.bqw-shop-sidebar a {
  display: block;
  color: #8a8a8a;
  font-size: 16px;
  line-height: 2;
  text-decoration: none;
}

.bqw-shop-sidebar a:hover {
  color: var(--bqw-red);
}

.bqw-shop-sidebar .bqw-category-link {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  min-height: 32px;
  color: #8a8a8a;
}

.bqw-category-link span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.bqw-category-link em,
.bqw-check em {
  color: #b9b9b9;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
}

.bqw-category-link.is-active {
  color: var(--bqw-red);
  font-weight: 700;
}

.bqw-category-link.is-disabled {
  color: #c4c4c4;
}

.bqw-sidebar-form {
  margin: 0;
}

.bqw-price-slider {
  position: relative;
  height: 4px;
  margin: 18px 0 26px;
  border-radius: 999px;
  background: var(--bqw-red);
}

.bqw-price-slider::before,
.bqw-price-slider::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 12px;
  height: 12px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: var(--bqw-red);
}

.bqw-price-slider::before {
  left: 0;
}

.bqw-price-slider::after {
  right: 0;
}

.bqw-price-range {
  position: relative;
  height: 26px;
  margin: 18px 0 18px;
}

.bqw-price-range::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: 999px;
  background: #eeeeee;
}

.bqw-price-track {
  position: absolute;
  top: 11px;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: 999px;
  background: var(--bqw-red);
}

.bqw-price-range input[type="range"] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 26px;
  margin: 0;
  appearance: none;
  background: transparent;
  pointer-events: none;
}

.bqw-price-range input[type="range"]::-webkit-slider-thumb {
  width: 14px;
  height: 14px;
  border: 0;
  border-radius: 50%;
  appearance: none;
  background: var(--bqw-red);
  cursor: pointer;
  pointer-events: auto;
}

.bqw-price-range input[type="range"]::-moz-range-thumb {
  width: 14px;
  height: 14px;
  border: 0;
  border-radius: 50%;
  background: var(--bqw-red);
  cursor: pointer;
  pointer-events: auto;
}

.bqw-price-inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 12px;
}

.bqw-price-inputs label {
  display: grid;
  gap: 5px;
  min-width: 0;
  color: #777777;
  font-size: 12px;
  font-weight: 700;
}

.bqw-price-inputs input {
  width: 100%;
  min-height: 36px;
  border: 1px solid #eeeeee;
  padding: 0 10px;
  color: #555555;
  font: inherit;
}

.bqw-filter-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #555555;
  font-size: 14px;
}

.bqw-filter-price button {
  min-height: 32px;
  border: 1px solid #eeeeee;
  background: #ffffff;
  color: #333333;
  font-weight: 700;
  padding: 0 14px;
  cursor: pointer;
}

.bqw-filter-price button:hover {
  border-color: var(--bqw-red);
  color: var(--bqw-red);
}

.bqw-check {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  margin: 0 0 13px;
  color: #888888;
  font-size: 15px;
  cursor: pointer;
}

.bqw-check input {
  width: 14px;
  height: 14px;
  accent-color: var(--bqw-red);
}

.bqw-check span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.bqw-check:has(input:checked) {
  color: var(--bqw-red);
  font-weight: 700;
}

.bqw-check.is-disabled {
  color: #c4c4c4;
  cursor: default;
}

.bqw-filter-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin: -12px 0 38px;
}

.bqw-filter-actions button,
.bqw-filter-actions a,
.bqw-filter-reset,
.bqw-filter-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  border: 1px solid #eeeeee;
  background: #ffffff;
  color: #555555;
  padding: 0 14px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.bqw-filter-actions button {
  background: var(--bqw-red);
  border-color: var(--bqw-red);
  color: #ffffff;
  cursor: pointer;
}

.bqw-filter-actions a:hover,
.bqw-filter-reset:hover,
.bqw-filter-chip:hover {
  border-color: var(--bqw-red);
  color: var(--bqw-red);
}

.bqw-shop-banner {
  min-height: 252px;
  display: grid;
  justify-items: center;
  align-content: center;
  border-radius: var(--bqw-radius);
  background-position: center;
  background-size: cover;
  text-align: center;
}

.bqw-shop-banner h2 {
  margin: 0 0 8px;
  color: #333333;
  font-family: Inter, Arial, sans-serif;
  font-size: 32px;
  font-weight: 600;
}

.bqw-shop-banner p {
  margin: 0 0 20px;
  color: #333333;
  font-size: 15px;
}

.bqw-shop-banner a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--bqw-red);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.bqw-shop-banner span {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #ffffff;
  color: #111111;
}

.bqw-shop-toolbar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  margin: 14px 0;
}

.bqw-shop-toolbar input[type="hidden"] {
  display: none;
}

.bqw-shop-toolbar select {
  min-height: 36px;
  border: 1px solid #eeeeee;
  background: #ffffff;
  color: #777777;
  padding: 0 12px;
}

.bqw-active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: 14px 0 0;
}

.bqw-active-filters > span {
  color: #555555;
  font-size: 14px;
  font-weight: 700;
}

.bqw-view-icons {
  display: flex;
  gap: 10px;
  color: #999999;
  font-size: 18px;
}

.bqw-view-icons .is-active {
  color: var(--bqw-red);
}

.bqw-show-count {
  display: flex;
  gap: 10px;
  align-items: center;
  color: #555555;
  font-size: 14px;
}

.bqw-product-grid--shop {
  grid-template-columns: repeat(4, 1fr);
}

.bqw-empty-products {
  display: grid;
  justify-items: center;
  gap: 10px;
  min-height: 260px;
  align-content: center;
  border: 1px solid #eeeeee;
  text-align: center;
}

.bqw-empty-products h2 {
  margin: 0;
  color: #222222;
  font-size: 22px;
  font-weight: 700;
}

.bqw-empty-products p {
  margin: 0;
  color: #777777;
}

.bqw-empty-products a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  border-radius: 999px;
  background: var(--bqw-red);
  color: #ffffff;
  padding: 0 18px;
  font-weight: 700;
  text-decoration: none;
}

.bqw-pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 44px 0 120px;
}

.bqw-pagination a,
.bqw-pagination button,
.bqw-pagination span {
  display: grid;
  place-items: center;
  min-width: 36px;
  height: 36px;
  border: 1px solid #eeeeee;
  background: #ffffff;
  color: #777777;
  text-decoration: none;
  font: inherit;
}

.bqw-pagination .is-active {
  background: var(--bqw-red);
  color: #ffffff;
  border-color: var(--bqw-red);
}

.bqw-single {
  padding-top: 28px;
}

.bqw-single-breadcrumb {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
}

.bqw-single-breadcrumb span {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-items: center;
  min-width: 0;
}

.bqw-single-breadcrumb a {
  color: #555555;
  text-decoration: none;
}

.bqw-single-breadcrumb a:hover {
  color: var(--bqw-red);
}

.bqw-single-breadcrumb em {
  color: #bbbbbb;
  font-style: normal;
}

.bqw-single-breadcrumb strong {
  color: #222222;
  font-weight: 600;
}

.bqw-back-button {
  border: 0;
  background: transparent;
  color: #555555;
  font: inherit;
  cursor: pointer;
}

.bqw-single-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 270px;
  gap: 34px;
  align-items: start;
}

.bqw-single-main {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(330px, .96fr);
  gap: 34px;
  align-items: start;
}

.bqw-single-gallery {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 440px;
  border: 1px solid #e5e5e5;
  border-radius: var(--bqw-radius);
  padding: 42px;
}

.bqw-single-gallery img {
  width: min(420px, 74%);
  height: auto;
  object-fit: contain;
}

.bqw-gallery-nav {
  position: absolute;
  top: 50%;
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .9);
  color: #aaaaaa;
  font-size: 24px;
  line-height: 1;
  transform: translateY(-50%);
}

.bqw-gallery-nav--prev {
  left: 14px;
}

.bqw-gallery-nav--next {
  right: 14px;
}

.bqw-gallery-thumbs {
  position: absolute;
  left: 18px;
  bottom: 18px;
}

.bqw-gallery-thumbs span {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid var(--bqw-red);
  background: #ffffff;
}

.bqw-gallery-thumbs img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.bqw-single-summary h1 {
  margin: 0 0 12px;
  color: #222222;
  font-size: 29px;
  font-weight: 600;
}

.bqw-single-price {
  display: flex;
  gap: 10px;
  align-items: baseline;
  margin-bottom: 18px;
  font-size: 24px;
}

.bqw-single-price del {
  color: var(--bqw-red);
  font-weight: 700;
}

.bqw-single-price strong {
  color: #b00045;
  font-weight: 700;
}

.bqw-single-desc {
  color: #777777;
  font-size: 17px;
  line-height: 1.5;
  margin-bottom: 24px;
}

.bqw-single-cart form.cart {
  display: flex;
  gap: 20px;
  align-items: center;
  margin: 0 0 30px;
}

.bqw-single-cart .quantity {
  display: flex;
  border: 1px solid #dddddd;
  height: 42px;
}

.bqw-single-cart .quantity input {
  width: 54px;
  border: 0;
  text-align: center;
}

.bqw-single-cart .single_add_to_cart_button {
  min-width: 210px;
  min-height: 48px;
  border-radius: 999px;
  background: #1d1d1d;
  font-size: 13px;
  text-transform: uppercase;
}

.bqw-single-meta {
  color: #777777;
  font-size: 15px;
  line-height: 1.7;
}

.bqw-single-meta a {
  color: #777777;
}

.bqw-product-sidebar section {
  margin-bottom: 28px;
}

.bqw-product-sidebar h3 {
  margin: 0 0 16px;
  color: #333333;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.bqw-product-sidebar ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.bqw-product-sidebar li {
  border-bottom: 1px solid #eeeeee;
}

.bqw-product-sidebar li a {
  display: block;
  padding: 9px 0;
  color: #777777;
  font-size: 14px;
  text-decoration: none;
}

.bqw-mini-products a {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 12px;
  align-items: center;
  padding: 10px 0;
  color: #333333;
  text-decoration: none;
}

.bqw-mini-products img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.bqw-mini-products strong,
.bqw-mini-products em {
  display: block;
}

.bqw-mini-products strong {
  margin-bottom: 4px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
}

.bqw-mini-products em {
  color: var(--bqw-red);
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
}

.bqw-product-support {
  border: 1px solid #eeeeee;
  padding: 16px;
}

.bqw-product-support p {
  margin: 0 0 12px;
  color: #777777;
  font-size: 13px;
  line-height: 1.55;
}

.bqw-product-support a {
  color: var(--bqw-red);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.bqw-product-tabs {
  margin-top: 36px;
}

.bqw-tab-nav {
  display: flex;
  gap: 28px;
  border-bottom: 1px solid #eeeeee;
}

.bqw-tab-nav span {
  position: relative;
  padding: 0 0 14px;
  color: #777777;
  font-size: 13px;
  font-weight: 700;
}

.bqw-tab-nav .is-active {
  color: #222222;
}

.bqw-tab-nav .is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: var(--bqw-red);
}

.bqw-product-copy {
  max-width: 880px;
  padding-top: 22px;
  color: #333333;
  font-size: 14px;
  line-height: 1.75;
}

.bqw-product-copy h2,
.bqw-product-copy h3 {
  color: #222222;
  font-weight: 700;
  line-height: 1.35;
}

.bqw-product-copy h2 {
  margin: 22px 0 12px;
  font-size: 22px;
}

.bqw-product-copy h3 {
  margin: 28px 0 10px;
  font-size: 18px;
}

.bqw-product-copy p {
  margin: 0 0 14px;
}

.bqw-product-copy ul,
.bqw-product-copy ol {
  margin: 0 0 16px 20px;
  padding: 0;
}

.bqw-product-copy table {
  width: 100%;
  margin: 18px 0 22px;
  border-collapse: collapse;
  font-size: 13px;
  table-layout: fixed;
}

.bqw-product-copy th {
  background: #00a86b;
  color: #ffffff;
}

.bqw-product-copy th,
.bqw-product-copy td {
  border: 1px solid #e6e6e6;
  padding: 9px 11px;
  text-align: left;
  overflow-wrap: anywhere;
}

.bqw-note-box {
  border: 1px solid #ffd8ab;
  background: #fff7ef;
  padding: 12px 14px;
  color: #8a5a21;
  font-size: 13px;
}

.bqw-review-panel {
  max-width: 880px;
  margin-top: 56px;
  padding-top: 34px;
  border-top: 1px solid #eeeeee;
}

.bqw-review-panel h2 {
  margin: 0 0 18px;
  text-align: center;
  color: #222222;
  font-size: 21px;
}

.bqw-rating-summary {
  display: grid;
  justify-items: center;
  gap: 4px;
  margin-bottom: 24px;
  color: #777777;
}

.bqw-rating-summary strong {
  color: #222222;
  font-size: 24px;
}

.bqw-rating-summary span,
.bqw-review-item span {
  color: #ffc400;
  letter-spacing: 0;
}

.bqw-review-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  margin-bottom: 24px;
  padding: 16px;
  background: #f7f7f7;
}

.bqw-review-avatar {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bqw-red);
  color: #ffffff;
  font-weight: 700;
}

.bqw-review-item p {
  margin: 6px 0 0;
  color: #555555;
  font-size: 14px;
}

.bqw-review-form {
  display: grid;
  gap: 12px;
}

.bqw-review-form label {
  color: #222222;
  font-weight: 700;
}

.bqw-review-form textarea,
.bqw-review-form input {
  width: 100%;
  border: 1px solid #dddddd;
  padding: 11px 12px;
  font: inherit;
}

.bqw-review-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.bqw-review-form button {
  justify-self: start;
  min-width: 118px;
  min-height: 42px;
  border: 0;
  background: var(--bqw-red);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
}

.bqw-related {
  margin-top: 80px;
  padding-bottom: 90px;
}

.bqw-related h2 {
  margin: 0 0 44px;
  text-align: center;
  color: #222222;
  font-size: 28px;
  font-weight: 400;
}

.bqw-product-grid--related {
  grid-template-columns: repeat(4, 1fr);
  border: 0;
}

.bqw-product-grid--related .bqw-product-card {
  border: 0;
}

.bqw-product-grid--related .bqw-product-card__image img {
  width: 92%;
  height: 290px;
}

.bqw-blog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 68px;
}

.bqw-blog-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #eeeeee;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgb(18 31 53 / 4%);
}

.bqw-blog-card a {
  display: grid;
  grid-template-rows: auto 1fr;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.bqw-blog-card__image {
  display: grid;
  place-items: center;
  overflow: hidden;
  height: 210px;
  margin: 16px 16px 0;
  border-radius: 6px;
  background: #fafafa;
  padding: 18px;
}

.bqw-blog-card__image img {
  display: block;
  width: auto !important;
  height: auto !important;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform .2s ease;
}

.bqw-blog-card:hover .bqw-blog-card__image img {
  transform: scale(1.04);
}

.bqw-blog-card__body {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 18px 18px 22px;
}

.bqw-blog-grid h3 {
  margin: 0 0 8px;
  color: #222222;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
}

.bqw-blog-grid p {
  margin: 0;
  color: #555555;
  font-size: 14px;
  line-height: 1.55;
}

.bqw-blog-card em {
  color: var(--bqw-red);
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
}

.bqw-brand-band {
  min-height: 260px;
  padding: 80px 0 72px;
  background: #f7f7f7;
}

.bqw-footer-brands {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.bqw-footer-brands a {
  display: grid;
  place-items: center;
  overflow: hidden;
  min-height: 112px;
  padding: 6px;
  border: 1px solid #eeeeee;
  border-radius: 8px;
  background: #ffffff;
  transition: transform .2s ease, border-color .2s ease;
}

.bqw-footer-brands a:hover {
  border-color: var(--bqw-red);
  transform: translateY(-2px);
}

.bqw-footer-brands img {
  width: 92%;
  height: 96px;
  max-width: 220px;
  object-fit: contain;
  transform: scale(1.24);
}

.bqw-support-hero {
  padding: 72px 0 66px;
  background: #f5f8fc;
  text-align: center;
}

.bqw-support-breadcrumb {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: #8a97aa;
  font-size: 14px;
}

.bqw-support-breadcrumb a {
  color: #5e6d83;
  text-decoration: none;
}

.bqw-support-breadcrumb a:hover {
  color: var(--bqw-red);
}

.bqw-support-breadcrumb strong {
  color: #12213a;
  font-weight: 600;
}

.bqw-support-hero h1 {
  margin: 0 0 14px;
  color: #071831;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.18;
}

.bqw-support-hero p {
  max-width: 740px;
  margin: 0 auto;
  color: #64748b;
  font-size: 16px;
  line-height: 1.7;
  overflow-wrap: anywhere;
}

.bqw-support-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  max-width: 760px;
  margin: 32px auto 0;
  padding: 8px;
  border: 1px solid #dfe8f3;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 45px rgb(20 42 82 / 8%);
}

.bqw-support-search input[type="search"] {
  min-width: 0;
  height: 46px;
  border: 0;
  padding: 0 16px;
  color: #1f2937;
  font: inherit;
  outline: none;
}

.bqw-support-search button {
  min-width: 126px;
  min-height: 46px;
  border: 0;
  border-radius: 6px;
  background: var(--bqw-red);
  color: #ffffff;
  font-weight: 700;
  cursor: pointer;
}

.bqw-support-topics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: -34px;
  position: relative;
  z-index: 2;
}

.bqw-support-topic {
  display: grid;
  align-content: start;
  min-width: 0;
  min-height: 178px;
  padding: 24px;
  border: 1px solid #e3eaf3;
  border-radius: 8px;
  background: #ffffff;
  color: inherit;
  text-decoration: none;
  box-shadow: 0 14px 36px rgb(15 34 65 / 6%);
  transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}

.bqw-support-topic:hover {
  border-color: #cbd8ea;
  color: inherit;
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgb(15 34 65 / 10%);
}

.bqw-support-topic span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: #eef4ff;
  color: #0b5cff;
  font-weight: 700;
}

.bqw-support-topic h2 {
  margin: 0 0 10px;
  color: #071831;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.bqw-support-topic p {
  margin: 0;
  color: #607086;
  font-size: 14px;
  line-height: 1.65;
  overflow-wrap: anywhere;
}

.bqw-support-popular {
  padding: 68px 0 76px;
}

.bqw-support-section-heading {
  margin-bottom: 26px;
  text-align: center;
}

.bqw-support-section-heading span {
  display: inline-block;
  margin-bottom: 12px;
  padding: 4px 9px;
  background: rgb(246 153 70 / 18%);
  color: var(--bqw-orange);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.bqw-support-section-heading h2 {
  margin: 0;
  color: #071831;
  font-size: 30px;
  font-weight: 700;
}

.bqw-support-article-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  max-width: 920px;
  margin: 0 auto;
}

.bqw-support-article-list a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  min-width: 0;
  min-height: 60px;
  padding: 0 18px;
  border: 1px solid #e3eaf3;
  border-radius: 8px;
  background: #ffffff;
  color: #071831;
  font-weight: 700;
  text-decoration: none;
}

.bqw-support-article-list a:hover {
  border-color: var(--bqw-red);
}

.bqw-support-article-list em {
  color: var(--bqw-red);
  font-size: 13px;
  font-style: normal;
  white-space: nowrap;
}

.bqw-support-article-list span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.bqw-support-empty {
  max-width: 720px;
  margin: 0 auto;
  padding: 28px;
  border: 1px solid #e3eaf3;
  border-radius: 8px;
  text-align: center;
}

.bqw-support-empty h2 {
  margin: 0 0 10px;
}

.bqw-support-contact {
  padding: 58px 0;
  background: #071831;
}

.bqw-support-contact__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
}

.bqw-support-contact span {
  display: inline-block;
  margin-bottom: 10px;
  color: #fbbf24;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.bqw-support-contact h2 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: 30px;
  font-weight: 700;
}

.bqw-support-contact p {
  max-width: 620px;
  margin: 0;
  color: #cbd5e1;
  font-size: 15px;
  line-height: 1.7;
  overflow-wrap: anywhere;
}

.bqw-support-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.bqw-support-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
}

.bqw-support-primary {
  background: var(--bqw-red);
  color: #ffffff;
}

.bqw-support-secondary {
  border: 1px solid rgb(255 255 255 / 22%);
  color: #ffffff;
}

.bqw-blog-hero,
.bqw-post-hero {
  padding: 68px 0 52px;
  text-align: center;
}

.bqw-blog-hero h1,
.bqw-post-hero h1 {
  max-width: 880px;
  margin: 12px auto 14px;
  color: #222222;
  font-family: Dosis, Inter, Arial, sans-serif;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.18;
  text-transform: uppercase;
}

.bqw-post-hero h1 {
  text-transform: none;
}

.bqw-blog-hero p,
.bqw-post-hero p {
  max-width: 680px;
  margin: 0 auto;
  color: #666666;
  font-size: 16px;
  line-height: 1.65;
}

.bqw-blog-layout,
.bqw-post-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 36px;
  align-items: start;
  padding-bottom: 94px;
}

.bqw-blog-featured {
  display: grid;
  grid-template-columns: minmax(0, .96fr) minmax(320px, 1fr);
  gap: 30px;
  align-items: center;
  margin-bottom: 34px;
  border: 1px solid #eeeeee;
  border-radius: 8px;
  background: #ffffff;
  overflow: hidden;
}

.bqw-blog-featured__image {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  min-height: 0;
  overflow: hidden;
  background: #fafafa;
}

.bqw-blog-featured__image img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100% !important;
  height: 100% !important;
  max-width: none;
  max-height: none;
  object-fit: contain;
  padding: 28px;
}

.bqw-blog-featured__body {
  position: relative;
  z-index: 2;
  background: #ffffff;
  padding: 32px 32px 32px 0;
}

.bqw-blog-meta {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: #999999;
  font-size: 13px;
  font-weight: 700;
}

.bqw-blog-meta em {
  border-radius: 999px;
  background: #fff0d8;
  color: var(--bqw-orange);
  font-style: normal;
  padding: 3px 8px;
}

.bqw-blog-featured h2,
.bqw-blog-archive-card h2 {
  margin: 10px 0 10px;
  color: #222222;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.25;
}

.bqw-blog-featured h2 a,
.bqw-blog-archive-card h2 a {
  color: inherit;
  text-decoration: none;
}

.bqw-blog-featured p,
.bqw-blog-archive-card p {
  margin: 0 0 18px;
  color: #666666;
  font-size: 14px;
  line-height: 1.65;
}

.bqw-blog-readmore,
.bqw-blog-help a,
.bqw-blog-empty a {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border-radius: 999px;
  background: var(--bqw-red);
  color: #ffffff;
  padding: 0 18px;
  font-weight: 700;
  text-decoration: none;
}

.bqw-blog-readmore:hover,
.bqw-blog-help a:hover,
.bqw-blog-empty a:hover {
  color: #ffffff;
}

.bqw-blog-archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.bqw-blog-archive-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 0;
  border: 1px solid #eeeeee;
  border-radius: 8px;
  background: #ffffff;
  overflow: hidden;
}

.bqw-blog-archive-card__image {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  height: auto;
  overflow: hidden;
  background: #fafafa;
}

.bqw-blog-archive-card__image img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100% !important;
  height: 100% !important;
  max-width: none;
  max-height: none;
  object-fit: contain;
  padding: 18px;
}

.bqw-blog-archive-card__body {
  position: relative;
  z-index: 2;
  background: #ffffff;
  padding: 18px;
}

.bqw-blog-archive-card h2 {
  font-size: 17px;
}

.bqw-blog-sidebar section {
  margin-bottom: 28px;
}

.bqw-blog-sidebar h2 {
  margin: 0 0 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid #eeeeee;
  color: #222222;
  font-family: Dosis, Inter, Arial, sans-serif;
  font-size: 19px;
  font-weight: 700;
  text-transform: uppercase;
}

.bqw-blog-sidebar section > a:not(.bqw-blog-mini) {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  padding: 8px 0;
  color: #777777;
  text-decoration: none;
}

.bqw-blog-sidebar em {
  color: #aaaaaa;
  font-style: normal;
  font-weight: 700;
}

.bqw-blog-mini {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 10px 0;
  color: #333333;
  text-decoration: none;
}

.bqw-blog-mini img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border: 1px solid #eeeeee;
  background: #fafafa;
  padding: 5px;
}

.bqw-blog-mini strong,
.bqw-blog-mini small {
  display: block;
}

.bqw-blog-mini strong {
  font-size: 13px;
  line-height: 1.35;
}

.bqw-blog-mini small {
  margin-top: 3px;
  color: #999999;
  font-size: 12px;
}

.bqw-blog-help,
.bqw-blog-empty {
  border: 1px solid #eeeeee;
  border-radius: 8px;
  background: #ffffff;
  padding: 20px;
}

.bqw-blog-help p,
.bqw-blog-empty p,
.bqw-sidebar-note {
  margin: 0 0 16px;
  color: #666666;
  font-size: 14px;
  line-height: 1.65;
}

.bqw-blog-sidebar .bqw-blog-help a {
  display: inline-flex !important;
  grid-template-columns: none;
  color: #ffffff !important;
  text-decoration: none !important;
}

.bqw-blog-empty {
  display: grid;
  justify-items: center;
  min-height: 320px;
  align-content: center;
  text-align: center;
}

.bqw-blog-empty h2 {
  margin: 0 0 10px;
  font-size: 24px;
}

.bqw-post-cover {
  display: grid;
  place-items: center;
  margin: 0 0 28px;
  border: 1px solid #eeeeee;
  border-radius: 8px;
  background: #fafafa;
  min-height: 420px;
}

.bqw-post-cover img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 420px;
  object-fit: contain;
  padding: 34px;
}

.bqw-post-copy {
  color: #333333;
  font-size: 16px;
  line-height: 1.8;
}

.bqw-post-copy h2,
.bqw-post-copy h3 {
  margin: 28px 0 12px;
  color: #222222;
  font-weight: 700;
}

.bqw-post-copy p,
.bqw-post-copy ol,
.bqw-post-copy ul {
  margin: 0 0 18px;
}

.bqw-post-copy ol,
.bqw-post-copy ul {
  padding-left: 22px;
}

.bqw-footer {
  background: #ffffff;
}

.bqw-footer__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
  padding: 54px 0;
}

.bqw-footer h3 {
  margin: 0 0 18px;
  color: #333333;
  font-family: Dosis, Inter, Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}

.bqw-footer a {
  display: block;
  margin: 0 0 10px;
  color: #555555;
  font-size: 14px;
  text-decoration: none;
}

.bqw-copyright {
  border-top: 1px solid #eeeeee;
  padding: 24px 16px;
  color: #777777;
  text-align: center;
  font-size: 13px;
}

.content-product {
  border-color: var(--bqw-border);
}

.content-product .sale-wrapper,
.onsale {
  border-radius: 2px;
  background: var(--bqw-red);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
}

.content-product .product-title a,
.woocommerce-loop-product__title a {
  color: var(--bqw-text);
  font-weight: 600;
}

.content-product .price,
.bqw-price--sale .amount {
  color: var(--bqw-red);
  font-weight: 700;
}

.star-rating span::before,
.star-rating::before {
  color: #fdd835;
}

.woocommerce-product-gallery.images-wrapper,
.thumbnails-list .swiper-slide a {
  border: 1px solid #e5e5e5;
  border-radius: var(--bqw-radius);
  padding: 5px;
}

.sidebar .widget-title {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
}

@media (max-width: 767px) {
  .bqw-container {
    width: min(100% - 24px, var(--bqw-container));
  }

  .bqw-topbar__inner {
    grid-template-columns: 1fr auto auto;
    gap: 10px;
    min-height: 64px;
  }

  .bqw-logo {
    font-size: 22px;
  }

  .bqw-menu-dot {
    display: none;
  }

  .bqw-search {
    grid-column: 1 / -1;
    grid-row: 2;
    margin-bottom: 12px;
  }

  .bqw-user-actions {
    gap: 8px;
    font-size: 11px;
  }

  .bqw-user-actions > a:first-child {
    display: none;
  }

  .bqw-navrow__inner {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 12px 0;
  }

  .bqw-department-menu {
    display: block;
    width: 100%;
  }

  .bqw-department-toggle {
    min-height: 34px;
  }

  .bqw-department-dropdown {
    position: static;
    width: 100%;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .bqw-department-menu.is-open .bqw-department-dropdown {
    display: block;
  }

  .bqw-department-list {
    min-height: 0;
  }

  .bqw-mega-panel {
    position: static;
    display: block;
    width: 100%;
    min-height: 0;
    padding: 16px;
    border-left: 0;
    border-top: 1px solid #eeeeee;
    border-radius: 0;
    box-shadow: none;
  }

  .bqw-department-item:not(.is-active) > .bqw-mega-panel {
    display: none;
  }

  .bqw-mega-columns {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .bqw-mega-featured {
    margin-top: 18px;
  }

  .bqw-main-menu ul {
    gap: 14px;
  }

  .bqw-contact {
    display: none;
  }

  .bqw-hero-shell {
    grid-template-columns: 1fr;
  }

  .bqw-departments {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .bqw-hero-panel {
    min-height: 330px;
    padding: 30px;
    background-position: right -72px bottom 8px;
    background-size: 270px auto;
  }

  .bqw-hero-title {
    max-width: 230px;
    font-size: 38px;
  }

  .bqw-hero-copy {
    max-width: 210px;
    margin: 15px 0;
    font-size: 15px;
    line-height: 1.55;
  }

  .bqw-trust-row,
  .bqw-brand-tiles,
  .bqw-blog-grid,
  .bqw-footer__grid {
    grid-template-columns: 1fr;
  }

  .bqw-trust-row article {
    justify-content: flex-start;
    padding: 22px 8px;
  }

  .bqw-brand-tiles {
    gap: 12px;
  }

  .bqw-product-grid--five {
    grid-template-columns: repeat(2, 1fr);
  }

  .bqw-section-heading {
    gap: 12px;
  }

  .bqw-product-card__image {
    padding: 24px 12px 8px;
  }

  .bqw-product-card__image img {
    width: 86%;
    height: 135px;
  }

  .bqw-quick-buy {
    display: none;
  }

  .bqw-blog-row {
    padding-bottom: 44px;
  }

  .bqw-faq-section {
    margin-top: 0;
    padding: 48px 0 54px;
  }

  .bqw-faq-heading {
    margin-bottom: 30px;
  }

  .bqw-faq-heading h2 {
    font-size: 28px;
  }

  .bqw-faq-heading p {
    font-size: 14px;
  }

  .bqw-faq-question {
    grid-template-columns: auto minmax(0, 1fr) 24px;
    min-height: 58px;
    padding: 0 16px;
  }

  .bqw-faq-title {
    font-size: 14px;
  }

  .bqw-faq-answer {
    padding: 0 16px 18px 45px;
  }

  .bqw-faq-link {
    font-size: 14px;
  }

  .bqw-blog-grid {
    margin-top: 38px;
  }

  .bqw-blog-card__image {
    height: 188px;
    margin: 12px 12px 0;
    padding: 14px;
  }

  .bqw-blog-card__body {
    padding: 16px 16px 18px;
  }

  .bqw-footer-brands {
    grid-template-columns: repeat(2, 1fr);
  }

  .bqw-brand-band {
    padding: 52px 0 48px;
  }

  .bqw-blog-hero,
  .bqw-post-hero {
    padding: 38px 0 30px;
  }

  .bqw-support-hero {
    padding: 48px 0 56px;
  }

  .bqw-support-hero h1 {
    font-size: 32px;
  }

  .bqw-support-hero p {
    font-size: 14px;
  }

  .bqw-support-search {
    grid-template-columns: 1fr;
    margin-top: 24px;
  }

  .bqw-support-search button {
    width: 100%;
  }

  .bqw-support-topics,
  .bqw-support-article-list,
  .bqw-support-contact__inner {
    grid-template-columns: 1fr;
  }

  .bqw-support-topics {
    margin-top: -24px;
  }

  .bqw-support-topic {
    min-height: 0;
    padding: 20px;
  }

  .bqw-support-popular {
    padding: 48px 0 54px;
  }

  .bqw-support-section-heading h2,
  .bqw-support-contact h2 {
    font-size: 26px;
  }

  .bqw-support-article-list a {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 14px 16px;
  }

  .bqw-support-actions {
    justify-content: flex-start;
  }

  .bqw-blog-hero h1,
  .bqw-post-hero h1 {
    font-size: 30px;
  }

  .bqw-blog-layout,
  .bqw-post-layout,
  .bqw-blog-featured {
    grid-template-columns: 1fr;
  }

  .bqw-blog-featured__body {
    padding: 0 20px 22px;
  }

  .bqw-blog-featured__image {
    min-height: 0;
  }

  .bqw-blog-archive-grid {
    grid-template-columns: 1fr;
  }

  .bqw-post-cover {
    min-height: 260px;
  }

  .bqw-post-cover img {
    max-height: 300px;
    padding: 22px;
  }

  .bqw-shop-hero {
    padding: 32px 0 26px;
  }

  .bqw-shop-layout,
  .bqw-single-layout,
  .bqw-single-main {
    grid-template-columns: 1fr;
  }

  .bqw-product-sidebar {
    display: none;
  }

  .bqw-shop-sidebar {
    border: 1px solid #eeeeee;
    padding: 18px;
  }

  .bqw-shop-sidebar section {
    margin-bottom: 28px;
  }

  .bqw-price-inputs {
    grid-template-columns: 1fr;
  }

  .bqw-shop-banner {
    min-height: 178px;
    padding: 20px;
  }

  .bqw-shop-banner h2 {
    max-width: 260px;
    font-size: 22px;
    line-height: 1.25;
  }

  .bqw-shop-toolbar {
    grid-template-columns: 1fr auto;
  }

  .bqw-show-count {
    display: none;
  }

  .bqw-product-grid--shop,
  .bqw-product-grid--related {
    grid-template-columns: repeat(2, 1fr);
  }

  .bqw-single {
    padding-top: 18px;
  }

  .bqw-single-breadcrumb {
    display: block;
    line-height: 1.6;
  }

  .bqw-single-gallery {
    min-height: 300px;
    padding: 28px;
  }

  .bqw-single-gallery img {
    width: 78%;
  }

  .bqw-single-summary h1 {
    font-size: 26px;
  }

  .bqw-single-cart form.cart {
    flex-wrap: wrap;
  }

  .bqw-product-copy,
  .bqw-review-panel {
    max-width: none;
  }

  .bqw-review-fields {
    grid-template-columns: 1fr;
  }

  .bqw-related {
    margin-top: 64px;
  }

  .bqw-product-grid--related .bqw-product-card__image img {
    height: 135px;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .bqw-topbar__inner {
    grid-template-columns: auto 1fr auto;
  }

  .bqw-menu-dot {
    display: none;
  }

  .bqw-navrow__inner {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 14px 0;
  }

  .bqw-department-menu {
    display: block;
    width: 100%;
  }

  .bqw-department-toggle {
    min-height: 38px;
  }

  .bqw-department-dropdown {
    position: static;
    width: 100%;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .bqw-department-menu.is-open .bqw-department-dropdown {
    display: block;
  }

  .bqw-mega-panel {
    position: static;
    width: 100%;
    min-height: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .bqw-department-item:not(.is-active) > .bqw-mega-panel {
    display: none;
  }

  .bqw-hero-shell {
    grid-template-columns: 1fr;
  }

  .bqw-departments {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }

  .bqw-brand-tiles,
  .bqw-product-grid--five {
    grid-template-columns: repeat(3, 1fr);
  }

  .bqw-support-topics {
    grid-template-columns: repeat(2, 1fr);
  }

  .bqw-support-article-list {
    grid-template-columns: 1fr;
  }

  .bqw-support-contact__inner {
    grid-template-columns: 1fr;
  }

  .bqw-support-actions {
    justify-content: flex-start;
  }

  .bqw-blog-grid,
  .bqw-footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bqw-footer-brands {
    grid-template-columns: repeat(3, 1fr);
  }

  .bqw-blog-layout,
  .bqw-post-layout {
    grid-template-columns: 1fr;
  }

  .bqw-blog-archive-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bqw-blog-featured {
    grid-template-columns: 1fr;
  }

  .bqw-blog-featured__body {
    padding: 0 26px 28px;
  }

  .bqw-shop-layout {
    grid-template-columns: 230px 1fr;
  }

  .bqw-product-grid--shop {
    grid-template-columns: repeat(3, 1fr);
  }

  .bqw-single-layout {
    grid-template-columns: 1fr;
  }

  .bqw-product-sidebar {
    display: none;
  }

  .bqw-single-main {
    grid-template-columns: 1fr;
  }
}

/* Public launch polish. */
html { scroll-behavior: smooth; }
body { line-height: 1.6; text-rendering: optimizeLegibility; -webkit-font-smoothing: antialiased; }
a, button, input, select, summary { transition: color .18s ease, background-color .18s ease, border-color .18s ease, box-shadow .18s ease, transform .18s ease; }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, summary:focus-visible { outline: 3px solid rgb(248 32 63 / 28%); outline-offset: 3px; }
.bqw-site-main { overflow: clip; }
.bqw-topbar { box-shadow: 0 8px 28px rgb(248 32 63 / 12%); }
.bqw-navrow { background: rgb(255 255 255 / 96%); }
.bqw-hero-panel, .bqw-brand-card, .bqw-product-card, .bqw-blog-card, .bqw-support-topic { border: 1px solid #ededed; box-shadow: 0 10px 30px rgb(24 28 36 / 5%); }
.bqw-brand-card:hover, .bqw-product-card:hover, .bqw-blog-card:hover, .bqw-support-topic:hover { transform: translateY(-4px); box-shadow: 0 16px 38px rgb(24 28 36 / 10%); }
.bqw-product-card h3 { min-height: 2.9em; line-height: 1.45; }
.bqw-product-card h3 a:hover, .bqw-footer a:hover { color: var(--bqw-red); }
.bqw-blog-card__body p, .bqw-footer__grid a { color: #5b6068; }
.bqw-footer__grid section { min-width: 0; }
.bqw-footer__grid a { width: fit-content; max-width: 100%; }
.bqw-copyright { border-top: 1px solid #eeeeee; }

@media (min-width: 1200px) {
  .bqw-navrow { position: sticky; top: 0; z-index: 70; backdrop-filter: blur(14px); }
  .bqw-main-menu a { position: relative; }
  .bqw-main-menu a::after { position: absolute; right: 0; bottom: -8px; left: 0; height: 2px; background: var(--bqw-red); content: ''; transform: scaleX(0); transform-origin: center; transition: transform .18s ease; }
  .bqw-main-menu a:hover::after, .bqw-main-menu .current-menu-item > a::after { transform: scaleX(1); }
}

@media (max-width: 767px) {
  .bqw-container { width: min(100% - 28px, var(--bqw-container)); }
  .bqw-topbar__inner { grid-template-columns: minmax(0, 1fr) auto; gap: 10px 12px; padding-top: 10px; }
  .bqw-logo { overflow: hidden; font-size: 20px; text-overflow: ellipsis; }
  .bqw-cart-link { min-height: 38px; padding-inline: 13px; }
  .bqw-search { grid-template-columns: 92px minmax(0, 1fr) 46px; margin-bottom: 10px; }
  .bqw-search select { padding: 0 22px 0 14px; font-size: 12px; background-position: calc(100% - 14px) 19px, calc(100% - 9px) 19px; }
  .bqw-search input { padding-inline: 12px; font-size: 16px; }
  .bqw-navrow__inner { padding: 8px 0 10px; }
  .bqw-department-toggle { min-height: 44px; padding: 0 12px; border: 1px solid #e8e8e8; border-radius: 8px; background: #fafafa; }
  .bqw-main-menu { overflow-x: auto; padding-bottom: 3px; scrollbar-width: none; }
  .bqw-main-menu::-webkit-scrollbar { display: none; }
  .bqw-main-menu ul { width: max-content; min-width: 100%; gap: 6px; }
  .bqw-main-menu a { display: block; min-height: 38px; padding: 9px 10px; border-radius: 7px; background: #f7f7f7; white-space: nowrap; }
  .bqw-hero-shell { gap: 14px; }
  .bqw-departments { gap: 1px; overflow: hidden; border: 1px solid #eeeeee; border-radius: 10px; background: #eeeeee; }
  .bqw-departments a { min-height: 48px; background: #ffffff; }
  .bqw-hero-panel { min-height: 350px; padding: 28px 22px; border-radius: 12px; }
  .bqw-hero-title { max-width: 240px; font-size: clamp(32px, 10vw, 40px); line-height: 1.05; }
  .bqw-trust-row { gap: 0; padding-block: 16px; }
  .bqw-trust-row article { min-height: 86px; padding: 16px 8px; border-bottom: 1px solid #eeeeee; }
  .bqw-trust-row article:last-child { border-bottom: 0; }
  .bqw-brand-card { min-height: 126px; padding: 18px; }
  .bqw-product-section { padding-block: 46px; }
  .bqw-section-heading h2 { font-size: clamp(24px, 7vw, 30px); text-align: center; }
  .bqw-tabs { justify-content: flex-start; overflow-x: auto; padding: 4px 2px 8px; scrollbar-width: none; }
  .bqw-tabs button { min-height: 38px; white-space: nowrap; }
  .bqw-product-grid--five, .bqw-product-grid--shop, .bqw-product-grid--related { gap: 10px; }
  .bqw-product-card__body { padding: 12px 12px 16px; }
  .bqw-product-card h3 { min-height: 3.9em; font-size: 13px; }
  .bqw-product-card p { font-size: 11px; }
  .bqw-blog-grid { gap: 16px; }
  .bqw-blog-card__image { height: 210px; }
  .bqw-footer__grid { gap: 0; padding-block: 34px; }
  .bqw-footer__grid section { padding: 20px 0; border-bottom: 1px solid #eeeeee; }
  .bqw-footer__grid section:last-child { border-bottom: 0; }
  .bqw-footer__grid h3 { margin-bottom: 12px; font-size: 15px; }
  .bqw-footer__grid a { min-height: 34px; font-size: 13px; line-height: 1.5; }
  .bqw-copyright { padding: 20px 14px; font-size: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
