:root {
  --br-navy: #081421;
  --br-ink: #111827;
  --br-muted: #5f6f84;
  --br-line: #dbe4ef;
  --br-soft-line: #edf2f7;
  --br-surface: #ffffff;
  --br-surface-soft: #f6f9fc;
  --br-surface-blue: #eef5ff;
  --br-blue: #1769e0;
  --br-blue-dark: #0f4fb3;
  --br-green: #157b4f;
  --br-green-soft: #e9f6ef;
  --br-amber: #b7791f;
  --br-amber-soft: #fff8e8;
  --br-danger: #b42318;
  --br-shadow: 0 18px 46px rgba(8, 20, 33, 0.09);
  --br-shadow-soft: 0 10px 28px rgba(8, 20, 33, 0.07);
  --br-radius: 8px;
  --br-wrap: min(1180px, calc(100vw - 40px));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--br-ink);
  background: var(--br-surface);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.br-gate-active {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--br-blue);
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

input,
select,
textarea {
  width: 100%;
  color: var(--br-ink);
  background: #fff;
  border: 1px solid var(--br-line);
  border-radius: 6px;
  min-height: 46px;
  padding: 11px 13px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus,
button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: none;
  border-color: var(--br-blue);
  box-shadow: 0 0 0 3px rgba(23, 105, 224, 0.16);
}

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

.br-skip-link:focus {
  top: 12px;
  left: 12px;
  z-index: 10000;
  width: auto;
  height: auto;
  padding: 10px 14px;
  clip: auto;
  color: #fff;
  background: var(--br-blue);
  border-radius: 6px;
}

.br-wrap {
  width: var(--br-wrap);
  margin-inline: auto;
}

.br-narrow {
  max-width: 820px;
}

.br-main {
  min-height: 60vh;
}

.br-section {
  padding: 84px 0;
}

.br-section__heading {
  max-width: 760px;
  margin-bottom: 30px;
}

.br-section__heading h2,
.br-page-hero h1,
.br-hero h1,
.br-product-summary h1 {
  margin: 0;
  color: var(--br-navy);
  line-height: 1.04;
  letter-spacing: 0;
}

.br-section__heading h2 {
  font-size: clamp(2rem, 3.4vw, 3.5rem);
}

.br-section__heading p,
.br-page-hero p,
.br-hero__lead {
  color: var(--br-muted);
}

.br-eyebrow {
  margin: 0 0 12px;
  color: var(--br-blue);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.br-button,
.button,
.woocommerce-button,
.single_add_to_cart_button,
.checkout-button,
#place_order {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.br-button:hover,
.button:hover,
.woocommerce-button:hover,
.single_add_to_cart_button:hover,
.checkout-button:hover,
#place_order:hover {
  transform: translateY(-1px);
}

.br-button-primary,
.single_add_to_cart_button,
.checkout-button,
#place_order {
  color: #fff;
  background: var(--br-blue);
  border-color: var(--br-blue);
  box-shadow: 0 10px 24px rgba(23, 105, 224, 0.22);
}

.br-button-primary:hover,
.single_add_to_cart_button:hover,
.checkout-button:hover,
#place_order:hover {
  color: #fff;
  background: var(--br-blue-dark);
  border-color: var(--br-blue-dark);
}

.br-button-secondary,
.button,
.woocommerce-button {
  color: var(--br-navy);
  background: #fff;
  border-color: var(--br-line);
}

.br-button-secondary:hover,
.button:hover,
.woocommerce-button:hover {
  color: var(--br-blue);
  border-color: rgba(23, 105, 224, 0.35);
  box-shadow: var(--br-shadow-soft);
}

.br-link-strong {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  color: var(--br-blue);
  font-weight: 800;
}

.br-link-strong::after {
  content: "->";
  margin-left: 8px;
}

.br-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(219, 228, 239, 0.72);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease, border-color 180ms ease;
}

body.admin-bar .br-header {
  top: 32px;
}

.br-header.is-scrolled {
  border-color: transparent;
  box-shadow: 0 10px 30px rgba(8, 20, 33, 0.09);
}

.br-topbar {
  color: #2f230b;
  background: var(--br-amber-soft);
  border-bottom: 1px solid #f0d59d;
  font-size: 0.82rem;
  font-weight: 700;
}

.br-topbar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 34px;
  text-align: center;
}

