/**
 * BestDoors shop catalog — layout 1:1 with design mockup.
 */

/* -------------------------------------------------------------------------
   Page shell
   ------------------------------------------------------------------------- */
.bdc-shop-layout .bd-site-content {
  background: var(--bdc-shop-page-bg, #f7f5f2);
  color: #1a1a1a;
  font-family: "Manrope", system-ui, sans-serif !important;
}

.bdc-shop-layout,
.bdc-shop-layout .bd-shop,
.bdc-shop-layout .bd-shop * {
  font-family: "Manrope", system-ui, sans-serif;
}

.bdc-shop-layout .bd-site-content > .bd-container,
.bdc-shop-layout .bd-container--shop {
  max-width: 1440px;
  padding-left: 24px;
  padding-right: 24px;
}

.bd-shop {
  padding: 0 0 0;
  font-family: "Manrope", system-ui, sans-serif !important;
  -webkit-font-smoothing: antialiased;
}

/* -------------------------------------------------------------------------
   Shop / category hero — text OVER image (no fill), CTA separate with 10px gap
   ------------------------------------------------------------------------- */
.bd-shop-hero {
  margin: 0 0 24px;
  padding: 0;
}

.bd-shop-hero__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: stretch;
  width: 100%;
}

.bd-shop-hero__row--with-cta {
  grid-template-columns: minmax(0, 1fr) 168px;
  gap: 10px; /* gap between image and „Detaliile…” */
}

.bd-shop-hero__banner {
  position: relative;
  width: 100%;
  min-height: 0;
  height: clamp(160px, 18vw, 200px);
  border-radius: 2px;
  overflow: hidden;
  background: #e8e2d9;
}

.bd-shop-hero__banner--no-image {
  background: #f0ebe4;
}

.bd-shop-hero__media {
  position: absolute;
  inset: 0;
  margin: 0;
  z-index: 0;
  pointer-events: none;
}

.bd-shop-hero__image {
  position: absolute !important;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: cover !important;
  object-position: center right;
  display: block;
  margin: 0 !important;
}

.bd-shop-hero__copy {
  position: relative;
  z-index: 2;
  max-width: 420px;
  padding: 22px 28px;
  /* Text sits directly on the photo — no opaque panel */
  background: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  border: 0 !important;
}

.bd-shop-hero__breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0 0 10px;
  padding: 0;
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #6b6b6b;
}

.bd-shop-hero__breadcrumbs li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.bd-shop-hero__breadcrumbs a {
  color: #6b6b6b;
  text-decoration: none;
}

.bd-shop-hero__breadcrumbs a:hover {
  color: #111;
}

.bd-shop-hero__breadcrumbs span[aria-current="page"] {
  color: #4a4a4a;
}

.bd-shop-hero__sep {
  color: #9a9a9a;
}

.bd-shop-hero__title {
  margin: 0 0 8px;
  font-family: "Manrope", system-ui, sans-serif !important;
  font-size: clamp(1.75rem, 2.4vw, 2.35rem);
  font-weight: 700 !important;
  line-height: 1.1;
  letter-spacing: -0.035em;
  color: #111;
  background: transparent !important;
}

.bd-shop-hero__desc {
  margin: 0;
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: #5a5a5a;
  max-width: 22rem;
  background: transparent !important;
}

.bd-shop-hero__cta {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px 18px;
  background: #e6e0d7;
  box-sizing: border-box;
  min-height: 100%;
  border-radius: 2px;
}

.bd-shop-hero__cta-title {
  margin: 0;
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: #111;
}

.bd-shop-hero__cta-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #111;
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
}

.bd-shop-hero__cta-link:hover {
  opacity: 0.7;
  color: #111;
}

