/* ========================================
   BeeBeauty — Топ продажів
   ======================================== */

.bee-featured {
  width: 100vw;
  position: relative;
  left: 50%;
  margin-left: -50vw;
  padding: 48px 0 56px;
  background: var(--bee-white, #fff);
}

.bee-featured__inner {
  width: 100%;
  padding: 0 clamp(16px, 3vw, 56px);
}

.bee-featured__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 600;
  color: #2B211C;
  letter-spacing: 0.03em;
  margin: 0 0 32px;
  text-align: center;
}

/* Горизонтальний скрол */
.bee-featured__grid {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 12px;
  scrollbar-width: thin;
  scrollbar-color: #C9BDB4 #F0EBE5;
}

.bee-featured__grid::-webkit-scrollbar {
  height: 4px;
}

.bee-featured__grid::-webkit-scrollbar-track {
  background: #F0EBE5;
  border-radius: 2px;
}

.bee-featured__grid::-webkit-scrollbar-thumb {
  background: #C9BDB4;
  border-radius: 2px;
}

/* ---- Картка товару ---- */
.bee-product-card {
  display: flex;
  flex-direction: column;
  flex: 0 0 220px;
  scroll-snap-align: start;
  text-decoration: none;
  color: #2B211C;
  border: 1px solid #E8E0D8;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  position: relative;
}


/* Зображення */
.bee-product-card__img-wrap {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #F5F1ED;
}

.bee-product-card__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: #fff;
}

/* Бейдж Sale */
.bee-product-card__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #2B211C;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 2px;
}

/* Інфо */
.bee-product-card__info {
  padding: 12px 14px 8px;
  flex: 1;
}

.bee-product-card__name {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #2B211C;
  line-height: 1.4;
  margin: 0 0 6px;
  letter-spacing: 0.02em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.bee-product-card__price {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #2B211C;
  letter-spacing: 0.02em;
}

.bee-product-card__price del {
  color: #7D746D;
  font-weight: 400;
  margin-right: 4px;
}

.bee-product-card__price ins {
  text-decoration: none;
  color: #2B211C;
}

/* Кнопка "До кошика" — прихована */
.bee-product-card__btn {
  display: none;
}

.bee-product-card__btn-hidden {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 100%;
  padding: 11px 14px;
  background: #F7F4F1;
  border: none;
  border-top: 1px solid #E8E0D8;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2B211C;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
  flex-shrink: 0;
}

.bee-product-card:hover .bee-product-card__btn,
.bee-product-card__btn:hover {
  background: #2B211C;
  color: #fff;
}

/* ---- Раніше ви дивилися ---- */
.bee-recently-viewed {
  background: #F7F4F1;
}

/* ======================================
   Адаптив
   ====================================== */
@media (max-width: 900px) {
  .bee-featured { padding: 36px 0 44px; }
  .bee-product-card { flex: 0 0 180px; }
}

@media (max-width: 600px) {
  .bee-featured { padding: 28px 0 36px; }
  .bee-featured__title { margin-bottom: 20px; }
  .bee-product-card { flex: 0 0 160px; }
}