.br-topbar a {
  color: #7a4b00;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.br-nav-shell {
  background: rgba(255, 255, 255, 0.94);
}

.br-nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 74px;
}

.br-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--br-navy);
  font-weight: 900;
}

.br-logo:hover {
  color: var(--br-navy);
}

.br-logo .custom-logo-link,
.br-logo .custom-logo-link:hover,
.br-logo .custom-logo-link:focus {
  display: inline-block;
  box-shadow: none;
  outline: none;
}

.br-header .custom-logo,
.br-header img.custom-logo,
.br-header .custom-logo-link img,
.br-header .br-logo img {
  display: block !important;
  width: auto !important;
  height: 38px !important;
  max-height: 38px !important;
  max-width: 44px !important;
}

.br-header.is-scrolled .custom-logo,
.br-header.is-scrolled img.custom-logo,
.br-header.is-scrolled .custom-logo-link img,
.br-header.is-scrolled .br-logo img {
  height: 32px !important;
  max-height: 32px !important;
  max-width: 38px !important;
}

.br-logo--has-image {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.br-logo--has-image .br-logo__text {
  font-size: 1.15rem;
  line-height: 1;
  color: var(--br-navy);
  font-weight: 900;
  text-decoration: none;
}

.br-logo--has-image .br-logo__text span,
.br-logo-footer .br-logo__text span {
  color: #0b27fe;
}

.br-logo-footer {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.br-logo-footer__icon {
  display: block;
  width: auto;
  height: 38px;
  max-height: 38px;
  max-width: 44px;
  background: #fff;
  padding: 4px;
  border-radius: 6px;
  box-sizing: content-box;
}

/* Shop price range filter */
.br-price-filter {
  margin: 18px auto 0;
  padding: 18px 22px;
  background: #fff;
  border: 1px solid var(--br-line);
  border-radius: var(--br-radius);
  box-shadow: var(--br-shadow-soft);
}

.br-price-filter__form {
  display: grid;
  gap: 14px;
}

.br-price-filter__label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
  color: var(--br-muted);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.br-price-filter__display {
  color: var(--br-navy);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: none;
}

.br-price-filter__slider {
  position: relative;
  height: 32px;
  padding: 0;
}

.br-price-filter__track {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 4px;
  background: var(--br-surface-blue, #eef3fb);
  border-radius: 999px;
}

.br-price-filter__range {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 4px;
  background: var(--br-blue);
  border-radius: 999px;
  pointer-events: none;
  transition: left 90ms ease-out, right 90ms ease-out;
}

.br-price-filter__slider input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 32px;
  background: transparent;
  pointer-events: none;
  margin: 0;
  padding: 0;
}

.br-price-filter__slider input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  pointer-events: auto;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--br-blue);
  border: 3px solid #fff;
  cursor: grab;
  box-shadow: 0 1px 3px rgba(15, 30, 70, 0.18), 0 0 0 1px rgba(23, 105, 224, 0.32);
  transition: transform 120ms ease;
}

.br-price-filter__slider input[type="range"]::-webkit-slider-thumb:active {
  cursor: grabbing;
  transform: scale(1.12);
}

.br-price-filter__slider input[type="range"]::-moz-range-thumb {
  pointer-events: auto;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--br-blue);
  border: 3px solid #fff;
  cursor: grab;
  box-shadow: 0 1px 3px rgba(15, 30, 70, 0.18), 0 0 0 1px rgba(23, 105, 224, 0.32);
}

.br-price-filter__slider input[type="range"]::-moz-range-track {
  background: transparent;
}

.br-price-filter__slider input[type="range"][data-price-handle="max"] {
  z-index: 2;
}

.br-price-filter__actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.br-price-filter__reset {
  color: var(--br-muted);
  font-size: 0.85rem;
  text-decoration: underline;
}

.br-price-filter__reset:hover {
  color: var(--br-blue);
}

@media (max-width: 640px) {
  .br-price-filter {
    padding: 14px 16px;
  }
}

.br-logo__mark {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: #fff;
  background: var(--br-navy);
  border-radius: 6px;
  font-size: 0.9rem;
  letter-spacing: 0;
}

.br-logo__text {
  font-size: 1.15rem;
  line-height: 1;
}

.br-logo__text span {
  color: var(--br-blue);
}

.br-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.br-menu a {
  color: var(--br-ink);
  font-size: 0.94rem;
  font-weight: 760;
}

