
:root {
  --boh-bg: #f8f5ef;
  --boh-card: #ffffff;
  --boh-ink: #161412;
  --boh-muted: #726b62;
  --boh-line: rgba(32, 28, 23, .11);
  --boh-gold: #b98a44;
  --boh-gold-dark: #9a7034;
  --boh-black: #111111;
  --boh-radius-lg: 28px;
  --boh-radius-md: 18px;
  --boh-shadow: 0 18px 60px rgba(36, 28, 18, .10);
  --boh-max: 1440px;
}

/* Feedback dialog */
.boh-feedback[hidden],
.boh-feedback [hidden] {
  display: none !important;
}

.boh-feedback {
  position: fixed;
  inset: 0;
  z-index: 10020;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  transition: opacity .22s ease;
}

.boh-feedback.is-open {
  opacity: 1;
}

.boh-feedback__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(19, 18, 16, .58);
  backdrop-filter: blur(10px);
}

.boh-feedback__dialog {
  position: relative;
  width: min(720px, 100%);
  max-height: calc(100dvh - 48px);
  overflow: auto;
  padding: 42px;
  border: 1px solid rgba(183, 142, 71, .22);
  border-radius: 26px;
  background: #fffdfa;
  box-shadow: 0 28px 90px rgba(22, 18, 12, .24);
  transform: translateY(16px) scale(.985);
  transition: transform .28s cubic-bezier(.22, .7, .2, 1);
  outline: none;
}

.boh-feedback.is-open .boh-feedback__dialog {
  transform: none;
}

.boh-feedback__dialog h2 {
  margin: 5px 64px 10px 0;
  font-size: clamp(34px, 4.3vw, 54px);
  line-height: .98;
}

.boh-feedback__lead {
  max-width: 580px;
  margin: 0 0 26px;
  color: #716b62;
  font-size: 16px;
  line-height: 1.55;
}

.boh-feedback__close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: #f3eee6;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}

.boh-feedback__close:hover {
  background: #eadfce;
  transform: rotate(4deg);
}

.boh-feedback__close span {
  position: absolute;
  top: 23px;
  left: 14px;
  width: 20px;
  height: 1.5px;
  background: #171512;
  transform: rotate(45deg);
}

.boh-feedback__close span + span {
  transform: rotate(-45deg);
}

.boh-feedback__form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.boh-feedback__field {
  display: grid;
  gap: 8px;
  color: #4e4942;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.boh-feedback__field small {
  color: #9c958b;
  font-size: 10px;
  font-weight: 500;
  text-transform: none;
}

.boh-feedback__field input,
.boh-feedback__field textarea {
  width: 100%;
  border: 1px solid #ddd7ce;
  border-radius: 13px;
  background: #fff;
  color: #171512;
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0;
  text-transform: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.boh-feedback__field input {
  min-height: 54px;
  padding: 0 16px;
}

.boh-feedback__field textarea {
  min-height: 104px;
  padding: 14px 16px;
  resize: vertical;
}

.boh-feedback__field input:focus,
.boh-feedback__field textarea:focus {
  border-color: #bd8d42;
  box-shadow: 0 0 0 3px rgba(189, 141, 66, .13);
  outline: none;
}

.boh-feedback__field--wide {
  grid-column: 1 / -1;
}

.boh-feedback__consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #716b62;
  font-size: 12px;
  line-height: 1.45;
}

.boh-feedback__consent input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: #bd8d42;
}

.boh-feedback__consent a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.boh-feedback__submit {
  justify-content: center;
  min-height: 58px;
}

.boh-feedback__submit:disabled {
  cursor: wait;
  opacity: .7;
}

.boh-feedback__status {
  min-height: 20px;
  margin: 9px 0 0;
  color: #746e66;
  font-size: 13px;
  text-align: center;
}

.boh-feedback__status.is-error {
  color: #a1372e;
}

.boh-feedback__success {
  padding: 18px 0 4px;
  text-align: center;
}

.boh-feedback__success-icon {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  margin: 0 auto 18px;
  border: 1px solid rgba(189, 141, 66, .45);
  border-radius: 50%;
  background: #f5ead6;
  color: #9f6e28;
  font-size: 30px;
}

.boh-feedback__success h3 {
  margin: 0 0 8px;
  font-size: 38px;
}

.boh-feedback__success p {
  margin: 0 0 24px;
  color: #716b62;
}

