/* Оверлей */
.basket-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.basket-overlay__box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background: #fff;
  border-radius: 16px;
  padding: 40px 56px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
}

.basket-overlay__text {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #333;
  letter-spacing: 0.01em;
}

/* Спиннер */
.basket-spinner {
  width: 52px;
  height: 52px;
  border: 4px solid #e0e0e0;
  border-top-color: #66c1e0;
  border-radius: 50%;
  animation: basket-spin 0.75s linear infinite;
}

@keyframes basket-spin {
  to { transform: rotate(360deg); }
}

/* Плавное появление/исчезновение */
.overlay-fade-enter-active,
.overlay-fade-leave-active {
  transition: opacity 0.25s ease;
}
.overlay-fade-enter-from,
.overlay-fade-leave-to {
  opacity: 0;
}

.basket-count-item {
  padding: 0 15px;
  background: #fff;
  border: 1px solid #EBEBEB;
  border-radius: 15px;
  color: #333;
  font-size: 14px;
  transition: all 0.3s linear;
}