#yas-soputstv-modal[data-yas-soputstv-ui] {
  position: fixed;
  inset: 0;
  z-index: 100500;
  display: flex;
  justify-content: flex-end;
  align-items: stretch;
  padding: 0;
  background-color: rgba(15, 23, 42, 0.52);
  backdrop-filter: blur(2px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
#yas-soputstv-modal[data-yas-soputstv-ui].show {
  opacity: 1;
  visibility: visible;
}
#yas-soputstv-modal[data-yas-soputstv-ui].modal.modal-soputs {
  justify-content: flex-end;
  align-items: stretch;
}
#yas-soputstv-modal[data-yas-soputstv-ui] .modal-soputs__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  width: min(420px, 100vw);
  max-width: 100%;
  height: 100%;
  background: #fff;
  box-shadow: -12px 0 48px rgba(31, 45, 80, 0.18);
  transform: translateX(24px);
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}
#yas-soputstv-modal[data-yas-soputstv-ui].show .modal-soputs__inner {
  transform: translateX(0);
}
#yas-soputstv-modal[data-yas-soputstv-ui] .modal-soputs__head {
  position: relative;
  flex: 0 0 auto;
  padding: 22px 20px 16px;
  border-bottom: 1px solid var(--line, #e6e8f0);
  background: linear-gradient(180deg, #fafbfd 0%, #fff 100%);
}
#yas-soputstv-modal[data-yas-soputstv-ui] .modal-soputs__title {
  margin: 0;
  padding-right: 44px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--ink, #1b1c28);
}
#yas-soputstv-modal[data-yas-soputstv-ui] .modal-soputs__close.close-modal {
  position: absolute;
  top: 16px;
  right: 16px;
  left: auto;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid var(--line, #e6e8f0);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  opacity: 0.9;
  transition: opacity 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}
#yas-soputstv-modal[data-yas-soputstv-ui] .modal-soputs__close.close-modal:hover {
  opacity: 1;
  border-color: var(--blue, #3498db);
  box-shadow: 0 4px 14px rgba(52, 152, 219, 0.16);
}
#yas-soputstv-modal[data-yas-soputstv-ui] .modal-soputs__close.close-modal:hover::before, #yas-soputstv-modal[data-yas-soputstv-ui] .modal-soputs__close.close-modal:hover::after {
  background: var(--blue, #3498db);
}
#yas-soputstv-modal[data-yas-soputstv-ui] .modal-soputs__close.close-modal::before, #yas-soputstv-modal[data-yas-soputstv-ui] .modal-soputs__close.close-modal::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  margin: 0;
  padding: 0;
  border: 0;
  background: #6b7280;
  background-image: none !important;
  border-radius: 1px;
  transform: translate(-50%, -50%) rotate(45deg);
  pointer-events: none;
}
#yas-soputstv-modal[data-yas-soputstv-ui] .modal-soputs__close.close-modal::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
#yas-soputstv-modal[data-yas-soputstv-ui] .modal-soputs__body {
  flex: 1 1 auto;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 8px 20px 24px;
}
#yas-soputstv-modal[data-yas-soputstv-ui] .modal-soputs__body.modal-soputs__products {
  background: transparent;
  box-shadow: none;
  height: auto;
}
#yas-soputstv-modal[data-yas-soputstv-ui] .modal-soputs__body--loading,
#yas-soputstv-modal[data-yas-soputstv-ui] .modal-soputs__body--empty,
#yas-soputstv-modal[data-yas-soputstv-ui] .modal-soputs__body--error {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
}
#yas-soputstv-modal[data-yas-soputstv-ui] .modal-soputs__state {
  margin: 0;
  font-size: 15px;
  line-height: 1.45;
  color: var(--ink2, #5c6478);
  text-align: center;
}
#yas-soputstv-modal[data-yas-soputstv-ui] .modal-soputs__body--loading .modal-soputs__state {
  position: relative;
  padding-top: 36px;
}
#yas-soputstv-modal[data-yas-soputstv-ui] .modal-soputs__body--loading .modal-soputs__state:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 28px;
  height: 28px;
  margin-left: -14px;
  border: 2px solid #dbe3ef;
  border-top-color: var(--blue, #3498db);
  border-radius: 50%;
  animation: yas-soputstv-spin 0.8s linear infinite;
}
#yas-soputstv-modal[data-yas-soputstv-ui] .modal-soputs__product {
  padding: 0;
  border-bottom: 1px solid var(--line, #e6e8f0);
}
#yas-soputstv-modal[data-yas-soputstv-ui] .modal-soputs__product:last-child {
  border-bottom: 0;
}
#yas-soputstv-modal[data-yas-soputstv-ui] .modal-soputs__product-inner {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 14px;
  padding: 18px 0;
}
#yas-soputstv-modal[data-yas-soputstv-ui] .modal-soputs__product-image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  border: 1px solid var(--line, #e6e8f0);
  border-radius: 12px;
  background: #f6f8fc;
  overflow: hidden;
}
#yas-soputstv-modal[data-yas-soputstv-ui] .modal-soputs__product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
#yas-soputstv-modal[data-yas-soputstv-ui] .modal-soputs__product-info {
  min-width: 0;
}
#yas-soputstv-modal[data-yas-soputstv-ui] .modal-soputs__product-name {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--ink, #1b1c28);
  text-decoration: none;
}
#yas-soputstv-modal[data-yas-soputstv-ui] .modal-soputs__product-name:hover {
  color: var(--blue, #3498db);
}
#yas-soputstv-modal[data-yas-soputstv-ui] .modal-soputs__product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  margin-bottom: 6px;
}
#yas-soputstv-modal[data-yas-soputstv-ui] .modal-soputs__product-brand,
#yas-soputstv-modal[data-yas-soputstv-ui] .modal-soputs__product-dims {
  font-size: 11px;
  line-height: 1.3;
  color: var(--ink3, #8b93a7);
}
#yas-soputstv-modal[data-yas-soputstv-ui] .modal-soputs__product-stock {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.3;
}
#yas-soputstv-modal[data-yas-soputstv-ui] .modal-soputs__product-stock--in {
  color: #1f9d55;
}
#yas-soputstv-modal[data-yas-soputstv-ui] .modal-soputs__product-stock--out {
  color: var(--red, #e74c3c);
}
#yas-soputstv-modal[data-yas-soputstv-ui] .modal-soputs__product-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 10px;
}
#yas-soputstv-modal[data-yas-soputstv-ui] .modal-soputs__product-price b {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink, #1b1c28);
}
#yas-soputstv-modal[data-yas-soputstv-ui] .modal-soputs__product-price-old {
  font-size: 13px;
  font-weight: 600;
  color: var(--red, #e74c3c);
  text-decoration: line-through;
}
#yas-soputstv-modal[data-yas-soputstv-ui] .modal-soputs__product-select {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 18px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(180deg, #3aa0de 0%, var(--blue, #3498db) 55%, #2c7fb8 100%);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(52, 152, 219, 0.28);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
#yas-soputstv-modal[data-yas-soputstv-ui] .modal-soputs__product-select:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(52, 152, 219, 0.34);
}
@media (max-width: 575.98px) {
  #yas-soputstv-modal[data-yas-soputstv-ui] .modal-soputs__inner {
    width: 100vw;
  }
  #yas-soputstv-modal[data-yas-soputstv-ui] .modal-soputs__product-inner {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 12px;
  }
  #yas-soputstv-modal[data-yas-soputstv-ui] .modal-soputs__product-image {
    width: 72px;
    height: 72px;
  }
}

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

/*# sourceMappingURL=style.css.map */
