:root {
  --bs-home-green: #28531e;
  --bs-home-green-dark: #193f15;
  --bs-home-amber: #b9780f;
  --bs-home-cream: #f7f3f0;
  --bs-home-paper: #fffdf9;
  --bs-home-border: #e8e1d5;
  --bs-home-ink: #172016;
  --bs-home-muted: #62675f;
  --bs-home-major-gap: 0px;
  --bs-home-seller-gap: 6px;
}

.bs-managed-home-page { background: var(--bs-home-cream); }
.bs-managed-home-page .main-page-wrapper { padding-top: 0; }

.bs-home,
.bs-home * { box-sizing: border-box; }

.bs-home {
  width: 100%;
  overflow: clip;
  background: var(--bs-home-cream);
  color: var(--bs-home-ink);
  font-family: "Quicksand", Arial, sans-serif;
}

.bs-home a { color: inherit; text-decoration: none; }

.bs-home a:focus-visible,
.bs-home button:focus-visible {
  outline: 3px solid rgba(185, 120, 15, .55);
  outline-offset: 3px;
}

.bs-home-shell {
  width: min(100%, 1240px);
  margin-inline: auto;
  padding-inline: 24px;
}

.bs-home h1,
.bs-home h2,
.bs-home h3,
.bs-home p { margin-top: 0; }

.bs-home h1,
.bs-home h2 { font-family: Georgia, "Times New Roman", serif; }

.bs-home-hero {
  position: relative;
  min-height: clamp(275px, 26.8vw, 335px);
  display: flex;
  align-items: stretch;
  isolation: isolate;
  overflow: hidden;
  background: linear-gradient(105deg, #eee1c9 0%, #f6efe2 48%, #d4bf95 100%);
}

.bs-home-hero__media,
.bs-home-hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.bs-home-hero__media img {
  display: block;
  object-fit: cover;
  object-position: center 20%;
}

.bs-home-hero::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: linear-gradient(90deg, rgba(247, 239, 224, .94) 0%, rgba(247, 239, 224, .88) 29%, rgba(247, 239, 224, .62) 41%, rgba(247, 239, 224, .18) 54%, transparent 68%);
  pointer-events: none;
}

.bs-home-hero__inner {
  position: relative;
  z-index: 2;
  min-height: inherit;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-top: 28px;
  padding-bottom: 28px;
}

.bs-home-hero__content { width: min(48%, 520px); margin-left: 40px; transform: translateY(8px); }

.bs-home-hero__content h1 {
  max-width: 500px;
  margin-bottom: 12px;
  color: var(--bs-home-green-dark);
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 700;
  line-height: .98;
  letter-spacing: -1.8px;
}

.bs-home-hero__content h1::first-line { color: var(--bs-home-green-dark); }
.bs-home-hero__content h1 span { display: block; }
.bs-home-hero__content h1 span + span { color: var(--bs-home-amber); }

.bs-home-hero__content p {
  max-width: 220px;
  margin-bottom: 18px;
  color: #22281f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(15px, 1.55vw, 18px);
  line-height: 1.35;
}

.bs-home-hero__actions { display: flex; flex-wrap: wrap; gap: 18px; }

.bs-home-btn {
  min-height: 44px;
  padding: 0 21px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 700;
  transition: background-color .2s ease, color .2s ease, transform .2s ease;
}

.bs-home-hero__actions .bs-home-btn {
  min-height: 38px;
  padding: 0 7px;
  gap: 11px;
  border-radius: 6px;
  font-size: 12px;
}

