/* ====== Заголовок товару ====== */
h1 {
  color: #2e7d32;
  text-align: center;
  margin: 30px 0 10px;
  font-size: 1.8rem;
}
.jshop_code_prod {
  font-size: 0.9rem;
  color: #777;
}

/* ====== Основний блок товару ====== */
.jshop.productview .row {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  padding: 20px;
}

/* ====== Фото товару (квадратне) ====== */
.image_middle img {
  width: 350px;
  height: 350px;
  object-fit: contain;
  border-radius: 10px;
  border: 2px solid #a6cca1;
}
.image_thumb_list img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin: 5px;
  cursor: pointer;
  border-radius: 6px;
  border: 1px solid #ccc;
}
.image_thumb_list img:hover {
  border-color: #388e3c;
}
.row-fluid0 {margin-right: 0; margin-left: 0;}
.productfull .image_thumb_list .sblock0 {width: auto;}
.row-fluid0 [class*="sblock"] {padding-left: 0; padding-right: 0;}


/* ====== Інформація про товар ====== */
.jshop_oiproduct {
  max-width: 400px;
}
.prod_price {
  font-size: 1.6rem;
  font-weight: 700;
  color: #388e3c;
  margin: 15px 0;
}
.block_available {
  font-weight: 600;
  color: #2e7d32;
  margin-bottom: 10px;
}

/* ====== Кнопки в картках товарів ====== */
.buttons {
  display: flex;
  flex-wrap: wrap;       /* дозволяє переносити кнопки, якщо не вистачає місця */
  justify-content: center;
  gap: 8px;              /* відстань між кнопками */
  margin-top: 10px;
}

.buttons a {
  flex: 1 1 auto;        /* кнопки займають рівномірно доступний простір */
  min-width: 100px;      /* мінімальна ширина, щоб не стискались занадто сильно */
  text-align: center;
}

/* ====== Кнопки ====== */
.product-buttons {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}
.btn-buy {
  background-color: #fbc02d;
  color: #fff;
  border-radius: 6px;
  padding: 10px 20px;
  font-weight: 600;
  transition: background-color 0.2s ease;
  text-shadow: 2px 1px 2px rgba(0, 0, 0, 0.8);
  font-size: 0.95rem;
  border-color: #a6cca1;
}
.btn-buy:hover {
  background-color: #f9a825;
  cursor: pointer;
  text-decoration: underline;
}
.btn-wishlist {
  background-color: #388e3c;
  color: #fff;
  border-radius: 6px;
  padding: 10px 20px;
  font-weight: 600;
  transition: background-color 0.2s ease;
  font-size: 0.95rem;
  border: 0;
}
.btn-wishlist:hover {
  background-color: #2e7d32;
  cursor: pointer;
  text-decoration: underline;
}

/* ====== Опис товару ====== */
.jshop_prod_description {
  max-width: 800px;
  margin: 30px auto;
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  line-height: 1.6;
}

/* ====== Відгуки ====== */
.review_header {
  font-size: 1.4rem;
  font-weight: 600;
  color: #2e7d32;
  margin: 20px 0 10px;
}
.review_text_not_login {
  text-align: center;
  color: #777;
  font-size: 0.95rem;
}

/* ====== Супутні товари ====== */
.related_header {
  font-size: 1.6rem;
  font-weight: 700;
  color: #2e7d32;
  text-align: center;
  margin: 40px 0 20px;
}

.jshop.list_related .row-fluid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); /* було 250px */
  gap: 15px; /* трохи менший відступ */
}

.jshop_related.block_product {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  text-align: center;
  padding: 10px; /* менший внутрішній відступ */
  transition: transform 0.2s ease;
}
.jshop_related.block_product:hover {
  transform: translateY(-3px);
}

.jshop_related .image img {
  width: 100%;
  height: 180px; /* було 220px */
  object-fit: cover;
  border-radius: 6px;
}


.jshop_related .name a {
  font-weight: 600;
  color: #2e7d32;
  text-decoration: none;
  display: block;
  margin: 10px 0;
}
.jshop_related .jshop_price span {
  font-weight: 700;
  color: #388e3c;
  margin-bottom: 10px;
  display: block;
}
.jshop_related .button_buy {
  background-color: #fbc02d;
  color: #fff;
  border-radius: 6px;
  padding: 8px 16px;
  text-decoration: none;
  font-weight: 600;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.4);
}
.jshop_related .button_buy:hover {
  background-color: #f9a825;
}
.jshop_related .button_detail {
  background-color: #388e3c;
  color: #fff;
  border-radius: 6px;
  padding: 8px 16px;
  text-decoration: none;
  font-weight: 600;
}
.jshop_related .button_detail:hover {
  background-color: #2e7d32;
}

/* ====== Адаптивність ====== */

@media (max-width: 768px) {

  .jshop.productview .row {
    flex-direction: column;
    align-items: center;
  }

  .image_middle img {
    width: 90%;
    height: 90%;
  }

  .product-buttons {
    flex-direction: column;
    align-items: center;
  }

  .jshop .product_label {display: none;}
  .product_label {display: none !important;}

}