@media (max-width: 900px) {
  .bd-shop-hero__row--with-cta {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .bd-shop-hero__banner {
    height: 180px;
  }

  .bd-shop-hero__copy {
    padding: 18px 16px;
    max-width: none;
  }

  .bd-shop-hero__cta {
    min-height: 96px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }
}

.bd-shop__layout {
  display: grid !important;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 40px;
  align-items: start;
  width: 100%;
}

.bd-shop-sidebar {
  background: #fff;
  position: sticky;
  top: 96px;
  display: block !important;
  width: 100%;
  min-width: 0;
  height: fit-content;
  z-index: 2;
  border: 1px solid #ebe7e1;
  border-radius: 16px;
  padding: 22px 20px 18px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
  align-self: start;
  box-sizing: border-box;
}

.bd-shop-sidebar .bd-shop-filters {
  flex: none;
}

.bd-shop__main {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

@media (max-width: 1100px) {
  .bd-shop__layout {
    grid-template-columns: 290px minmax(0, 1fr);
    gap: 28px;
  }
}

@media (max-width: 900px) {
  .bd-shop__layout {
    grid-template-columns: 1fr;
  }
  .bd-shop-sidebar {
    position: static;
  }
}

.bd-shop-filters__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 4px;
  padding: 0 0 16px;
  border-bottom: 1px solid #ece8e2;
}

.bd-shop-filters__title {
  margin: 0;
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #111;
}

.bd-shop-filters__reset {
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #9a9a9a;
  white-space: nowrap;
  text-decoration: none;
}

.bd-shop-filters__reset:hover {
  color: #1a1a1a;
}

.bd-shop-filter {
  border-bottom: 1px solid #ece8e2;
  padding: 2px 0;
}

.bd-shop-filter:last-child {
  border-bottom: 0;
}

.bd-shop-filter__toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 16px 0 12px;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #111;
  text-align: left;
}

.bd-shop-filter__chevron {
  transition: transform 0.2s ease;
  flex-shrink: 0;
  color: #1a1a1a;
}

.bd-shop-filter:not(.is-open) .bd-shop-filter__chevron {
  transform: rotate(180deg);
}

.bd-shop-filter__body {
  display: none;
  padding: 0 0 16px;
}

.bd-shop-filter.is-open .bd-shop-filter__body {
  display: block;
}

.bd-shop-filter__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.bd-shop-filter__list li + li {
  margin-top: 12px;
}

/* Custom checkbox — rounded square like mockup */
.bd-shop-check {
  display: grid;
  grid-template-columns: 18px 1fr auto;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #1a1a1a;
}

.bd-shop-check input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  margin: 0;
  pointer-events: none;
}

.bd-shop-check__box {
  width: 16px;
  height: 16px;
  border: 1.5px solid #cfcfcf;
  border-radius: 4px;
  background: #fff;
  box-sizing: border-box;
  position: relative;
  flex-shrink: 0;
  transition: background 0.12s ease, border-color 0.12s ease;
}

.bd-shop-check__box::after {
  content: "";
  position: absolute;
  left: 4.5px;
  top: 1.5px;
  width: 4px;
  height: 8px;
  border: solid #fff;
  border-width: 0 1.5px 1.5px 0;
  transform: rotate(45deg) scale(0);
  transition: transform 0.12s ease;
}

.bd-shop-check input:checked + .bd-shop-check__box {
  background: #111;
  border-color: #111;
}

.bd-shop-check input:checked + .bd-shop-check__box::after {
  transform: rotate(45deg) scale(1);
}

.bd-shop-check__label {
  line-height: 1.3;
  font-weight: 500;
}

.bd-shop-check__count {
  color: #a3a3a3;
  font-weight: 400;
  font-size: 12px;
}

/* Price range — values above track */
.bd-shop-price__values {
  display: flex;
  justify-content: space-between;
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #1a1a1a;
  margin: 0 0 10px;
}

.bd-shop-price__track {
  position: relative;
  height: 28px;
  margin: 0;
}

.bd-shop-price__track::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 3px;
  margin-top: -1.5px;
  background: #e8e8e8;
  border-radius: 2px;
}