.br-menu a:hover {
  color: var(--br-blue);
}

.br-cart-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 40px;
  padding: 9px 12px;
  color: var(--br-navy);
  border: 1px solid var(--br-line);
  border-radius: 6px;
  font-weight: 850;
}

.br-cart-count {
  display: inline-grid;
  place-items: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  color: #fff;
  background: var(--br-blue);
  border-radius: 999px;
  font-size: 0.75rem;
}

.br-menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  background: #fff;
  border: 1px solid var(--br-line);
  border-radius: 6px;
}

.br-menu-toggle span:not(.screen-reader-text) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--br-navy);
  border-radius: 2px;
}

.br-hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 30px;
  background:
    linear-gradient(180deg, #f7fbff 0%, #ffffff 62%, #f4f8fc 100%);
}

.br-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 1.05fr);
  align-items: center;
  gap: 52px;
}

.br-hero h1 {
  max-width: 760px;
  font-size: clamp(3rem, 5.3vw, 4.9rem);
  overflow-wrap: anywhere;
}

.br-hero__lead {
  max-width: 650px;
  margin: 24px 0 0;
  font-size: clamp(1.05rem, 1.45vw, 1.25rem);
}

.br-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.br-hero__visual {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.br-hero__visual img {
  width: 100%;
}

.br-hero__visual-label {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--br-muted);
}

.br-hero-products {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.br-hero-product {
  display: grid;
  grid-template-columns: 76px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 12px 16px 12px 12px;
  background: #fff;
  border: 1px solid var(--br-line);
  border-radius: var(--br-radius);
  box-shadow: var(--br-shadow-soft);
  color: var(--br-navy);
  text-decoration: none;
  transition: transform 150ms ease, box-shadow 150ms ease, border-color 150ms ease;
}

.br-hero-product:hover {
  transform: translateY(-2px);
  box-shadow: var(--br-shadow);
  border-color: rgba(23, 105, 224, 0.32);
  color: var(--br-navy);
}

.br-hero-product__media {
  width: 76px;
  height: 76px;
  border-radius: 6px;
  overflow: hidden;
  background: var(--br-surface-blue, #eef3fb);
  display: grid;
  place-items: center;
}

.br-hero-product__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.br-hero-product__info {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.br-hero-product__info h3 {
  margin: 0;
  font-size: 1rem;
  color: var(--br-navy);
  font-weight: 900;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.br-hero-product__price {
  margin: 0;
  color: var(--br-muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.br-hero-product__price .woocommerce-Price-amount {
  color: var(--br-navy);
}

.br-hero-product__arrow {
  font-size: 1.2rem;
  color: var(--br-blue);
  font-weight: 900;
  transition: transform 150ms ease;
}

.br-hero-product:hover .br-hero-product__arrow {
  transform: translateX(4px);
}

.br-hero-products__all {
  margin-top: 4px;
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--br-blue);
  text-decoration: none;
  align-self: flex-end;
}

.br-hero-products__all:hover {
  color: var(--br-navy);
}

@media (max-width: 640px) {
  .br-hero-product {
    grid-template-columns: 60px 1fr auto;
    padding: 10px 12px 10px 10px;
  }
  .br-hero-product__media {
    width: 60px;
    height: 60px;
  }
  .br-hero-product__info h3 {
    font-size: 0.94rem;
  }
}

.br-trust-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin-top: 34px;
  border: 1px solid var(--br-line);
  border-radius: var(--br-radius);
  background: var(--br-line);
  box-shadow: var(--br-shadow-soft);
}

.br-trust-strip span {
  display: grid;
  place-items: center;
  min-height: 62px;
  padding: 14px 12px;
  color: var(--br-navy);
  background: #fff;
  font-weight: 850;
  text-align: center;
}

.br-split-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  max-width: none;
}

.br-products,
ul.products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.br-product-card {
  overflow: hidden;
  min-width: 0;
  background: #fff;
  border: 1px solid var(--br-line);
  border-radius: var(--br-radius);
  box-shadow: 0 1px 0 rgba(8, 20, 33, 0.02);
  transition: transform 170ms ease, box-shadow 170ms ease, border-color 170ms ease;
}

.br-product-card:hover {
  transform: translateY(-3px);
  border-color: rgba(23, 105, 224, 0.26);
  box-shadow: var(--br-shadow-soft);
}

.br-product-card__media {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1.05;
  overflow: hidden;
  background: var(--br-surface-blue);
}

.br-product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.br-product-card:hover .br-product-card__media img {
  transform: scale(1.025);
}

.br-product-card__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 5px 8px;
  color: #6b4400;
  background: var(--br-amber-soft);
  border: 1px solid #f0d59d;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
}

.br-product-card__body {
  display: grid;
  gap: 10px;
  padding: 15px;
}

.br-product-card__meta,
.br-product-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--br-muted);
  font-size: 0.78rem;
}