.bs-home-btn:hover { transform: translateY(-1px); }
.bs-home-btn--primary { background: var(--bs-home-green-dark); color: #fff !important; }
.bs-home-btn--primary:hover { background: #2e6825; }
.bs-home-btn--secondary { border-color: var(--bs-home-green-dark); background: rgba(255, 255, 255, .55); color: var(--bs-home-green-dark) !important; }
.bs-home-hero__actions .bs-home-btn--secondary { min-width: 116px; }
.bs-home-btn--secondary:hover { background: #fff; }

.bs-home-hero__badge {
  width: 125px;
  min-width: 125px;
  aspect-ratio: 1;
  margin-right: 10px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 3px double var(--bs-home-green-dark);
  border-radius: 50%;
  background: rgba(255, 253, 244, .94);
  color: var(--bs-home-green-dark);
  text-align: center;
  text-transform: uppercase;
  box-shadow: 0 4px 18px rgba(31, 62, 20, .18);
  transform: translateY(32px);
}

.bs-home-hero__badge span { font-size: 10px; font-weight: 800; line-height: 1.35; }
.bs-home-hero__badge i { font-size: 18px; }

.bs-home-benefits { background: var(--bs-home-paper); }
.bs-home-benefits--top { border-bottom: 1px solid var(--bs-home-border); }
.bs-home-benefits--top .bs-home-benefit { min-height: 55px; padding-block: 6px; }

.bs-home-benefits__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.bs-home-benefit {
  min-width: 0;
  min-height: 66px;
  padding: 11px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  border-right: 1px solid var(--bs-home-border);
}

.bs-home-benefit:last-child { border-right: 0; }
a.bs-home-benefit:hover { background: #fbf7ef; }

.bs-home-benefit__icon {
  width: 36px;
  min-width: 36px;
  height: 40px;
  display: grid;
  place-items: center;
  color: var(--bs-home-green);
  font-size: 25px;
}

.bs-home-benefit__icon img { width: 36px; height: 36px; object-fit: contain; }
.bs-home-benefit__copy { min-width: 0; display: flex; flex-direction: column; }
.bs-home-benefit__copy strong { color: #1b2119; font-size: 12px; line-height: 1.25; }
.bs-home-benefit__copy small { margin-top: 3px; color: var(--bs-home-muted); font-size: 9px; line-height: 1.3; }

.bs-home-section { padding-top: 20px; }
.bs-home-benefits--top + .bs-home-section { padding-top: 14px; }
.bs-home-section:last-of-type { padding-bottom: 20px; }

.bs-home-section__header {
  min-height: 34px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.bs-home-section__header h2 {
  margin: 0;
  color: #1c2919;
  font-size: clamp(20px, 2vw, 25px);
  line-height: 1.1;
}

.bs-home-section__header p { margin: 5px 0 0; color: var(--bs-home-muted); font-size: 12px; }

.bs-home-section__header > a {
  padding: 6px 11px;
  border: 1px solid #cfc9be;
  border-radius: 5px;
  background: #fff;
  font-size: 10px;
  font-weight: 700;
}

.bs-home-section__header--center { justify-content: center; text-align: center; }

.bs-home-catalog-section { padding-top: 0; }
.bs-home-benefits--top + .bs-home-catalog-section { padding-top: 0; }

.bs-home-catalog-section[data-section-key="populer_kategoriler"],
.bs-home-catalog-section[data-section-key$="urunler"],
.bs-home-catalog-section[data-section-key="guvenilir_ureticiler"] {
  margin-top: var(--bs-home-major-gap);
}

.bs-home-catalog-section > .bs-home-shell {
  width: calc(100% - 40px);
  padding-inline: 13px;
  background: #fbf8f4;
  box-shadow: 0 3px 18px rgba(49, 40, 27, .035);
}

.bs-home-catalog-section .bs-home-section__header {
  min-height: 22px;
  margin-bottom: 8px;
}

.bs-home-catalog-section .bs-home-section__header h2 { font-size: 20px; line-height: 1.1; }

.bs-home-catalog-section[data-section-key="yoreler"] > .bs-home-shell {
  padding-top: 14px;
  padding-bottom: 12px;
  border-radius: 12px 12px 0 0;
}

.bs-home-catalog-section[data-section-key="yoreler"] .bs-home-section__header > a {
  padding: 4px 9px;
  font-size: 9px;
  line-height: 1;
}

.bs-home-catalog-section[data-section-key="populer_kategoriler"] > .bs-home-shell {
  padding-top: 4px;
  padding-bottom: 6px;
}

.bs-home-catalog-section[data-section-key="populer_kategoriler"] .bs-home-section__header { margin-bottom: 6px; }

.bs-home-catalog-section[data-section-key$="urunler"] > .bs-home-shell {
  padding-top: 6px;
  padding-bottom: 12px;
}

.bs-home-catalog-section[data-section-key$="urunler"] .bs-home-section__header { margin-bottom: 0; }

.bs-home-catalog-section[data-section-key="guvenilir_ureticiler"] > .bs-home-shell {
  margin-top: 0;
  padding-top: 6px;
  padding-bottom: 7px;
  border-radius: 12px;
}

.bs-home-catalog-section[data-section-key="guvenilir_ureticiler"] .bs-home-section__header { margin-bottom: 0; }
.bs-home-catalog-section[data-section-key="guvenilir_ureticiler"] .bs-home-section__header h2 { font-size: 18px; }
.bs-home-catalog-section[data-section-key="guvenilir_ureticiler"] .bs-home-section__header > a { padding: 4px 9px; font-size: 9px; line-height: 1; }

.bs-home-regions {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 13px;
}

.bs-home-region {
  min-width: 0;
  padding-bottom: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid var(--bs-home-border);
  border-radius: 10px;
  background: var(--bs-home-paper);
  box-shadow: 0 2px 7px rgba(49, 40, 27, .035);
  text-align: center;
  overflow: hidden;
}

.bs-home-region:hover { border-color: #b8aa91; transform: translateY(-1px); box-shadow: 0 5px 14px rgba(42, 50, 35, .08); }
.bs-home-region__media { width: 100%; aspect-ratio: 1.39; display: grid; place-items: center; background: #e8e3d5; color: var(--bs-home-green); font-size: 34px; overflow: hidden; }
.bs-home-region__media img { width: 100%; height: 100%; object-fit: cover; }
.bs-home-region strong { max-width: calc(100% - 8px); margin: 4px 4px 1px; overflow: hidden; font-family: Georgia, "Times New Roman", serif; font-size: 13px; line-height: 1.2; text-overflow: ellipsis; white-space: nowrap; }
.bs-home-region small { min-height: 30px; padding-inline: 7px; display: -webkit-box; overflow: hidden; color: #30362e; font-size: 8.5px; line-height: 1.18; -webkit-box-orient: vertical; -webkit-line-clamp: 3; }

.bs-home-categories {
  display: grid;
  grid-template-columns: repeat(10, minmax(0, 1fr));
  gap: 4px;
}

.bs-home-category { min-width: 0; display: flex; flex-direction: column; align-items: center; gap: 5px; text-align: center; }
.bs-home-category > span { width: 64px; height: 64px; display: grid; place-items: center; border-radius: 50%; background: #f0ece3; color: var(--bs-home-amber); font-size: 25px; overflow: hidden; }
.bs-home-category img { width: 64px; height: 64px; object-fit: cover; }
.bs-home-category strong { max-width: 100%; overflow: hidden; font-size: 9px; line-height: 1.2; text-overflow: clip; white-space: nowrap; }
.bs-home-category__more > i { display: flex; align-items: center; gap: 5px; }
.bs-home-category__more b { width: 4px; height: 4px; display: block; border-radius: 50%; background: #172016; }

.bs-home-products {
  display: grid;
  grid-auto-columns: calc((100% - 52px) / 5);
  grid-auto-flow: column;
  gap: 13px;
  margin-top: -3px;
  padding: 0 0 2px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline proximity;
  scrollbar-width: none;
}

.bs-home-products::-webkit-scrollbar { display: none; }
.bs-home-products:focus-visible { outline: 3px solid rgba(185, 120, 15, .45); outline-offset: 3px; }

.bs-home-product { min-width: 0; min-height: 250px; display: flex; flex-direction: column; scroll-snap-align: start; border: 1px solid var(--bs-home-border); border-radius: 9px; background: #fff; box-shadow: 0 2px 7px rgba(36, 43, 31, .035); overflow: hidden; }
.bs-home-product__media { position: relative; width: 100%; aspect-ratio: 1.52; display: grid; place-items: center; background: #ede8dd; color: var(--bs-home-green); font-size: 34px; overflow: hidden; }
.bs-home-product__media img { width: 100%; height: 100%; object-fit: cover; }
.bs-home-product__badge { position: absolute; top: 8px; left: 8px; z-index: 1; min-width: 34px; padding: 4px 7px; border-radius: 12px; background: var(--bs-home-amber); color: #fff; font-size: 9px; font-weight: 800; text-align: center; }
.bs-home-product__body { min-height: 0; padding: 7px 8px 7px; display: flex; flex: 1; flex-direction: column; }
.bs-home-product__body h3 { min-height: 29px; margin: 0 0 3px; display: -webkit-box; overflow: hidden; font-family: inherit; font-size: 10.5px; font-weight: 700; line-height: 1.3; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.bs-home-product__seller { min-height: 32px; display: flex; align-items: center; gap: 6px; overflow: hidden; color: #343a32; }
.bs-home-product__seller--empty { visibility: hidden; }
.bs-home-product__avatar { width: 24px; min-width: 24px; height: 24px; display: grid; place-items: center; overflow: hidden; border-radius: 50%; background: #e3e7da; color: var(--bs-home-green); font-size: 10px; }
.bs-home-product__avatar img { width: 100%; height: 100%; display: block; object-fit: cover; }
.bs-home-product__seller-copy { min-width: 0; display: flex; flex: 1; flex-direction: column; line-height: 1.15; }
.bs-home-product__seller-copy > a,
.bs-home-product__seller-copy > span { overflow: hidden; font-size: 8.5px; font-weight: 700; text-overflow: ellipsis; white-space: nowrap; }
.bs-home-product__seller-copy small { margin-top: 2px; overflow: hidden; color: #5c6258; font-size: 8px; text-overflow: ellipsis; white-space: nowrap; }
.bs-home-product__seller-copy small i { margin-right: 3px; color: #b54b43; }
.bs-home-product__rating { min-height: 15px; display: flex; align-items: center; gap: 3px; color: #4b5148; font-size: 8.5px; }
.bs-home-product__rating i { color: #e79b12; }
.bs-home-product__rating--empty { visibility: hidden; }
.bs-home-product__footer { min-height: 29px; margin-top: auto; display: flex; align-items: flex-end; justify-content: space-between; gap: 7px; }
.bs-home-product__prices { min-width: 0; display: flex; flex-direction: column; }
.bs-home-product__prices del { color: #8b8e87; font-size: 9px; line-height: 1.1; }
.bs-home-product__prices strong { color: #182416; font-size: 15px; line-height: 1.15; white-space: nowrap; }
.bs-home a.bs-home-product__action { width: 31px; min-width: 31px; height: 29px; display: grid; place-items: center; border-radius: 5px; background: var(--bs-home-green-dark); color: #fff; font-size: 12px; }
.bs-home-product__action:hover { background: #2e6825; }

@media (min-width: 761px) {
  .bs-home-catalog-section[data-section-key$="urunler"] > .bs-home-shell {
    width: min(calc(100% - 40px), 1240px);
  }

  .bs-home-catalog-section[data-section-key="guvenilir_ureticiler"] > .bs-home-shell {
    width: min(calc(100% - 40px), 1240px);
  }
}

.bs-home-producers { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 12px; }
.bs-home-producers::-webkit-scrollbar { display: none; }
.bs-home-producers:focus-visible { outline: 3px solid rgba(185, 120, 15, .45); outline-offset: 3px; }
.bs-home-producer { min-width: 0; min-height: 86px; padding: 7px; display: flex; align-items: center; gap: 5px; border: 1px solid var(--bs-home-border); border-radius: 9px; background: #fff; box-shadow: 0 2px 7px rgba(36, 43, 31, .025); }
.bs-home-producer__media { width: 60px; min-width: 60px; height: 60px; display: grid; align-self: flex-start; place-items: center; overflow: hidden; border: 1px solid #d9cfbc; border-radius: 50%; background: #fffdf8; color: var(--bs-home-green); font-size: 24px; }
.bs-home-producer img { width: 100%; height: 100%; display: block; object-fit: cover; }
.bs-home-producer__copy { min-width: 0; display: flex; align-items: flex-start; flex: 1; flex-direction: column; overflow: hidden; line-height: 1.15; }
.bs-home-producer strong { min-height: 23px; max-width: 100%; display: -webkit-box; overflow: hidden; font-size: 8.5px; font-weight: 700; line-height: 1.25; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.bs-home-producer small { max-width: 100%; overflow: hidden; color: #454b42; font-size: 8px; text-overflow: ellipsis; white-space: nowrap; }
.bs-home-producer__location { margin-bottom: 1px; }
.bs-home-producer__location i { margin-right: 3px; color: #b54b43; }
.bs-home-producer__count { margin-top: 1px; }
.bs-home-producer__rating { min-height: 13px; margin-top: 1px; }
.bs-home-producer__rating i { margin-right: 3px; color: #e79b12; }
.bs-home-catalog-section[data-section-key="guvenilir_ureticiler"] + .bs-home-how { margin-top: calc(13px + var(--bs-home-major-gap)); }

.bs-home-how { margin-top: 31px; padding: 0; background: transparent; border: 0; }
.bs-home-how > .bs-home-shell { width: min(calc(100% - 104px), 1160px); min-height: 143px; padding: 18px 18px 13px; border: 1px solid var(--bs-home-border); border-radius: 14px; background: rgba(255, 253, 249, .7); box-shadow: 0 7px 24px rgba(53, 59, 46, .035); }
.bs-home-how .bs-home-section__header { min-height: 25px; margin-bottom: 4px; }
.bs-home-how .bs-home-section__header h2 { font-size: 20px; }
.bs-home-how__list { margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); list-style: none; }
.bs-home-how__list li { position: relative; min-width: 0; min-height: 66px; padding: 5px 12px; display: grid; grid-template-columns: 22px 48px 1fr; align-items: center; gap: 9px; }
.bs-home-how__list li:not(:last-child)::after { position: absolute; right: -5px; content: "→"; color: #78936e; font-size: 18px; }
.bs-home-how__number { width: 20px; height: 20px; display: grid; place-items: center; border-radius: 50%; background: var(--bs-home-green); color: #fff; font-size: 9px; font-weight: 800; }
.bs-home-how__icon { position: relative; isolation: isolate; width: 48px; height: 48px; display: grid; place-items: center; color: var(--bs-home-green); font-size: 34px; text-align: center; }
.bs-home-how__icon::before { position: absolute; z-index: -1; width: 38px; height: 29px; border-radius: 48% 52% 55% 45%; background: #f0e5c9; content: ""; transform: rotate(-9deg); }
.bs-home-how__icon img { width: 48px; height: 48px; object-fit: contain; }
.bs-home-how__list li:nth-child(4) .bs-home-how__icon { color: #b27b28; }
.bs-home-how__list strong, .bs-home-how__list small { display: block; }
.bs-home-how__list strong { font-size: 11px; }
.bs-home-how__list small { margin-top: 4px; color: var(--bs-home-muted); font-size: 9px; line-height: 1.3; }

.bs-home-seller { margin-top: var(--bs-home-seller-gap); padding: 12px 0 10px; }
.bs-home-seller__inner { width: min(calc(100% - 64px), 1180px); height: 102px; min-height: 102px; padding: 0; display: grid; grid-template-columns: 270px 1fr minmax(292px, .86fr); align-items: center; gap: 22px; border: 1px solid #c9b88d; border-radius: 14px; background: linear-gradient(100deg, #f5eedc, #fffdf7); overflow: visible; }
.bs-home-seller__art { position: relative; min-width: 0; align-self: stretch; background: transparent; color: var(--bs-home-green); border-radius: 13px 0 0 13px; }
.bs-home-seller__art img { position: absolute; left: 0; bottom: 0; z-index: 1; width: 282px; max-width: none; height: 126px; display: block; object-fit: cover; object-position: left bottom; }
.bs-home-seller__art--reference img {
  mix-blend-mode: darken;
  -webkit-mask-image: radial-gradient(ellipse 85% 115% at 26% 58%, #000 0%, #000 66%, rgba(0, 0, 0, .82) 78%, transparent 100%);
  mask-image: radial-gradient(ellipse 85% 115% at 26% 58%, #000 0%, #000 66%, rgba(0, 0, 0, .82) 78%, transparent 100%);
}
.bs-home-seller__art--panel { overflow: hidden; }
.bs-home-seller__art--panel img { inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.bs-home-seller__copy h2 { margin-bottom: 4px; color: var(--bs-home-green-dark); font-size: 24px; line-height: 1.08; }
.bs-home-seller__copy p { margin: 0; max-width: 430px; color: #3d4439; font-size: 11px; line-height: 1.45; }
.bs-home-seller__action { padding-right: 62px; }
.bs-home-seller__action .bs-home-btn { width: 100%; min-height: 34px; border-radius: 6px; font-size: 11px; }
.bs-home-seller__action ul { margin: 9px 0 0; padding: 0; display: flex; justify-content: space-between; gap: 9px; list-style: none; }
.bs-home-seller__action li { color: #4c5548; font-size: 9px; white-space: nowrap; }
.bs-home-seller__action li i { width: 12px; min-width: 12px; height: 12px; margin-right: 4px; display: inline-grid; place-items: center; color: var(--bs-home-green); font-size: 10px; line-height: 1; }

.bs-home-benefits--bottom { margin-top: 0; border-top: 0; }
.bs-home-benefits--bottom .bs-home-benefit { height: 50px; min-height: 50px; padding-block: 4px; }
.bs-home-benefits--bottom .bs-home-benefit__icon { width: 34px; min-width: 34px; height: 40px; font-size: 24px; }

@media (max-width: 1000px) {
  .bs-home-regions { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .bs-home-products { grid-auto-columns: calc((100% - 26px) / 3); }
  .bs-home-producers { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .bs-home-how__list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .bs-home-how__list li:nth-child(2)::after { display: none; }
  .bs-home-how > .bs-home-shell { width: calc(100% - 48px); }
  .bs-home-seller__inner { width: calc(100% - 48px); height: auto; grid-template-columns: 180px 1fr; }
  .bs-home-seller__action { grid-column: 1 / -1; padding: 0 25px 20px; }
}

@media (min-width: 761px) and (max-width: 1000px) {
  .bs-home-seller__art { min-height: 80px; overflow: hidden; }
  .bs-home-seller__art img { inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: left center; }
  .bs-home-seller__art--panel img { object-position: center; }
}

@media (min-width: 901px) {
  .bs-home-hero__media img { object-position: 50% 26%; }
  .bs-home-hero__badge {
    width: 112px;
    min-width: 112px;
    padding: 14px;
    transform: translateY(42px);
  }
  .bs-home-hero__badge span { font-size: 9px; }
  .bs-home-benefits--top .bs-home-benefit {
    justify-content: flex-start;
    gap: 10px;
    padding-inline: 10px;
  }
  .bs-home-benefits--top .bs-home-benefit__icon {
    width: 24px;
    min-width: 24px;
    height: 34px;
    font-size: 22px;
  }
  .bs-home-benefits--top .bs-home-benefit__icon img { width: 24px; height: 24px; }
}

@media (min-width: 1001px) {
  .bs-home-hero__content { margin-left: 30px; }
  .bs-home-seller__action { padding-right: 67px; transform: translateX(-14px); }
  .bs-home-seller__art--reference { clip-path: inset(-34px -36px 0 0); }
  .bs-home-seller__art--reference img {
    left: -6px;
    width: 274px;
    height: 122px;
    -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 58%, transparent 100%);
    mask-image: linear-gradient(90deg, #000 0%, #000 58%, transparent 100%);
  }
}

@media (min-width: 1280px) {
  .bs-home { --bs-home-major-gap: 8px; --bs-home-seller-gap: 8px; }
  .bs-home-hero { min-height: 315px; }

  .bs-home-catalog-section > .bs-home-shell,
  .bs-home-how > .bs-home-shell,
  .bs-home-seller__inner,
  .bs-home-benefits--bottom > .bs-home-shell {
    width: min(calc(100% - 40px), 1240px);
  }

  .bs-home-how > .bs-home-shell { padding-inline: 58px; }

  .bs-home-seller__inner {
    grid-template-columns: 270px minmax(0, 464px) minmax(292px, 400px);
    justify-content: center;
  }

  .bs-home-seller__art--reference { clip-path: inset(-34px -36px 0 -31px); }
  .bs-home-seller__art--reference img { left: -31px; }
}

@media (max-width: 760px) {
  .bs-home { --bs-home-major-gap: 4px; --bs-home-seller-gap: 4px; }
  .bs-home-shell { padding-inline: 15px; }
  .bs-home-hero { min-height: 370px; }
  .bs-home-hero::after { background: linear-gradient(90deg, rgba(244, 234, 216, .96) 0%, rgba(244, 234, 216, .89) 47%, rgba(244, 234, 216, .5) 76%, rgba(244, 234, 216, .3) 100%); }
  .bs-home-hero__media img { object-position: 50% center; opacity: .78; }
  .bs-home-hero__inner { align-items: flex-start; padding-top: 42px; }
  .bs-home-hero__content { width: 100%; max-width: 520px; margin-left: 0; transform: none; }
  .bs-home-hero__content h1 { max-width: 420px; font-size: clamp(31px, 8.8vw, 40px); line-height: 1.02; }
  .bs-home-hero__actions .bs-home-btn { min-height: 44px; }
  .bs-home-hero__badge { position: absolute; right: 14px; bottom: 18px; width: 88px; min-width: 88px; padding: 10px; transform: none; }
  .bs-home-hero__badge span { font-size: 8px; }
  .bs-home-benefits__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .bs-home-benefit:nth-child(2) { border-right: 0; }
  .bs-home-benefit:nth-child(-n+2) { border-bottom: 1px solid var(--bs-home-border); }
  .bs-home-regions {
    grid-template-columns: none;
    grid-auto-columns: 232px;
    grid-auto-flow: column;
    justify-content: start;
    gap: 11px;
    padding-right: 4px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-padding-inline-start: 0;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
  }
  .bs-home-regions::-webkit-scrollbar { display: none; }
  .bs-home-region { scroll-snap-align: start; }
  .bs-home-region__media { aspect-ratio: auto; height: 146px; }
  .bs-home-region strong { margin-top: 5px; }
  .bs-home-region small { min-height: 31px; font-size: 9px; }
  .bs-home-categories { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px 4px; }
  .bs-home-category:nth-child(9) { grid-column: 2; }
  .bs-home-category:nth-child(10) { grid-column: 3; }
  .bs-home-category strong {
    min-height: 24px;
    display: -webkit-box;
    overflow: hidden;
    line-height: 1.25;
    text-overflow: clip;
    white-space: normal;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
  .bs-home-catalog-section > .bs-home-shell { width: calc(100% - 20px); padding-inline: 10px; }
  .bs-home-catalog-section .bs-home-section__header { gap: 10px; }
  .bs-home-catalog-section .bs-home-section__header h2 { min-width: 0; font-size: 18px; }
  .bs-home-catalog-section .bs-home-section__header > a { flex: 0 0 auto; }
  .bs-home-catalog-section[data-section-key="yoreler"] .bs-home-section__header { gap: 6px; }
  .bs-home-catalog-section[data-section-key="yoreler"] .bs-home-section__header > a { padding: 5px 7px; font-size: 8px; }
  .bs-home-products { grid-auto-columns: 216px; gap: 11px; padding-right: 4px; }
  .bs-home-product { min-height: 260px; }
  .bs-home-product__media { height: 126px; aspect-ratio: auto; }
  .bs-home-product__body { padding: 7px 8px 8px; }
  .bs-home-product__body h3 { min-height: 30px; margin-bottom: 3px; font-size: 11px; }
  .bs-home-product__seller { min-height: 35px; }
  .bs-home-product__seller-copy > a,
  .bs-home-product__seller-copy > span { font-size: 9px; }
  .bs-home-product__seller-copy small { font-size: 8.5px; }
  .bs-home-product__rating { min-height: 17px; font-size: 9px; }
  .bs-home-product__footer { min-height: 32px; }
  .bs-home-producers {
    grid-template-columns: none;
    grid-auto-columns: 220px;
    grid-auto-flow: column;
    justify-content: start;
    gap: 11px;
    padding-right: 4px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-padding-inline-start: 0;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
  }
  .bs-home-producer { min-height: 82px; scroll-snap-align: start; }
  .bs-home-producer__media { width: 56px; min-width: 56px; height: 56px; }
  .bs-home-catalog-section[data-section-key="guvenilir_ureticiler"] .bs-home-section__header h2 { font-size: 16px; }
  .bs-home-how { margin-top: 20px; }
  .bs-home-how > .bs-home-shell { width: calc(100% - 30px); min-height: 0; padding: 12px 10px 11px; }
  .bs-home-how .bs-home-section__header { min-height: 22px; margin-bottom: 3px; }
  .bs-home-how .bs-home-section__header h2 { font-size: 18px; }
  .bs-home-how__list { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 6px 8px; }
  .bs-home-how__list li {
    min-height: 110px;
    padding: 7px 6px;
    grid-template-columns: 20px 38px;
    grid-template-rows: 42px auto;
    align-items: center;
    justify-content: center;
    gap: 3px 7px;
    text-align: center;
  }
  .bs-home-how__number { width: 19px; height: 19px; }
  .bs-home-how__icon { width: 38px; height: 38px; font-size: 27px; }
  .bs-home-how__icon img { width: 38px; height: 38px; }
  .bs-home-how__list li > div { min-width: 0; grid-column: 1 / -1; align-self: start; }
  .bs-home-how__list strong { font-size: 10px; line-height: 1.25; }
  .bs-home-how__list small { margin-top: 2px; font-size: 8px; line-height: 1.25; }
  .bs-home-how__list li::after { display: none; }
  .bs-home-seller { padding: 10px 0; }
  .bs-home-seller__inner { width: calc(100% - 30px); grid-template-columns: 1fr; gap: 0; padding-right: 0; padding-bottom: 0; padding-left: 0; }
  .bs-home-seller__art { min-height: 105px; max-height: 118px; overflow: hidden; }
  .bs-home-seller__art img { inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: left center; }
  .bs-home-seller__art--panel img { object-position: center; }
  .bs-home-seller__copy { padding: 15px 18px 9px; text-align: center; }
  .bs-home-seller__copy h2 { font-size: 23px; line-height: 1.1; }
  .bs-home-seller__action { padding: 0 12px 12px; }
  .bs-home-seller__action .bs-home-btn { min-height: 44px; }
  .bs-home-seller__action ul { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); align-items: start; gap: 6px; }
  .bs-home-seller__action li { min-width: 0; display: flex; align-items: flex-start; justify-content: center; white-space: normal; text-align: center; line-height: 1.3; }
}

@media (max-width: 380px) {
  .bs-home-hero { min-height: 380px; }
  .bs-home-hero__content h1 { font-size: 30px; letter-spacing: -1px; }
  .bs-home-hero__actions { gap: 8px; }
  .bs-home-btn,
  .bs-home-hero__actions .bs-home-btn { padding-inline: 14px; font-size: 11px; }
  .bs-home-benefit { padding-inline: 10px; }
  .bs-home-benefit__icon { width: 30px; min-width: 30px; font-size: 21px; }
  .bs-home-region strong { font-size: 12px; }
  .bs-home-seller__action ul { flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 350px) {
  .bs-home-benefit { gap: 8px; }
}

@media (max-width: 640px) {
  .bs-home-hero {
    min-height: 480px;
    background: #f4ead8;
  }
  .bs-home-hero__media {
    inset: auto 0 0;
    height: 235px;
  }
  .bs-home-hero__media img {
    object-position: right center;
    opacity: .94;
  }
  .bs-home-hero::after {
    background: linear-gradient(180deg, #f4ead8 0%, #f4ead8 48%, rgba(244, 234, 216, .68) 57%, rgba(244, 234, 216, .12) 78%, rgba(244, 234, 216, .04) 100%);
  }
  .bs-home-hero__inner { padding-top: 30px; }
  .bs-home-hero__content p { max-width: 270px; }
  .bs-home-hero__badge { right: 12px; bottom: 12px; width: 82px; min-width: 82px; padding: 9px; }
}
