.seller-info {
  margin-top: 32px;
  border-radius: 12px;
  padding: 20px;
  background-color: var(--bg-basic);
  display: grid;
  grid-template-columns: 104px 1fr;
  gap: 12px;
}

.seller-info__img {
  flex-shrink: 0;
  width: 104px;
  height: 104px;
  border-radius: 4px;
  object-fit: cover;
  grid-row: 1/3;
}

.seller-info__block {
  display: flex;
  gap: 12px;
}

.seller-info__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.seller-info__title {
  word-wrap: break-word;
  word-break: break-word;
  hyphens: auto;
}

.seller-info__bttns {
  margin-top: 2px;
  display: flex;
  gap: 8px;
}

.seller-info__bttn {
  position: relative;
  padding-left: 42px;
}

.seller-info__bttn::before {
  content: "";
  position: absolute;
  display: block;
  width: 24px;
  height: 24px;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
}

.seller-info__bttn--message:disabled::before {
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 9H16M8 13H14M18 4C18.7956 4 19.5587 4.31607 20.1213 4.87868C20.6839 5.44129 21 6.20435 21 7V15C21 15.7956 20.6839 16.5587 20.1213 17.1213C19.5587 17.6839 18.7956 18 18 18H13L8 21V18H6C5.20435 18 4.44129 17.6839 3.87868 17.1213C3.31607 16.5587 3 15.7956 3 15V7C3 6.20435 3.31607 5.44129 3.87868 4.87868C4.44129 4.31607 5.20435 4 6 4H18Z' stroke='%23D1CFD7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.seller-info__bttn--message::before {
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 9H16M8 13H14M18 4C18.7956 4 19.5587 4.31607 20.1213 4.87868C20.6839 5.44129 21 6.20435 21 7V15C21 15.7956 20.6839 16.5587 20.1213 17.1213C19.5587 17.6839 18.7956 18 18 18H13L8 21V18H6C5.20435 18 4.44129 17.6839 3.87868 17.1213C3.31607 16.5587 3 15.7956 3 15V7C3 6.20435 3.31607 5.44129 3.87868 4.87868C4.44129 4.31607 5.20435 4 6 4H18Z' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.seller-info__bttn--phone::before {
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 4H9L11 9L8.5 10.5C9.57096 12.6715 11.3285 14.429 13.5 15.5L15 13L20 15V19C20 19.5304 19.7893 20.0391 19.4142 20.4142C19.0391 20.7893 18.5304 21 18 21C14.0993 20.763 10.4202 19.1065 7.65683 16.3432C4.8935 13.5798 3.23705 9.90074 3 6C3 5.46957 3.21071 4.96086 3.58579 4.58579C3.96086 4.21071 4.46957 4 5 4Z' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}

.seller-info__desc {
  margin-top: 4px;
  grid-column: 1/3;
}

@media (max-width: 1024px) {
  .seller-info__bttns {
    grid-column: 1/3;
    flex-direction: column;
  }
  .seller-info__bttn {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 6px;
    padding-left: 12px;
  }

  .seller-info__bttn::before {
    transform: none;
    position: static;
  }
  .seller-info__img {
    grid-row: 1/2;
    width: 100%;
    object-fit: cover;
  }
  .seller-info {
    grid-template-columns: 90px 1fr;
  }
  .seller-info__title {
    font-size: 20px;
  }
}


.seller-prod {
  margin: 16px 0 64px;
  border-radius: 12px;
  padding: 20px;
  background-color: var(--bg-basic);

}

.seller-prod__h2 {
  margin-bottom: 16px;
}