.button-with-icon {
display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px; /* расстояние между иконкой и текстом */
  line-height: 1;
}

.button-with-icon svg {
  display: inline-block;
  vertical-align: middle;
  margin-top: -1px; /* тонкая настройка по вертикали */
}


.to-cart.in_cart {
    width: 88%!important;
    background-color: #35B640!important;
    background-image: -webkit-linear-gradient(#35B640, #379B38)!important;
    background-image: linear-gradient(#35B640, #379B38)!important;
    text-decoration: none!important;
}


.common_button_add {
	min-width: 250px;
}

/*стиль кнопки наличия в магазинах*/
.store-name a {
  color: #812991;
  text-decoration: none;
  font-weight: 500;
}

.store-name a:hover {
  text-decoration: none;
}

.stockinfo-button {
  flex: 0 0 auto;
  padding: 10px 12px;
  background: transparent;
  color: #9e44c2;
  border-radius: 7px;
  border: 1px solid #6f2d8c;
  font-weight: 400;
  font-size: 15px;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
  gap: 8px;
  width: 100%;
  text-decoration: none !important;
  transition: all 0.18s cubic-bezier(.4,0,.2,1);
}

.stockinfo-button:hover,
.stockinfo-button:focus {
  background: #f3e5f7;
  color: #812991;
  text-decoration: none;
  border-color: #812991;
}

.stockinfo-button svg {
  display: inline-block;
  vertical-align: middle;
  fill: currentColor;
}


.btn-in-cart {
  background: #4caf50;
  color: white;
  pointer-events: none;
  cursor: default;
}

.stockinfo-title {
  font-size: 20px;
  margin-bottom: 20px;
  color: #4b145d;
  font-weight: 600;
  text-align: center;
}

.store-item {
  border-radius: 10px;
  padding: 12px 16px;
  margin-bottom: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  box-shadow: 0 1px 5px rgba(0,0,0,0.04);
}

.store-item.available {
  background: #f3e5f7;
  color: #812991;
}

.store-item.unavailable {
  background: #f7f7f7;
  color: #999;
}

.store-name {
  flex-grow: 1;
  font-weight: 500;
  font-size: 16px; /* увеличено */
}

.store-status {
  font-size: 14px;
  font-weight: 400;
}

.reserve-button {
  padding: 6px 14px;
  background: #812991;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-size: 14px;
  transition: 0.2s;
}

.reserve-button:hover {
  color: #fff !important;
  text-decoration: none;
}

.reserve-button.clone-cart-button {
  background-color: #d694ff;
  color: #fff;
}
.reserve-button.clone-cart-button:hover {
  background-color: #9e00b6;
  color: #fff;
}