.br-product-card__meta span,
.br-product-facts span {
  padding: 4px 7px;
  background: var(--br-surface-soft);
  border: 1px solid var(--br-soft-line);
  border-radius: 999px;
}

.br-product-card h2 {
  margin: 0;
  color: var(--br-navy);
  font-size: 1rem;
  line-height: 1.25;
}

.br-product-card h2 a:hover {
  color: var(--br-blue);
}

.br-product-card__price {
  color: var(--br-navy);
  font-size: 1.08rem;
  font-weight: 900;
}

.br-product-card__price del {
  color: var(--br-muted);
  font-weight: 600;
}

.br-product-card__price ins {
  text-decoration: none;
}

.br-product-card__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  min-height: 26px;
}

.br-product-card__badges span {
  padding: 4px 7px;
  color: var(--br-green);
  background: var(--br-green-soft);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 850;
}

.br-product-card__button {
  width: 100%;
  min-height: 42px;
}

.br-empty-state,
.woocommerce-info,
.woocommerce-message,
.woocommerce-error {
  padding: 18px;
  margin: 0 0 20px;
  background: #fff;
  border: 1px solid var(--br-line);
  border-left: 4px solid var(--br-blue);
  border-radius: var(--br-radius);
  box-shadow: var(--br-shadow-soft);
}

.woocommerce-error {
  border-left-color: var(--br-danger);
  list-style-position: inside;
}

.br-workflow,
.br-band,
.br-shop-loop {
  background: var(--br-surface-soft);
}

.br-workflow__grid,
.br-why__grid,
.br-doc-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.br-why__grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.br-card,
.br-proof-card,
.br-testing-panel,
.br-support-form {
  min-width: 0;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--br-line);
  border-radius: var(--br-radius);
  box-shadow: var(--br-shadow-soft);
}

.br-card > span,
.br-support-card > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 30px;
  padding: 0 9px;
  color: var(--br-blue);
  background: var(--br-surface-blue);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 900;
}

.br-card h3,
.br-proof-card h3,
.br-proof-card h2,
.br-testing-panel h2,
.br-support-card h2 {
  margin: 14px 0 8px;
  color: var(--br-navy);
  font-size: 1.14rem;
  line-height: 1.22;
}

.br-card p,
.br-proof-card p,
.br-testing-panel p,
.br-support-card p {
  margin: 0;
  color: var(--br-muted);
  font-size: 0.94rem;
}

.br-proof-card {
  box-shadow: none;
}

.br-faq-preview {
  background: #fff;
}

.br-faq-preview__grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: 46px;
  align-items: start;
}

.br-accordion-list,
.br-faq-list {
  display: grid;
  gap: 10px;
}

details {
  background: #fff;
  border: 1px solid var(--br-line);
  border-radius: var(--br-radius);
}

summary {
  position: relative;
  padding: 18px 48px 18px 18px;
  color: var(--br-navy);
  cursor: pointer;
  font-weight: 850;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 18px;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  color: var(--br-blue);
  background: var(--br-surface-blue);
  border-radius: 50%;
  transform: translateY(-50%);
}

details[open] summary::after {
  content: "-";
}

details p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--br-muted);
}

.br-page-hero,
.br-catalog-hero {
  padding: 72px 0 54px;
  background: linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
  border-bottom: 1px solid var(--br-soft-line);
}

.br-page-hero h1 {
  font-size: clamp(2.7rem, 5.5vw, 5.6rem);
}

.br-page-hero__grid,
.br-catalog-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 40px;
  align-items: center;
}

.br-testing-panel ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.br-testing-panel li {
  padding: 12px 12px;
  color: var(--br-navy);
  background: var(--br-surface-soft);
  border: 1px solid var(--br-soft-line);
  border-radius: 6px;
  font-weight: 760;
}

.br-process {
  display: grid;
  grid-template-columns: minmax(250px, 0.75fr) minmax(0, 1.25fr);
  gap: 42px;
}