.boh-feedback__trap {
  position: fixed !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.boh-feedback-open {
  overflow: hidden;
}

@media (max-width: 640px) {
  .boh-feedback {
    align-items: end;
    padding: 0;
  }

  .boh-feedback__dialog {
    width: 100%;
    max-height: calc(100dvh - 12px);
    padding: 28px 20px calc(24px + env(safe-area-inset-bottom));
    border-radius: 24px 24px 0 0;
    transform: translateY(100%);
  }

  .boh-feedback__dialog h2 {
    margin-right: 56px;
    font-size: 36px;
  }

  .boh-feedback__close {
    top: 18px;
    right: 18px;
  }

  .boh-feedback__lead {
    margin-bottom: 20px;
    font-size: 14px;
  }

  .boh-feedback__form {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .boh-feedback__field--wide {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .boh-feedback,
  .boh-feedback__dialog {
    transition: none;
  }
}

.boh-landing,
.boh-landing * {
  box-sizing: border-box;
}

.boh-landing [hidden] {
  display: none !important;
}

.boh-landing {
  margin: 0 auto;
  color: var(--boh-ink);
  background:
    radial-gradient(circle at 10% 10%, rgba(185, 138, 68, .10), transparent 25%),
    linear-gradient(180deg, #fff 0%, var(--boh-bg) 46%, #fff 100%);
  font-family: Inter, Arial, sans-serif;
  overflow: hidden;
}

.boh-landing a {
  color: inherit;
  text-decoration: none;
}

.boh-wrap {
  width: min(var(--boh-max), calc(100% - 64px));
  margin: 0 auto;
}

.boh-serif {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -.035em;
}

.boh-top {
  position: relative;
  min-height: 690px;
  background:
    linear-gradient(270deg, rgba(0,0,0,.92) 0%, rgba(0,0,0,.74) 28%, rgba(0,0,0,.16) 62%, rgba(0,0,0,.18) 100%),
    linear-gradient(0deg, rgba(0,0,0,.34), transparent 38%),
    url("/wa-data/public/shop/themes/freeBoheme/img/boheme-hero-taps.jpg") center / cover no-repeat;
}

.boh-head {
  height: 82px;
  display: block;Htfkmy
  align-items: center;
}

.boh-logo {
  display: block;
  line-height: 1;
  letter-spacing: .12em;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
}

.boh-logo span {
  display: block;
  margin-top: 5px;
  font-family: Inter, Arial, sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .42em;
}

.boh-nav {
  display: flex;
  gap: clamp(18px, 2vw, 34px);
  justify-content: center;
  align-items: center;
  font-size: 14px;
}

.boh-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
}

.boh-phone {
  text-align: right;
  line-height: 1.25;
  white-space: nowrap;
}

.boh-phone strong {
  display: block;
  font-size: 15px;
}

.boh-phone small {
  color: var(--boh-muted);
}

.boh-ico {
  width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  opacity: .8;
}

.boh-hero {
  max-width: 560px;
  margin-left: auto;
  margin-right: clamp(24px, 9vw, 145px);
  padding: 110px 0 46px;
}

.boh-kicker {
  margin: 0 0 18px;
  color: var(--boh-gold-dark);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.boh-hero .boh-kicker { color: #c89a50; }

.boh-hero h1 {
  margin: 0;
  font-size: clamp(46px, 5vw, 86px);
  line-height: .98;
}

.boh-hero h1 { color: #fff; }

.boh-hero p {
  max-width: 500px;
  margin: 26px 0 0;
  color: #3f3933;
  font-size: 18px;
  line-height: 1.65;
}

.boh-hero > p:not(.boh-kicker) { color: rgba(255,255,255,.78); }
.boh-hero .boh-btn:not(.boh-btn--gold) { background: transparent; color: #fff; border-color: rgba(255,255,255,.7); }
.boh-hero .boh-trust__item { color: rgba(255,255,255,.84); }

.boh-hero-cta {
  display: flex;
  gap: 16px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.boh-btn {
  min-height: 52px;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid var(--boh-line);
  border-radius: 4px;
  background: #fff;
  color: var(--boh-ink);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}

.boh-btn:hover {
  transform: translateY(-1px);
}

.boh-btn--dark {
  background: var(--boh-black);
  color: #fff !important;
  border-color: var(--boh-black);
}

.boh-btn--gold {
  background: var(--boh-gold);
  color: #fff;
  border-color: var(--boh-gold);
}

.boh-trust {
  display: flex;
  gap: 16px;
  margin-top: 52px;
  flex-wrap: wrap;
}

.boh-trust__item {
  min-width: 145px;
  display: flex;
  gap: 12px;
  align-items: center;
  color: #403a34;
  font-size: 13px;
  line-height: 1.35;
}

.boh-trust svg,
.boh-benefits svg {
  width: 28px;
  height: 28px;
  color: var(--boh-gold);
  flex: 0 0 auto;
}

.boh-filter {
  position: relative;
  z-index: 5;
  margin: 24px auto 0;
}

.boh-filter__card {
  padding: 32px 32px 28px;
  border: 1px solid rgba(255,255,255,.65);
  border-radius: var(--boh-radius-lg);
  background: rgba(255,255,255,.92);
  box-shadow: var(--boh-shadow);
  backdrop-filter: blur(16px);
}

.boh-filter__title {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 22px;
}

.boh-filter__title h2 {
  margin: 0;
  font-size: clamp(28px, 2.6vw, 42px);
  line-height: 1.05;
}

.boh-filter__title p {
  margin: 8px 0 0;
  color: var(--boh-muted);
  font-size: 14px;
}

.boh-filter__found {
  color: var(--boh-muted);
  font-size: 14px;
  white-space: nowrap;
}

.boh-filter__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--boh-line);
  border-radius: 18px;
  background: #fff;
  overflow: visible;
}

.boh-select {
  position: relative;
  min-width: 0;
  border-right: 1px solid var(--boh-line);
}

.boh-select:last-child {
  border-right: 0;
}

.boh-select__button {
  width: 100%;
  height: 86px;
  padding: 14px 16px;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) 12px;
  gap: 12px;
  align-items: center;
}

.boh-select__icon {
  width: 36px;
  height: 36px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(185, 138, 68, .20);
  border-radius: 11px;
  background: #f8f1e5;
  color: var(--boh-gold);
  opacity: 1;
}

.boh-select__icon svg {
  width: 21px;
  height: 21px;
}

.boh-select__label {
  display: block;
  margin-bottom: 5px;
  color: var(--boh-muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.boh-select__value {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--boh-ink);
  font-size: 14px;
  font-weight: 700;
}

.boh-select__value-text {
  min-width: 0;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.boh-select__chev {
  color: var(--boh-muted);
  transition: transform .2s ease;
}

.boh-select.is-open .boh-select__chev {
  transform: rotate(180deg);
}

.boh-menu {
  position: absolute;
  left: -1px;
  top: calc(100% + 10px);
  width: min(330px, 92vw);
  padding: 10px;
  display: none;
  max-height: min(58vh, 520px);
  overflow-y: auto;
  overscroll-behavior: contain;
  border: 1px solid var(--boh-line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 22px 55px rgba(25,20,14,.16);
  z-index: 20;
}

.boh-menu,
.boh-mobile-sheet__list {
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 26, 52, .28) rgba(0, 26, 52, .08);
}

.boh-menu::-webkit-scrollbar,
.boh-mobile-sheet__list::-webkit-scrollbar {
  width: 8px;
}

.boh-menu::-webkit-scrollbar-track,
.boh-mobile-sheet__list::-webkit-scrollbar-track {
  background: rgba(0, 26, 52, .06);
  border-radius: 999px;
}

.boh-menu::-webkit-scrollbar-thumb,
.boh-mobile-sheet__list::-webkit-scrollbar-thumb {
  background: rgba(0, 26, 52, .26);
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, .72);
}

.boh-menu::-webkit-scrollbar-thumb:hover,
.boh-mobile-sheet__list::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 26, 52, .38);
}

.boh-select.is-open .boh-menu {
  display: block;
}

.boh-mobile-sheet {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  height: clamp(340px, 58svh, 520px);
  z-index: 80;
  display: none;
  align-items: flex-end;
  justify-content: center;
  pointer-events: none;
}

.boh-mobile-sheet.is-open {
  display: flex;
}

.boh-mobile-sheet__panel {
  position: relative;
  width: 100%;
  max-width: 100vw;
  height: 100%;
  border-radius: 24px 24px 0 0;
  background: #fff;
  box-shadow: 0 -20px 50px rgba(20, 16, 12, .18);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  pointer-events: auto;
  touch-action: pan-x;
}

.boh-mobile-sheet__handle {
  width: 44px;
  height: 5px;
  margin: 10px auto 0;
  border-radius: 999px;
  background: rgba(22, 20, 18, .18);
  flex: 0 0 auto;
}

.boh-mobile-sheet__head {
  padding: 10px 16px 12px;
  border-bottom: 1px solid var(--boh-line);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
}

.boh-mobile-sheet__label {
  color: var(--boh-muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.boh-mobile-sheet__title {
  margin-top: 5px;
  color: var(--boh-ink);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.15;
}

.boh-mobile-sheet__close {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: #f4efe7;
  color: var(--boh-ink);
  cursor: pointer;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  padding: 0;
}

.boh-mobile-sheet__close svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
}

.boh-mobile-sheet__list {
  padding: 12px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  display: grid;
  gap: 8px;
}

.boh-mobile-sheet__list .boh-menu__item {
  min-height: 54px;
  border-radius: 16px;
  background: #f7f3eb;
}

.boh-mobile-sheet__list .boh-menu__item.is-active {
  position: relative;
  padding-right: 52px;
}

.boh-mobile-sheet__list .boh-menu__item.is-active::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 18px;
  width: 10px;
  height: 16px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-55%) rotate(45deg);
  opacity: .75;
}

.boh-mobile-sheet__list .boh-menu__item:hover,
.boh-mobile-sheet__list .boh-menu__item.is-active {
  background: #f0e4ce;
}

.boh-menu__item {
  width: 100%;
  min-height: 46px;
  border: 0;
  border-radius: 12px;
  padding: 10px 12px;
  background: transparent;
  text-align: left;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  cursor: pointer;
  color: var(--boh-ink);
  font-size: 14px;
}

.boh-menu__item:hover,
.boh-menu__item.is-active {
  background: #f6f1e8;
}

.boh-menu__count {
  color: var(--boh-muted);
  font-size: 12px;
}

.boh-color-dot {
  width: 22px;
  height: 22px;
  display: inline-block;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px rgba(25,22,18,.16), inset 0 0 0 1px rgba(0,0,0,.06);
  flex: 0 0 auto;
}

.boh-color-option {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.boh-category-option {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.boh-category-option__icon {
  width: 30px;
  height: 30px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(185,138,68,.18);
  border-radius: 9px;
  background: #faf4e9;
  color: var(--boh-gold-dark);
}

.boh-category-option__icon svg {
  width: 20px;
  height: 20px;
}

.boh-category-option__icon img {
  width: 26px;
  height: 26px;
  display: block;
  object-fit: contain;
  object-position: center;
}

.boh-selected-color-dot {
  width: 17px;
  height: 17px;
  display: inline-block;
  flex: 0 0 auto;
  border: 2px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(25,22,18,.18), inset 0 0 0 1px rgba(0,0,0,.06);
}

.boh-filter__bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  margin-top: 20px;
}

.boh-chips {
  min-height: 32px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}

.boh-chip {
  height: 32px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  background: #f3eee5;
  color: #4a4137;
  font-size: 12px;
}

.boh-chip button {
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
  color: inherit;
}

.boh-filter__buttons {
  display: flex;
  gap: 12px;
  align-items: center;
  flex: 0 0 auto;
}

.boh-reset {
  border: 0;
  background: transparent;
  color: var(--boh-muted);
  text-decoration: underline;
  cursor: pointer;
}

.boh-section {
  padding: 78px 0 0;
}

.boh-section__head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 28px;
}

.boh-section h2 {
  margin: 0;
  font-size: clamp(32px, 3vw, 48px);
  line-height: 1.05;
}

.boh-link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: var(--boh-gold-dark);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.boh-categories {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.boh-cat {
  position: relative;
  min-height: 280px;
  border: 1px solid var(--boh-line);
  border-radius: 18px;
  background: #fff;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}

.boh-cat:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 45px rgba(30,23,16,.10);
}

.boh-cat__image {
  height: 205px;
  background: #eee center / cover no-repeat;
}

.boh-cat__image::after {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 205px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0,0,0,0) 34%, rgba(0,0,0,.68) 100%);
}

.boh-cat__video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: #eee;
}

.boh-cat__body {
  padding: 16px 18px 18px;
  color: #111;
}

.boh-cat__title {
  font-size: 17px;
  font-weight: 700;
}

.boh-cat__sub {
  margin-top: 7px;
  color: var(--boh-muted);
  font-size: 13px;
}

.boh-kits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.boh-kit {
  border: 1px solid var(--boh-line);
  border-radius: 20px;
  background: #fff;
  overflow: hidden;
}

.boh-kit__image {
  height: 210px;
  background: #eee center / cover no-repeat;
}

.boh-kit__body {
  padding: 20px;
}

.boh-kit h3 {
  margin: 0 0 9px;
  font-size: 18px;
}

.boh-kit p {
  margin: 0;
  color: var(--boh-muted);
  font-size: 14px;
  line-height: 1.55;
}

.boh-kit__foot {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.boh-kit__price {
  font-weight: 800;
}

.boh-round {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--boh-gold);
  color: #fff;
}

.boh-styles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.boh-style {
  position: relative;
  height: 260px;
  padding: 22px;
  border-radius: 20px;
  overflow: hidden;
  background: #ddd center / cover no-repeat;
  color: #fff;
  display: flex;
  align-items: end;
}

.boh-style:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0,0,0,.64) 100%);
}