.bd-shop-price__range {
  position: absolute;
  top: 50%;
  height: 3px;
  margin-top: -1.5px;
  background: #111;
  border-radius: 2px;
  z-index: 1;
  pointer-events: none;
}

.bd-shop-price__input {
  position: absolute;
  left: 0;
  width: 100%;
  top: 50%;
  margin: 0;
  transform: translateY(-50%);
  appearance: none;
  background: transparent;
  pointer-events: none;
  height: 28px;
  z-index: 2;
}

.bd-shop-price__input::-webkit-slider-thumb {
  appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #111;
  border: 0;
  cursor: pointer;
  pointer-events: auto;
  box-shadow: 0 0 0 3px #fff;
}

.bd-shop-price__input::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #111;
  border: 0;
  cursor: pointer;
  pointer-events: auto;
}

/* Color swatches — rounded squares */
.bd-shop-swatches-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.bd-shop-swatches {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  align-items: center;
  overflow-x: auto;
  scrollbar-width: none;
  flex: 1;
  min-width: 0;
  padding: 2px 0;
}

.bd-shop-swatches::-webkit-scrollbar {
  display: none;
}

.bd-shop-swatches__more {
  flex-shrink: 0;
  color: #1a1a1a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
}

.bd-shop-swatch {
  position: relative;
  width: 24px;
  height: 24px;
  border-radius: 7px;
  cursor: pointer;
  display: block;
  flex-shrink: 0;
}

.bd-shop-swatch input {
  position: absolute;
  opacity: 0;
  inset: 0;
  margin: 0;
  cursor: pointer;
}

.bd-shop-swatch span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 7px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-sizing: border-box;
}

.bd-shop-swatch.is-active,
.bd-shop-swatch:has(input:checked) {
  box-shadow: 0 0 0 1.5px #fff, 0 0 0 3px #c8c8c8;
  border-radius: 8px;
}

/* -------------------------------------------------------------------------
   Toolbar
   ------------------------------------------------------------------------- */
.bd-shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.bd-shop-count {
  margin: 0;
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: #1a1a1a;
}

.bd-shop-toolbar__right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.bd-shop-sort {
  position: relative;
  display: flex;
  align-items: center;
  z-index: 20;
}

.bd-shop-sort__trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 10px 14px;
  border: 1px solid #e0ddd7;
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 13px;
  line-height: 1.2;
  color: #1a1a1a;
  box-shadow: none;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.bd-shop-sort__trigger:hover,
.bd-shop-sort.is-open .bd-shop-sort__trigger {
  border-color: #cfcbc4;
}

.bd-shop-sort.is-open .bd-shop-sort__trigger {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.bd-shop-sort__prefix {
  font-weight: 400;
  color: #1a1a1a;
  white-space: nowrap;
}

.bd-shop-sort__current {
  font-weight: 700;
  color: #1a1a1a;
  white-space: nowrap;
}

.bd-shop-sort__chevron {
  margin-left: 4px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.bd-shop-sort.is-open .bd-shop-sort__chevron {
  transform: rotate(180deg);
}

.bd-shop-sort__menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 100%;
  margin: 0;
  padding: 6px;
  list-style: none;
  background: #fff;
  border: 1px solid #e0ddd7;
  border-radius: 10px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
  z-index: 50;
}

.bd-shop-sort__menu[hidden] {
  display: none !important;
}

.bd-shop-sort__option {
  display: block;
  padding: 10px 12px;
  border-radius: 6px;
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #1a1a1a;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.12s ease;
}

.bd-shop-sort__option:hover {
  background: #f3f1ed;
}

.bd-shop-sort__option.is-selected {
  background: #1a1a1a;
  color: #fff;
  font-weight: 600;
}

.bd-shop-views {
  display: flex;
  gap: 6px;
}

.bd-shop-views__btn {
  width: 38px;
  height: 38px;
  border: 1px solid #e0ddd7;
  background: #fff;
  color: #b5b5b5;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  padding: 0;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.bd-shop-views__btn svg {
  fill: currentColor;
}

.bd-shop-views__btn.is-active {
  color: #1a1a1a;
  background: #efefef;
  border-color: #d8d8d8;
}

.bd-shop-views__btn:hover {
  color: #1a1a1a;
}

/* -------------------------------------------------------------------------
   Product grid
   ------------------------------------------------------------------------- */
.bdc-shop-layout ul.products.bd-shop-grid {
  display: grid;
  grid-template-columns: repeat(var(--bdc-shop-columns, 4), minmax(0, 1fr));
  gap: 36px 22px;
  list-style: none;
  margin: 0;
  padding: 0;
  clear: both;
}

.bdc-shop-layout ul.products.bd-shop-grid::before,
.bdc-shop-layout ul.products.bd-shop-grid::after {
  display: none;
}

@media (max-width: 1200px) {
  .bdc-shop-layout ul.products.bd-shop-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .bdc-shop-layout ul.products.bd-shop-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 12px;
  }
}