.br-steps {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.br-steps li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--br-line);
  border-radius: var(--br-radius);
}

.br-steps span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: #fff;
  background: var(--br-blue);
  border-radius: 6px;
  font-weight: 900;
}

.br-steps h3 {
  margin: 0 0 4px;
  color: var(--br-navy);
}

.br-steps p {
  margin: 0;
  color: var(--br-muted);
}

.br-ruo-notice {
  padding: 14px 16px;
  color: #4c3204;
  background: var(--br-amber-soft);
  border: 1px solid #f0d59d;
  border-left: 4px solid var(--br-amber);
  border-radius: var(--br-radius);
}

.br-catalog-search {
  padding: 18px;
  background: #fff;
  border: 1px solid var(--br-line);
  border-radius: var(--br-radius);
  box-shadow: var(--br-shadow-soft);
}

.br-catalog-search label,
.br-support-form label span {
  display: block;
  margin-bottom: 8px;
  color: var(--br-navy);
  font-size: 0.82rem;
  font-weight: 850;
}

.br-catalog-search div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.br-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.br-filter-row a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 12px;
  color: var(--br-navy);
  background: #fff;
  border: 1px solid var(--br-line);
  border-radius: 999px;
  font-weight: 780;
}

.br-filter-row a:hover,
.br-filter-row a.is-active {
  color: #fff;
  background: var(--br-blue);
  border-color: var(--br-blue);
}

.br-shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 18px;
}

.woocommerce-ordering select {
  width: auto;
  min-width: 220px;
  background-color: #fff;
}

.woocommerce-pagination {
  margin-top: 32px;
}

.woocommerce-pagination ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  padding: 0;
  margin: 0;
  list-style: none;
}

.woocommerce-pagination a,
.woocommerce-pagination span {
  display: grid;
  place-items: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  background: #fff;
  border: 1px solid var(--br-line);
  border-radius: 6px;
  font-weight: 850;
}

.woocommerce-pagination .current,
.woocommerce-pagination a:hover {
  color: #fff;
  background: var(--br-blue);
  border-color: var(--br-blue);
}

.br-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.br-badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 9px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
}

.br-badge-amber {
  color: #704400;
  background: var(--br-amber-soft);
  border: 1px solid #f0d59d;
}

.br-badge-blue {
  color: var(--br-blue);
  background: var(--br-surface-blue);
  border: 1px solid rgba(23, 105, 224, 0.18);
}

.br-badge-green {
  color: var(--br-green);
  background: var(--br-green-soft);
  border: 1px solid rgba(21, 123, 79, 0.18);
}

.br-product-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
  gap: 28px;
  align-items: start;
  padding: 54px 0 24px;
}

.br-product-gallery-panel,
.br-product-summary,
.br-doc-module,
.br-product-details__main,
.br-product-details__side {
  background: #fff;
  border: 1px solid var(--br-line);
  border-radius: var(--br-radius);
  box-shadow: var(--br-shadow-soft);
}

.br-product-gallery-panel {
  padding: 18px;
}

.br-product-gallery-panel .woocommerce-product-gallery,
.br-product-gallery-panel .woocommerce-product-gallery__wrapper {
  margin: 0;
}

.br-product-gallery-panel img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  background: var(--br-surface-soft);
}

.br-product-summary {
  position: sticky;
  top: 132px;
  display: grid;
  gap: 18px;
  padding: 24px;
}

body.admin-bar .br-product-summary {
  top: 164px;
}

.br-product-summary h1 {
  font-size: clamp(2.4rem, 4vw, 4.4rem);
}

.br-product-summary__price {
  color: var(--br-navy);
  font-size: 1.7rem;
  font-weight: 950;
}

.br-product-summary__price p {
  margin: 0;
}

.br-product-summary__text p {
  margin: 0;
  color: var(--br-muted);
}

