/* ————————————————————————————————————————————
   0. Центрированное toast-уведомление
   ———————————————————————————————————————————— */
.uc-toast {
  position: fixed !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) scale(1.3) !important;
  transform-origin: center center !important;
  max-width: none !important;
  width: auto !important;
  padding: 16px 20px !important;
  background: #264969 !important;
  color: #fff !important;
  font-family: "Tilda Sans", sans-serif !important;
  font-size: 18px !important;
  border-radius: 4px !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2) !important;
  opacity: 0 !important;
  transition: opacity 0.3s ease, transform 0.3s ease !important;
  z-index: 10000 !important;
}
.uc-toast.show {
  opacity: 1 !important;
  transform: translate(-50%, -50%) scale(1.3) !important;
}
@media (max-width: 768px) {
  .uc-toast {
    font-size: 12px !important;
    padding: 12px 16px !important;
  }
}

/* ————————————————————————————————————————————
   1. Динамические числа в правом блоке корзины
   ———————————————————————————————————————————— */
/* Стоимость товаров, доставки, подъёма, склада и км */
.uc-custom-orderform__amount,
.uc-custom-orderform__delivery,
.uc-custom-orderform__lift,
.uc-custom-orderform__warehouse,
.uc-custom-orderform__distance {
  font-family: "Tilda Sans", sans-serif !important;
  font-size: 18px !important;
  font-weight: 400 !important;
  color: #264969 !important;
  line-height: 1.4 !important;
  margin: 0 !important;
  padding: 0 !important;
}
/* Итоговая сумма (большой Unbounded) */
.uc-custom-orderform__total {
  font-family: "Unbounded", sans-serif !important;
  font-size: 35px !important;
  font-weight: 700 !important;
  color: #264969 !important;
  line-height: 1.2 !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* ————————————————————————————————————————————
   2. Числа в шапке сайта
   ———————————————————————————————————————————— */
/* Количество товаров в корзине */
.uc-cart-count {
  font-family: "Tilda Sans", sans-serif !important;
  font-size: 15px !important;
  font-weight: 400 !important;
  color: #FFFFFF !important;
  line-height: 1 !important;
}

/* Сумма в шапке корзины */
.uc-cart-total {
  font-family: "Unbounded", sans-serif !important;
  font-size: 20px !important;
  font-weight: 400 !important;
  color: #264969 !important;
  line-height: 1 !important;
}