.boh-style__text {
  position: relative;
  z-index: 1;
  color: #fff !important;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .42);
}

.boh-style h3 {
  margin: 0 0 7px;
  color: #fff !important;
  font-size: 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.boh-style p {
  margin: 0;
  color: rgba(255, 255, 255, .9) !important;
  font-size: 13px;
}

.boh-benefits {
  margin-top: 74px;
  padding: 30px;
  border-top: 1px solid var(--boh-line);
  border-bottom: 1px solid var(--boh-line);
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 22px;
}

.boh-benefit {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  font-size: 13px;
  line-height: 1.45;
}

.boh-benefit strong {
  display: block;
  margin-bottom: 4px;
  font-size: 14px;
}

.boh-banner {
  margin-top: 74px;
  min-height: 300px;
  border-radius: 24px;
  background:
    linear-gradient(90deg, rgba(13,12,11,.96) 0%, rgba(13,12,11,.86) 43%, rgba(13,12,11,.24) 100%),
    url("/wa-data/public/shop/themes/freeBoheme/img/designers.jpg") center / cover no-repeat;
  color: #fff;
  padding: clamp(34px, 5vw, 62px);
  display: flex;
  align-items: center;
}

.boh-banner__content {
  max-width: 560px;
}

.boh-banner h2 {
  margin: 0;
  font-size: clamp(34px, 3.6vw, 56px);
}

.boh-banner p {
  margin: 20px 0 0;
  color: rgba(255,255,255,.80);
  font-size: 17px;
  line-height: 1.65;
}

.boh-banner .boh-btn {
  margin-top: 30px;
}

.boh-showroom {
  padding-bottom: 90px;
}

.boh-showroom__grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 28px;
  align-items: stretch;
}