.br-buy-box {
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.br-buy-box form.cart {
  display: grid;
  gap: 12px;
  margin: 0;
}

.br-buy-box .quantity {
  display: inline-flex;
  max-width: 128px;
}

.br-buy-box input.qty {
  text-align: center;
}

.br-buy-box .single_add_to_cart_button {
  width: 100%;
}

.br-buy-box .variations {
  width: 100%;
  border-collapse: collapse;
}

.br-buy-box .variations th,
.br-buy-box .variations td {
  display: block;
  padding: 0 0 10px;
  text-align: left;
}

.br-doc-module {
  display: grid;
  gap: 14px;
  padding: 18px 0 0;
  background: transparent;
  border: 0;
  border-top: 1px solid var(--br-soft-line);
  border-radius: 0;
  box-shadow: none;
}

.br-doc-module h2 {
  margin: 0;
  color: var(--br-navy);
  font-size: 1.2rem;
}

.br-doc-module p {
  margin: 0;
  color: var(--br-muted);
}

.br-doc-lot strong {
  color: var(--br-navy);
}

.br-doc-links {
  display: grid;
  gap: 8px;
}

.br-doc-link {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px;
  color: var(--br-blue);
  background: #fff;
  border: 1px solid rgba(23, 105, 224, 0.18);
  border-radius: 6px;
  font-weight: 850;
}

.br-product-ruo {
  padding: 10px 0 24px;
}

.br-product-details {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: 22px;
  padding: 32px 0 48px;
}

.br-product-details__main,
.br-product-details__side {
  padding: 24px;
}

.br-product-description {
  color: var(--br-muted);
}

.br-product-description > *:first-child {
  margin-top: 0;
}

.br-product-details__side h2 {
  margin: 0 0 16px;
  color: var(--br-navy);
}

.woocommerce-product-attributes {
  width: 100%;
  border-collapse: collapse;
}

.woocommerce-product-attributes th,
.woocommerce-product-attributes td {
  padding: 12px 0;
  border-bottom: 1px solid var(--br-soft-line);
  text-align: left;
  vertical-align: top;
}

.woocommerce-product-attributes th {
  width: 42%;
  color: var(--br-muted);
  font-weight: 800;
}

.woocommerce-product-attributes p {
  margin: 0;
}

.br-related-products {
  padding: 22px 0 82px;
}

.br-related-products h2 {
  margin: 0 0 20px;
  color: var(--br-navy);
}

.br-policy {
  max-width: 880px;
  color: var(--br-muted);
}

.br-policy h2 {
  margin: 34px 0 8px;
  color: var(--br-navy);
  font-size: 1.35rem;
}

.br-policy p {
  margin: 0;
}

.br-support-options {
  padding-bottom: 36px;
}

.br-support-card {
  display: block;
  color: inherit;
}

.br-support-card.is-active {
  border-color: rgba(23, 105, 224, 0.42);
  box-shadow: 0 0 0 3px rgba(23, 105, 224, 0.12);
}

.br-support-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
  gap: 36px;
  align-items: start;
}

.br-email-fallback a {
  color: var(--br-blue);
  font-weight: 850;
}

.br-support-form {
  display: grid;
  gap: 16px;
}

.br-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.br-form-notice {
  padding: 12px 14px;
  border-radius: 6px;
  font-weight: 760;
}

.br-form-notice-success {
  color: var(--br-green);
  background: var(--br-green-soft);
  border: 1px solid rgba(21, 123, 79, 0.2);
}

.br-form-notice-error {
  color: var(--br-danger);
  background: #fff1f0;
  border: 1px solid rgba(180, 35, 24, 0.22);
}

.br-content {
  color: var(--br-muted);
}

.br-content h1,
.br-content h2,
.br-content h3,
.br-post-card h2 {
  color: var(--br-navy);
}

.br-post-card {
  padding: 22px 0;
  border-bottom: 1px solid var(--br-soft-line);
}

.woocommerce-cart .br-page .br-content,
.woocommerce-checkout .br-page .br-content {
  max-width: 1180px;
}

.woocommerce table.shop_table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid var(--br-line);
  border-radius: var(--br-radius);
  overflow: hidden;
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
  padding: 15px;
  border-bottom: 1px solid var(--br-soft-line);
  text-align: left;
  vertical-align: middle;
}

