
/* Скрываем панель редактирования по умолчанию */
.single-product-tools {
  display: none;
}

/* Показываем если включён один из режимов */
body.admin-mode .single-product-tools,
body.editor-mode .single-product-tools {
  display: block;
}

.product-meta {
    margin-top: 16px;
}

.product-title {
  font-size: 28px;
  font-weight: 700;
  margin: 16px 0;
}

.stock {
  color: #28a745;
  font-size: 18px;
}

.product-attributes {
  margin-top: 24px;
}

.product-attributes h2,
.product-description h2 {
  font-size: 20px;
  margin-bottom: 12px;
  border-bottom: 2px solid #eee;
  padding-bottom: 6px;
}

.product-attributes ul {
  list-style: none;
  padding: 0;
}

.product-attributes li {
  margin: 6px 0;
  font-size: 16px;
}

.product-description {
  margin-top: 24px;
  line-height: 1.6;
  
}

.sku {
  margin-top: 16px;
  font-size: 14px;
  
}


.quantity-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 6px 10px;
  margin-right: 14px;
}

