.cart-btn .count {
  position: absolute;
  height: 20px;
  width: 20px;
  display: inline-flex;
  top: 0;
  left: 100%;
  transform: translate(-50%, -50%);
  background-color: #66c8a4;
  justify-content: center;
  align-items: center;
  color: #212121;
  font-size: 14px;
  border-radius: 400px;
  transition: all ease 1s;
  z-index: 9999;
}

.cart .count {
  position: absolute;
  height: 25px;
  width: 25px;
  background-color: #66c8a4;
  border-radius: 500px;
  font-size: 12px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  bottom: -20px;
  left: -20px;
  color: #100b00;
  transform: translate(50%, -50%);
  z-index: 1;
}

.m-width-900{
  min-width: 900px;
}

.qty-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.qty-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-size: 18px;
  font-weight: bold;
  border: none;
  border-radius: 8px; /* Умеренно закругленные углы */
  background-image: linear-gradient(135deg, #3E4248, #2A2E32);
  color: white;
  cursor: pointer;
  box-shadow: 8px 8px 22px rgba(21, 22, 24, 0.38), -4px -2px 16px rgba(195, 200, 205, 0.08);
  transition: all 0.3s ease-in-out;
}

.qty-btn:active {
  background-image: linear-gradient(135deg, #2A2E32, #3E4248);
}

.qty-btn.minus {
  border-radius: 8px 0 0 8px; /* Закругляем только левый край */
}

.qty-btn.plus {
  border-radius: 0 8px 8px 0; /* Закругляем только правый край */
}

.qty-input {
  width: 80px;
  height: 40px;
  text-align: center;
  border: 1px solid #3E4248;
  border-radius: 8px;
  background-color: #2c2d2f;
  color: white;
  box-shadow: inset 2px 2px 8px rgba(4, 4, 5, 0.6);
  transition: 0.3s ease-in-out;
  -moz-appearance: textfield; /* Убирает стрелки в Firefox */
  -webkit-appearance: none; /* Убирает стрелки в Chrome, Safari и других WebKit-браузерах */
  appearance: none; /* Убирает стрелки во всех браузерах (если поддерживается) */
}

.qty-input::-webkit-inner-spin-button,
.qty-input::-webkit-outer-spin-button {
  -webkit-appearance: none; /* Убирает стрелки в WebKit-браузерах */
  margin: 0; /* Убирает отступы */
}

.qty-input:focus {
  outline: none;
  background-color: #3E4248;
  color: #d7e1ec;
}
