/* Хост в подвале: не занимает место в потоке */
.fresha-cart-host {
  position: static;
  width: 0;
  height: 0;
  overflow: visible;
}

.fresha-cart-host[hidden] {
  display: none !important;
}

/* Корзина — правый нижний угол экрана */
.fresha-cart {
  position: fixed;
  bottom: 25px;
  right: 86px;
  z-index: 9990;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
}

.fresha-booking.fresha-booking--overlay-open .fresha-cart {
  z-index: 9990;
}

.fresha-booking.fresha-booking--overlay-open .fresha-cart.is-visible,
body.fresha-overlay-open .fresha-cart.is-visible {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.fresha-cart.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.fresha-cart__btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border: none;
  border-radius: var(--fresha-radius);
  background: #d69838;
  /* background: var(--fresha-accent); */
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(214, 163, 84, 0.35);
  min-height: 50px;
  ;
}

.fresha-cart__btn:hover {
  filter: brightness(1.06);
}

.fresha-cart__btn i {
  font-size: 18px;
}

.fresha-cart__count {
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 11px;
  background: #fff;
  color: var(--fresha-accent);
  font-size: 12px;
  font-weight: 700;
  line-height: 22px;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .fresha-cart {
    bottom: 15px;
    right: 66px;
  }

  .fresha-cart__btn {
    height: 40px;
    min-height: 40px;
    padding: 0 14px;
    gap: 8px;
  }
}