.woocommerce table.shop_table th {
  color: var(--br-navy);
  background: var(--br-surface-soft);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.woocommerce table.shop_table img {
  width: 76px;
  height: 76px;
  object-fit: cover;
  border-radius: 6px;
  background: var(--br-surface-soft);
}

.woocommerce .cart-collaterals,
.woocommerce-checkout .col2-set,
.woocommerce-checkout-review-order {
  display: grid;
  gap: 18px;
}

.woocommerce .cart_totals,
.woocommerce-checkout #customer_details,
.woocommerce-checkout-review-order {
  padding: 22px;
  background: #fff;
  border: 1px solid var(--br-line);
  border-radius: var(--br-radius);
  box-shadow: var(--br-shadow-soft);
}

.woocommerce .cart_totals h2,
.woocommerce-checkout h3 {
  margin-top: 0;
  color: var(--br-navy);
}

.woocommerce .actions {
  background: #fff;
}

.woocommerce .coupon {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.woocommerce .coupon input {
  max-width: 260px;
}

.woocommerce-checkout .form-row {
  margin: 0 0 14px;
}

.woocommerce-checkout label {
  color: var(--br-navy);
  font-weight: 780;
}

.br-checkout-confirmation {
  padding: 14px;
  margin: 16px 0;
  background: var(--br-amber-soft);
  border: 1px solid #f0d59d;
  border-radius: var(--br-radius);
}

.br-checkout-confirmation label.checkbox {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.br-checkout-confirmation input[type="checkbox"],
.br-check-row input[type="checkbox"] {
  width: 18px;
  min-width: 18px;
  height: 18px;
  min-height: 18px;
  margin-top: 3px;
  accent-color: var(--br-blue);
}

.br-footer {
  color: #d9e4f2;
  background: var(--br-navy);
}

.br-footer__cta {
  position: relative;
  top: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px;
  color: var(--br-ink);
  background: #fff;
  border: 1px solid var(--br-line);
  border-radius: var(--br-radius);
  box-shadow: var(--br-shadow);
}

.br-footer__cta h2,
.br-footer__cta p {
  margin: 0;
}

.br-footer__cta h2 {
  color: var(--br-navy);
  font-size: clamp(1.6rem, 2.8vw, 2.6rem);
}

.br-footer__cta p:not(.br-eyebrow) {
  max-width: 720px;
  margin-top: 8px;
  color: var(--br-muted);
}

.br-footer__main {
  padding: 108px 0 28px;
}

.br-footer__grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.4fr) repeat(3, minmax(140px, 0.7fr));
  gap: 38px;
}

.br-footer__brand p {
  color: #aebdd0;
}

.br-logo-footer {
  margin: 0 0 16px;
}

.br-logo-footer .br-logo__mark {
  color: var(--br-navy);
  background: #fff;
}

.br-logo-footer .br-logo__text {
  color: #fff;
}

.br-footer h2 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.br-footer ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.br-footer a {
  color: #d9e4f2;
}

.br-footer a:hover {
  color: #fff;
}

.br-footer .br-ruo-notice {
  margin-top: 18px;
  color: #fff3cd;
  background: rgba(183, 121, 31, 0.14);
  border-color: rgba(240, 213, 157, 0.32);
}

.br-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding-top: 28px;
  margin-top: 32px;
  border-top: 1px solid rgba(217, 228, 242, 0.16);
  color: #9fb0c4;
  font-size: 0.86rem;
}

.br-age-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: 24px;
  background: #f6f9fc;
}

.br-age-gate[hidden] {
  display: none;
}

.br-age-gate__visual {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.br-age-gate__visual span {
  position: absolute;
  width: 132px;
  height: 196px;
  background: url("../img/product-fallback.svg") center / cover no-repeat;
  opacity: 0.28;
  filter: blur(0.2px);
}

.br-age-gate__visual span:nth-child(1) {
  top: 8%;
  left: 9%;
  transform: rotate(-14deg);
}

.br-age-gate__visual span:nth-child(2) {
  top: 15%;
  right: 12%;
  transform: rotate(18deg) scale(0.82);
}

.br-age-gate__visual span:nth-child(3) {
  bottom: 8%;
  left: 18%;
  transform: rotate(10deg) scale(1.06);
}

.br-age-gate__visual span:nth-child(4) {
  right: 16%;
  bottom: 12%;
  transform: rotate(-8deg) scale(0.78);
}

.br-age-gate__panel {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  padding: 30px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--br-line);
  border-radius: var(--br-radius);
  box-shadow: var(--br-shadow);
}

.br-brand-lockup {
  margin: 0 0 20px;
  color: var(--br-navy);
  font-size: 1.45rem;
  font-weight: 950;
  line-height: 1;
}

.br-brand-lockup span {
  color: var(--br-blue);
}

.br-age-gate h2 {
  margin: 0;
  color: var(--br-navy);
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.08;
}

.br-age-gate p {
  color: var(--br-muted);
}