.bdc-shop-layout ul.products.bd-shop-grid--list {
  grid-template-columns: 1fr;
}

.bdc-shop-layout ul.products.bd-shop-grid--list .bd-product-card {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
}

.bdc-shop-layout ul.products li.product.bd-product-card {
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
  float: none !important;
  text-align: left;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  font-family: "Manrope", system-ui, sans-serif;
}

.bd-product-card__media {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  background: transparent;
  aspect-ratio: 3 / 4;
  line-height: 0;
}

.bd-product-card__link {
  position: absolute;
  inset: 0;
  display: block;
  z-index: 1;
}

.bd-product-card__image,
.bd-product-card__media img {
  position: absolute !important;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: cover !important;
  object-position: center;
  display: block;
  transition: transform 0.45s ease;
  border-radius: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

.bd-product-card:hover .bd-product-card__image,
.bd-product-card:hover .bd-product-card__media img {
  transform: scale(1.02);
}

/* Wishlist — white circle, thin border, black outline heart (mockup) */
.bd-product-card__wish {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: #fff;
  color: #1a1a1a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  padding: 0;
  transition: transform 0.2s ease, background 0.2s ease;
  z-index: 2;
}

.bd-product-card__wish svg {
  display: block;
  fill: none;
  stroke: currentColor;
}

.bd-product-card__wish:hover {
  transform: scale(1.04);
  color: #1a1a1a;
}

.bd-product-card__wish.is-active {
  color: #1a1a1a;
}

.bd-product-card__wish.is-active svg path {
  fill: #1a1a1a;
  stroke: #1a1a1a;
}

.bd-product-card__body {
  padding: 14px 0 0;
  background: transparent;
}

.bd-product-card__title {
  margin: 0 0 6px;
  font-family: "Manrope", system-ui, sans-serif !important;
  font-size: 16px;
  font-weight: 700 !important;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.bd-product-card__title a {
  color: #111 !important;
  text-decoration: none;
  font-weight: 700;
}

.bd-product-card__title a:hover {
  color: #111 !important;
  opacity: 0.7;
}

.bd-product-card__price {
  margin: 0 0 10px;
  font-family: "Manrope", system-ui, sans-serif !important;
  font-size: 14px;
  font-weight: 400 !important;
  color: #222 !important;
  letter-spacing: -0.01em;
}

.bd-product-card__price-prefix {
  font-weight: 400;
}

/* Square swatches with soft corners — as in mockup */
.bd-product-card__swatches {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.bd-product-card__swatch {
  width: 14px;
  height: 14px;
  border-radius: 3px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  display: inline-block;
  box-sizing: border-box;
}

/* Hide default WC chrome on custom cards */
.bdc-shop-layout .bd-product-card .button,
.bdc-shop-layout .bd-product-card .price,
.bdc-shop-layout .bd-product-card .onsale,
.bdc-shop-layout .bd-product-card .star-rating {
  display: none !important;
}

/* -------------------------------------------------------------------------
   Pagination + per page
   ------------------------------------------------------------------------- */
.bd-shop-footer-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  margin: 36px 0 8px;
}

.bd-shop-pagination {
  grid-column: 2;
}

.bd-shop-pagination__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.bd-shop-pagination__list li a,
.bd-shop-pagination__list li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 34px;
  padding: 0 8px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--bdc-shop-text, #1a1a1a);
  text-decoration: none;
  border-radius: 2px;
}

.bd-shop-pagination__list li.is-active span,
.bd-shop-pagination__list li span.current {
  background: var(--bdc-shop-accent, #1a1a1a);
  color: #fff;
}

.bd-shop-pagination__list .prev,
.bd-shop-pagination__list .next {
  font-size: 1.1rem;
}

.bd-shop-sort__menu--up {
  top: auto;
  bottom: calc(100% + 6px);
}

.bd-shop-views {
  display: none !important;
}

.bd-shop-per-page {
  grid-column: 3;
  justify-self: end;
  position: relative;
  z-index: 30;
}

.bd-shop-per-page .bd-shop-sort__trigger {
  white-space: nowrap;
}

.bd-shop-per-page .bd-shop-sort__menu {
  min-width: 100%;
  right: 0;
  left: auto;
}

@media (max-width: 700px) {
  .bd-shop-footer-bar {
    grid-template-columns: 1fr;
    justify-items: center;
  }
  .bd-shop-pagination,
  .bd-shop-per-page {
    grid-column: 1;
    justify-self: center;
  }
}

/* -------------------------------------------------------------------------
   Trust bar — only under products column
   ------------------------------------------------------------------------- */
.bd-shop__main > .bd-shop-trust {
  margin-top: auto;
}

.bd-shop-trust {
  margin: 40px 0 0;
  width: 100%;
  background: var(--bdc-shop-trust-bg, #f3efe8);
  border-radius: 12px;
  overflow: hidden;
}

.bd-shop-trust__inner {
  max-width: none;
  margin: 0;
  padding: 24px 20px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(220px, 1.15fr);
  gap: 20px;
  align-items: center;
}

.bd-shop-trust__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.bd-shop-trust__icon {
  color: var(--bdc-shop-text, #1a1a1a);
  flex-shrink: 0;
  margin-top: 2px;
}

.bd-shop-trust__item strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--bdc-shop-text, #1a1a1a);
  margin-bottom: 2px;
}

.bd-shop-trust__item span:not(.bd-shop-trust__icon) {
  display: block;
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--bdc-shop-muted, #8a8a8a);
  line-height: 1.4;
}

.bd-shop-trust__help {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-left: 24px;
  border-left: 1px solid rgba(0, 0, 0, 0.1);
}

.bd-shop-trust__help-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  min-width: 0;
  flex: 1;
}

.bd-shop-trust__help-title {
  display: block;
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
  color: #111;
  margin: 0;
}

.bd-shop-trust__help-desc {
  display: block;
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.35;
  color: #8a8a8a;
  white-space: normal;
}

.bd-shop-trust__help-phone {
  display: block;
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  color: #111;
  text-decoration: none;
  margin-top: 4px;
  white-space: nowrap;
}

.bd-shop-trust__help-phone:hover {
  color: #111;
  opacity: 0.75;
}

.bd-shop-trust__arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 0;
  background: #e5dfd6;
  color: #1a1a1a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.bd-shop-trust__arrow:hover {
  background: #1a1a1a;
  color: #fff;
}

@media (max-width: 1000px) {
  .bd-shop-trust__inner {
    grid-template-columns: 1fr 1fr;
  }
  .bd-shop-trust__help {
    grid-column: 1 / -1;
    border-left: 0;
    padding-left: 0;
    padding-top: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
  }
}

@media (max-width: 600px) {
  .bd-shop-trust__inner {
    grid-template-columns: 1fr;
  }
}

/* Mobile filter */
@media (max-width: 900px) {
  .bd-shop-sidebar {
    position: static;
    border-radius: 14px;
    padding: 18px 16px;
  }
}
