/* ========================================
   BeeBeauty — Hero Slider
   ======================================== */

/* Слайдер на всю ширину */
#masthead { margin-bottom: 0 !important; }

.bee-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--bee-bg2, #F5F1ED);
  display: block;
  padding: 0;
  aspect-ratio: 1920 / 700;
}

/* Track */
.bee-slider__track {
  display: flex;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

/* Один слайд */
.bee-slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
}

/* Посилання-обгортка */
.bee-slide__link {
  display: block;
  line-height: 0;
  height: 100%;
}

/* Картинка — заповнює слайдер по висоті */
.bee-slide__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Контент поверх картинки */
.bee-slide__content {
  position: absolute;
  z-index: 1;
  padding: 0 clamp(24px, 6vw, 100px);
  max-width: 600px;
  top: 50%;
  transform: translateY(-50%);
}

.bee-slide__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 600;
  color: #ffffff;
  line-height: 1.15;
  margin: 0 0 12px;
  letter-spacing: 0.02em;
}

.bee-slide__subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(13px, 1.8vw, 17px);
  font-weight: 400;
  color: rgba(255,255,255,0.88);
  margin: 0 0 28px;
  letter-spacing: 0.04em;
  line-height: 1.6;
}

.bee-slide__btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.bee-slide__btn {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 13px 28px;
  border-radius: 3px;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
  cursor: pointer;
}

.bee-slide__btn--primary {
  background: #ffffff;
  color: #2B211C;
  border: 1px solid transparent;
}

.bee-slide__btn--primary:hover {
  background: #D8C2A6;
  color: #2B211C;
}

.bee-slide__btn--secondary {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.7);
}

.bee-slide__btn--secondary:hover {
  background: rgba(255,255,255,0.15);
  border-color: #ffffff;
}

/* Стрілки — приховані */
.bee-slider__arrow {
  display: none;
}

/* Точки */
.bee-slider__dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.bee-slider__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}

.bee-slider__dot.is-active {
  background: #ffffff;
  transform: scale(1.3);
}

/* Планшет */
@media (max-width: 900px) {
  .bee-slide__content {
    max-width: 420px;
  }
}

/* Мобільний */
@media (max-width: 768px) {
  .bee-slide__content {
    padding: 0 16px;
    max-width: 80%;
  }

  .bee-slider__arrow { display: none; }

  .bee-slide__btn {
    padding: 10px 18px;
    font-size: 11px;
  }
}

@media (max-width: 480px) {
  .bee-slide__title { font-size: 20px; }
  .bee-slide__subtitle { font-size: 11px; margin-bottom: 16px; }
  .bee-slide__btns { gap: 8px; }
  .bee-slide__btn { padding: 9px 14px; }
}
