button.add-to-cart.in-cart {
    background-color: transparent !important;
    border: none !important;
    color: blue;
    text-decoration: underline dotted;
    font-size: 1.35rem;
    transition: color 0.3s ease, text-decoration 0.3s ease;
    outline: none; /* убираем обводку */
    box-shadow: none !important;
}

button.add-to-cart.in-cart:hover {
    color: orange;
    text-decoration: underline dotted;
    cursor: pointer;
    outline: none;
    box-shadow: none !important;
}

button.add-to-cart.in-cart:focus {
    outline: none;
    border: none !important;
    box-shadow: none !important;
}
.product-description-block {
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
}

.product-description {
  font-size: 15px;
  line-height: 1.7;
  color: #333;
}
.thumb-gallery {
  list-style: none;
  padding: 0;
  margin: 0;
}

.thumb-img {
  height: 70px;
  width: auto;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color 0.2s ease;
}

.thumb-img:hover {
  border-color: #007bff;
}

.specs-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 12px;
    text-align: end;
}
.specs-list li {
  display: flex;
  margin-bottom: 8px;
}
.specs-list-full {
  list-style: none;
  padding: 0;
  margin: 0;
    font-size: 14px;
    text-align: end;
}

.specs-list-full li {
  display: flex;
  margin-bottom: 8px;
}

.spec-name {
  white-space: nowrap;
}

.spec-dots {
  flex-grow: 1;
  border-bottom: 1px dotted #ccc;
  /*margin: 0 8px;*/
}

@media (max-width: 768px) {
    .title {
        font-size: 1.2rem;
    }
    .product-description h1 {
        font-size: 1.2rem;
    }
  .img-big-wrap img {
    width: 100%;
    height: auto; /* Чтобы сохранять пропорции и не растягивалось по вертикали */
    object-fit: contain; /* или cover — пробуй, что лучше */
  }

  .thumb-gallery {
    overflow-x: hidden; /* Запрещаем горизонтальный скролл */
    justify-content: center !important; /* Центрируем миниатюры */
  }

  .thumb-gallery li {
    flex: 0 0 auto; /* Чтобы миниатюры не растягивались */
  }
/*  .spec-dots {*/
/*  flex-grow: 1;*/
/*  border-bottom: 1px dotted #ccc;*/
/*  margin: 0 2px;*/
/*}*/
}