.br-check-row {
  display: flex;
  gap: 12px;
  padding: 14px;
  margin-top: 12px;
  color: var(--br-navy);
  background: #fff;
  border: 1px solid var(--br-line);
  border-radius: 6px;
  font-weight: 760;
}

.br-age-gate .br-button {
  width: 100%;
  margin-top: 18px;
}

.br-age-gate .br-button:disabled {
  cursor: not-allowed;
  opacity: 0.5;
  transform: none;
  box-shadow: none;
}

.br-age-gate__fine {
  margin: 16px 0 0;
  font-size: 0.84rem;
}

.br-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 420ms ease, transform 420ms ease;
}

.br-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  :root {
    --br-wrap: min(100vw - 28px, 760px);
  }

  body.admin-bar .br-header {
    top: 46px;
  }

  .br-nav {
    grid-template-columns: auto auto auto;
    justify-content: space-between;
    gap: 12px;
    min-height: 64px;
  }

  .br-menu-toggle {
    display: inline-block;
    order: -1;
  }

  .br-primary-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 14px;
    right: 14px;
    display: none;
    padding: 12px;
    background: #fff;
    border: 1px solid var(--br-line);
    border-radius: var(--br-radius);
    box-shadow: var(--br-shadow);
  }

  .br-primary-nav.is-open {
    display: block;
  }

  .br-menu {
    display: grid;
    justify-content: stretch;
    gap: 2px;
  }

  .br-menu a {
    display: block;
    padding: 12px;
    border-radius: 6px;
  }

  .br-menu a:hover {
    background: var(--br-surface-blue);
  }

  .br-logo__text {
    font-size: 1rem;
  }

  .br-hero {
    padding-top: 42px;
  }

  .br-hero__grid,
  .br-page-hero__grid,
  .br-catalog-hero__grid,
  .br-product-hero,
  .br-product-details,
  .br-process,
  .br-support-layout,
  .br-faq-preview__grid {
    grid-template-columns: 1fr;
  }

  .br-hero__visual {
    order: -1;
  }

  .br-hero h1 {
    font-size: clamp(2.8rem, 11vw, 4rem);
  }

  .br-trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .br-products,
  ul.products,
  .br-why__grid,
  .br-doc-grid,
  .br-workflow__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .br-product-summary {
    position: static;
  }

  .br-footer__cta,
  .br-footer__bottom {
    display: grid;
  }

  .br-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .br-footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  :root {
    --br-wrap: min(100vw - 24px, 560px);
  }

  .br-topbar__inner {
    display: grid;
    gap: 2px;
    padding: 7px 0;
  }

  .br-cart-link span[aria-hidden="true"] {
    display: none;
  }

  .br-logo__mark {
    width: 34px;
    height: 34px;
  }

  .br-section {
    padding: 58px 0;
  }

  .br-page-hero,
  .br-catalog-hero {
    padding: 46px 0 38px;
  }

  .br-page-hero h1 {
    font-size: clamp(2.4rem, 12vw, 3.8rem);
  }

  .br-hero__actions,
  .br-catalog-search div,
  .br-form-grid,
  .br-split-heading,
  .woocommerce .coupon {
    display: grid;
    grid-template-columns: 1fr;
  }

  .br-split-heading {
    align-items: start;
  }

  .br-products,
  ul.products,
  .br-why__grid,
  .br-doc-grid,
  .br-workflow__grid,
  .br-footer__grid {
    grid-template-columns: 1fr;
  }

  .br-trust-strip {
    grid-template-columns: 1fr;
  }

  .br-product-card__media {
    aspect-ratio: 1 / 0.86;
  }

  .br-product-summary,
  .br-product-details__main,
  .br-product-details__side,
  .br-card,
  .br-proof-card,
  .br-testing-panel,
  .br-support-form {
    padding: 18px;
  }

  .br-product-summary h1 {
    font-size: clamp(2.2rem, 12vw, 3.4rem);
  }

  .br-catalog-search .br-button,
  .br-button,
  .single_add_to_cart_button,
  .checkout-button,
  #place_order {
    width: 100%;
  }

  .woocommerce table.shop_table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

  .br-age-gate {
    align-items: start;
    overflow-y: auto;
  }

  .br-age-gate__panel {
    padding: 22px;
    margin-top: 22px;
  }
}

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

  .br-reveal {
    opacity: 1;
    transform: none;
  }
}