.boh-showroom__img {
  min-height: 340px;
  border-radius: 24px;
  background: #e8e3db url("/wa-data/public/shop/themes/freeBoheme/img/showroom-real-2026.webp") center / cover no-repeat;
}

.boh-showroom__text {
  padding: clamp(34px, 4vw, 56px);
  border: 1px solid var(--boh-line);
  border-radius: 24px;
  background: #fff;
}

.boh-showroom__text p {
  margin: 18px 0 0;
  color: var(--boh-muted);
  font-size: 16px;
  line-height: 1.65;
}

.boh-showroom__line {
  margin-top: 24px;
  display: grid;
  gap: 8px;
  color: #3d372f;
  font-size: 15px;
}

.boh-footer-note {
  padding: 34px 0;
  border-top: 1px solid var(--boh-line);
  color: var(--boh-muted);
  font-size: 13px;
}

@media (max-width: 1180px) {
  .boh-head {
    grid-template-columns: 170px 1fr auto;
    gap: 18px;
  }

  .boh-nav {
    gap: 16px;
    font-size: 13px;
  }

  .boh-filter__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .boh-select:nth-child(3) {
    border-right: 0;
  }

  .boh-select:nth-child(n+4) {
    border-top: 1px solid var(--boh-line);
  }

  .boh-categories {
    grid-template-columns: repeat(3, 1fr);
  }

  .boh-benefits {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 820px) {
  .boh-wrap {
    width: min(100% - 28px, var(--boh-max));
  }

  .boh-top {
    min-height: auto;
    background:
      linear-gradient(0deg, rgba(0,0,0,.94) 0%, rgba(0,0,0,.72) 44%, rgba(0,0,0,.06) 86%),
      linear-gradient(90deg, rgba(0,0,0,.35), transparent),
      url("/wa-data/public/shop/themes/freeBoheme/img/boheme-hero-taps.jpg") 62% center / cover no-repeat;
  }

  .boh-head {
    height: 68px;
    grid-template-columns: 1fr auto;
  }

  .boh-logo {
    font-size: 24px;
  }

  .boh-nav,
  .boh-phone {
    display: none;
  }

  .boh-actions {
    gap: 12px;
  }

  .boh-hero {
    margin: 0;
    padding: 48px 0 130px;
  }

  .boh-hero .boh-kicker { color: #c89a50; }
  .boh-hero h1 { color: #fff; }
  .boh-hero > p:not(.boh-kicker) { color: rgba(255,255,255,.82); }

  .boh-hero h1 {
    font-size: clamp(40px, 13vw, 58px);
  }

  .boh-hero p {
    font-size: 15px;
  }

  .boh-trust {
    margin-top: 30px;
    padding: 16px 14px;
    gap: 14px;
    border: 1px solid rgba(255,255,255,.74);
    border-radius: 18px;
    background: rgba(255,255,255,.86);
    box-shadow: 0 14px 34px rgba(36,28,18,.12);
    backdrop-filter: blur(14px);
  }

  .boh-trust__item {
    min-width: calc(50% - 10px);
    color: #302b26;
    font-size: 12px;
    text-shadow: none;
  }

  .boh-trust__item svg {
    color: var(--boh-gold-dark);
    filter: none;
  }

  .boh-filter {
    margin-top: -92px;
  }

  .boh-filter__card {
    padding: 22px 16px 18px;
    border-radius: 22px;
  }

  .boh-filter__title {
    display: block;
    margin-bottom: 16px;
  }

  .boh-filter__found {
    margin-top: 8px;
  }

  .boh-filter__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .boh-select,
  .boh-select:nth-child(3) {
    border-right: 1px solid var(--boh-line);
    border-top: 1px solid var(--boh-line);
  }

  .boh-select:nth-child(odd) {
    border-left: 0;
  }

  .boh-select:nth-child(even) {
    border-right: 0;
  }

  .boh-select:nth-child(1),
  .boh-select:nth-child(2) {
    border-top: 0;
  }

  .boh-select__button {
    height: 74px;
    grid-template-columns: 24px 1fr 10px;
    gap: 8px;
    padding: 12px 10px;
  }

  .boh-select__icon svg {
    width: 22px;
    height: 22px;
  }

  .boh-select__label {
    font-size: 9px;
  }

  .boh-select__value {
    font-size: 12px;
  }

  .boh-menu {
    width: calc(100vw - 44px);
  }

  .boh-filter__bottom {
    display: block;
  }

  .boh-filter__buttons {
    margin-top: 14px;
    display: grid;
    grid-template-columns: 1fr auto;
  }

  .boh-filter__buttons .boh-btn {
    width: 100%;
    padding: 0 16px;
  }

  .boh-section {
    padding-top: 54px;
  }

  .boh-section__head {
    align-items: center;
  }

  .boh-categories,
  .boh-kits,
  .boh-styles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .boh-cat {
    min-height: 220px;
  }

  .boh-cat__image,
  .boh-kit__image {
    height: 155px;
  }

  .boh-cat__image::after {
    height: 155px;
  }

  .boh-style {
    height: 210px;
  }

  .boh-benefits {
    grid-template-columns: repeat(2, 1fr);
    padding: 22px 0;
  }

  .boh-showroom__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .boh-filter {
    margin-top: -72px;
  }

  .boh-filter__card {
    padding: 16px 12px 14px;
    border-radius: 18px;
  }

  .boh-filter__title {
    margin-bottom: 12px;
  }

  .boh-filter__title h2 {
    font-size: 26px;
    line-height: 1.1;
  }

  .boh-filter__title p {
    font-size: 15px;
    line-height: 1.35;
    margin-top: 8px;
  }

  .boh-filter__found {
    margin-top: 10px;
    font-size: 14px;
  }

  .boh-filter__grid {
    grid-template-columns: 1fr;
    gap: 0;
    overflow: hidden;
  }

  .boh-select[data-filter="category"] {
    grid-column: auto;
    border: 0;
    border-bottom: 1px solid var(--boh-line);
  }

  .boh-select[data-filter="collection"] {
    border: 0;
    border-bottom: 1px solid var(--boh-line);
  }

  .boh-select[data-filter="finish"] {
    border: 0;
  }

  .boh-select {
    min-width: 0;
  }

  .boh-select__button {
    height: 62px;
    padding: 9px 14px;
    grid-template-columns: 34px minmax(0, 1fr) 12px;
    gap: 10px;
  }

  .boh-select__icon {
    width: 32px;
    height: 32px;
    border-radius: 10px;
  }

  .boh-select__icon svg {
    width: 19px;
    height: 19px;
  }

  .boh-select__label {
    font-size: 9px;
    letter-spacing: .08em;
    line-height: 1.05;
  }

  .boh-select__value {
    margin-top: 3px;
    font-size: 14px;
    line-height: 1.15;
  }

  .boh-menu {
    width: calc(100vw - 24px);
    left: 50%;
    transform: translateX(-50%);
    max-height: min(58vh, 520px);
  }

  .boh-mobile-sheet__panel {
    border-radius: 20px 20px 0 0;
  }

  .boh-mobile-sheet__handle {
    margin-top: 8px;
  }

  .boh-mobile-sheet__head {
    padding: 12px 14px 10px;
  }

  .boh-mobile-sheet__title {
    font-size: 17px;
  }

  .boh-select .boh-menu,
  .boh-select.is-open .boh-menu {
    display: none !important;
  }

  .boh-filter__bottom {
    margin-top: 14px;
  }

  .boh-chips:empty {
    display: none;
    min-height: 0;
  }

  .boh-chips:empty + .boh-filter__buttons {
    margin-top: 0;
  }

  .boh-filter__buttons {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 10px;
  }

  .boh-filter__buttons .boh-btn {
    min-height: 50px;
    font-size: 14px;
    padding: 0 14px;
  }

  .boh-reset {
    min-height: 32px;
    font-size: 13px;
  }

  .boh-hero-cta {
    display: grid;
    grid-template-columns: 1fr;
  }

  .boh-btn {
    width: 100%;
  }

  .boh-categories,
  .boh-kits,
  .boh-styles {
    grid-template-columns: 1fr;
  }

  .boh-section__head {
    display: block;
  }

  .boh-link {
    margin-top: 12px;
  }

  .boh-benefits {
    grid-template-columns: 1fr;
  }
}
.boh-landing .boh-trust svg,
.boh-landing .boh-benefits svg,
.boh-landing .boh-select__icon,
.boh-landing .boh-category-option__icon {
  color: #171717;
}

.boh-landing .boh-category-option__icon img {
  filter: grayscale(1) brightness(0);
}

/* Trust icons sit on the dark Hero image, so they remain white there. */
.boh-landing .boh-hero .boh-trust svg {
  color: #fff;
}

/* Strict monochrome homepage palette. */
.boh-landing {
  --boh-bg: #fff;
  --boh-gold: #111;
  --boh-gold-dark: #111;
  background: #fff;
}
.boh-landing .boh-btn--gold {
  background: #111;
  border-color: #111;
  color: #fff;
}
.boh-landing .boh-btn--gold:hover {
  background: #000;
  border-color: #000;
}
.boh-landing .boh-kicker,
.boh-landing .boh-filter__found,
.boh-landing .boh-select__label,
.boh-landing .boh-style__text p {
  color: #171717;
}
.boh-landing .boh-select__icon,
.boh-landing .boh-category-option__icon {
  border-color: rgba(17,17,17,.16);
  background: #f5f5f5;
}
.boh-landing .boh-hero .boh-kicker {
  color: #fff;
}
.boh-landing .boh-link,
.boh-landing .boh-round,
.boh-landing .boh-btn--gold {
  background-color: #111;
  border-color: #111;
  color: #fff;
}
.boh-landing .boh-link {
  background: transparent;
  color: #111;
}
.boh-landing .boh-section {
  background-color: #fff;
}

/* Benefit icons: monochrome SVG assets */
.boh-benefit>img{display:block;width:34px;height:34px;flex:0 0 34px;object-fit:contain;color:#111}

/* Prevent global image rules from stretching homepage benefit icons */
.boh-benefit > img {
  display: block !important;
  width: 42px !important;
  height: 42px !important;
  max-width: 42px !important;
  max-height: 42px !important;
  flex: 0 0 42px !important;
  object-fit: contain !important;
}
