.bs {
  background: #FDF6EE;
  padding: 96px 0;
  position: relative;
}

.bs__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 900px) { .bs__inner { padding: 0 48px; } }

.bs__header {
  max-width: 760px;
  margin: 0 0 64px;
}

.bs__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6B655F;
}

.bs__eyebrow-num {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0;
  color: #C63A22;
  text-transform: none;
}

.bs__eyebrow-divider {
  display: inline-block;
  width: 28px;
  height: 1px;
  background: #2A1F1A;
  opacity: 0.4;
}

.bs__heading {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #2A1F1A;
  margin: 0 0 18px;
}

.bs__highlight {
  position: relative;
  display: inline-block;
}

@media (min-width: 900px) {
  .bs__highlight { white-space: nowrap; }
}

.bs__highlight em { font-style: italic; font-weight: 500; }

.bs__swash {
  position: absolute;
  left: -1%;
  bottom: -0.12em;
  width: 102%;
  height: 0.28em;
  color: #C63A22;
  pointer-events: none;
}

.bs__subhead {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  color: #4A3F38;
  line-height: 1.5;
  margin: 0;
}

.bs__subhead em { font-style: italic; }

.bs__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 12px;
}

@media (min-width: 750px) {
  .bs__grid { grid-template-columns: repeat(4, 1fr); gap: 32px; }
}

.bs__card {
  position: relative;
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.bs__card:hover {
  transform: translateY(-4px) rotate(-0.3deg);
}

.bs__card-num {
  position: absolute;
  top: -8px;
  left: 0;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 14px;
  font-weight: 400;
  color: #C63A22;
  z-index: 1;
  letter-spacing: 0;
}

.bs__card-image {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #F4E8D7;
  border-radius: 2px;
  margin-bottom: 14px;
}

.bs__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.bs__card:hover .bs__card-image img {
  transform: scale(1.05);
}

.bs__card-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #C63A22;
  color: #FFFFFF;
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 4px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 2px 8px -2px rgba(198, 58, 34, 0.4);
}

.bs__card-tag em { font-style: normal; }

.bs__card-info {
  padding: 0 4px;
}

.bs__card-title {
  margin: 0 0 6px;
  font-family: 'Fraunces', serif;
  font-size: 16px;
  font-weight: 500;
  color: #2A1F1A;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.bs__card-title em { font-style: italic; }

.bs__card-price {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #2A1F1A;
}

.bs__card-price-now { margin-right: 8px; }

.bs__card-price-was {
  color: #6B655F;
  font-weight: 400;
  text-decoration: line-through;
}

.bs__view-all {
  text-align: center;
  margin-top: 64px;
}

.bs__view-all-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Fraunces', serif;
  font-size: 18px;
  color: #2A1F1A;
  text-decoration: none;
  border-bottom: 1px solid #2A1F1A;
  padding-bottom: 4px;
  transition: color 0.2s ease, border-color 0.2s ease, gap 0.2s ease;
}

.bs__view-all-link em { font-style: italic; }

.bs__view-all-link:hover {
  color: #C63A22;
  border-color: #C63A22;
  gap: 14px;
}

.bs__empty {
  background: #FFF8EE;
  border: 1px dashed #C63A22;
  border-radius: 8px;
  padding: 32px 24px;
  text-align: center;
}

.bs__empty-text {
  margin: 0;
  font-family: 'Fraunces', serif;
  font-size: 16px;
  color: #4A3F38;
}

.bs__visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.bs__empty-text em { font-style: italic; }
