.product-page {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding: 40px 20px;
  max-width: 1200px;
  margin: auto;
}

.product-image {
  flex: 1 1 45%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f5f5f5;
}

.product-image img {
  max-width: 100%;
  height: auto;
}

.product-info {
  flex: 1 1 50%;
  font-family: 'Segoe UI', sans-serif;
  color: #111;
}

.product-info h1 {
  font-size: 28px;
  margin-bottom: 8px;
}

.product-info .subtitle {
  color: #555;
  margin-bottom: 4px;
}

.product-info .sku {
  color: #999;
  margin-bottom: 16px;
}

.product-info .price {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 16px;
  margin-top: 0;
}

.product-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.add-to-cart {
  padding: 12px 20px;
  background-color: #000;
  color: #fff;
  border: none;
  font-weight: 600;
  cursor: pointer;
  border-radius: 6px;
  font-size: 14px;
}

.favorite {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #ccc;
  background: #fff;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  transition: all 0.2s;
}

.favorite:hover {
  border-color: #000;
}

.desc {
  margin-bottom: 20px;
  font-size: 16px;
}

.section {
  margin-bottom: 20px;
}

.section h3 {
  margin-bottom: 6px;
  font-size: 16px;
  font-weight: bold;
}

.note {
  font-size: 13px;
  color: #555;
  line-height: 1.6;
}

/* Адаптивность */
@media (max-width: 768px) {
  .product-page {
    flex-direction: column;
  }

  .product-image,
  .product-info {
    flex: 1 1 100%;
  }

  .product-info h1 {
    font-size: 22px;
  }

  .product-info .price {
    font-size: 20px;
  }

  .add-to-cart {
    flex: 1;
  }
}
.breadcrumbs {
  font-size: 14px;
  margin: 20px auto 0;
  padding: 0 20px;
  max-width: 1200px;
  color: #666;
  font-family: 'Segoe UI', sans-serif;
}


.comment-box {
  margin: 40px auto;
  padding: 20px;
  background-color: #fafafa;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  max-width: 800px;
}


.addcomment h3 {
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: 600;
  color: #222;
}

.plus_icon {
  cursor: pointer;
  margin-bottom: 15px;
  font-size: 16px;
  color: #444;
}


.ui-form {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ui-form li {
  margin-bottom: 15px;
}

.combo {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.combo_field {
  flex: 1;
}

input.wide,
textarea,
select {
  width: 100%;
  padding: 10px 14px;
  font-size: 14px;
  border: 1px solid #ddd;
  border-radius: 6px;
  background-color: #fff;
  box-sizing: border-box;
}

input.wide:focus,
textarea:focus {
  border-color: #999;
  outline: none;
}


.comments-image-uploader-area {
  margin-top: 8px;
  font-size: 14px;
}

.comments-image-uploader-area a {
  color: #007bff;
  text-decoration: underline;
}

.comments-image-uploader-area a:hover {
  text-decoration: none;
}

.c-captcha {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.c-captcha input {
  flex: 1;
}

.form_submit {
  text-align: right;
}

.btn.btn-big {
  background-color: #000;
  color: #fff;
  padding: 12px 28px;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.btn.btn-big:hover {
  background-color: #333;
}

@media (max-width: 600px) {
  .combo {
    flex-direction: column;
  }

  .form_submit {
    text-align: center;
  }
}

.comment {
  padding: 20px;
  margin: 20px 0;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  gap: 15px;
}


.com_info {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.avatar .cover {
  width: 48px;
  height: 48px;
  background-size: cover;
  background-position: center;
  border-radius: 50%;
  display: inline-block;
}

.com_online {
  margin-top: 6px;
  font-size: 12px;
  color: #4caf50;
}

.com_user {
  display: flex;
  flex-direction: column;
}

.com_user .name {
  font-weight: 600;
  font-size: 16px;
  color: #222;
}

.com_user .grey {
  font-size: 13px;
  color: #888;
}


.meta {
  display: flex;
  flex-direction: column;
  margin-left: auto;
  gap: 10px;
}

.rate,
.rate_like,
.rate_like-dislike {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
}

.ratingtypeplusminus {
  font-weight: bold;
}

.ratingplus {
  color: #4caf50;
}

.ratingminus {
  color: #f44336;
}


.meta ul.left {
  display: flex;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}

.meta ul.left li {
  font-size: 13px;
  color: #666;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.meta ul.left li:hover {
  color: #000;
}

.meta svg.icon {
  width: 16px;
  height: 16px;
  fill: currentColor;
  margin-right: 5px;
}


.com_content .text {
  font-size: 15px;
  color: #333;
  line-height: 1.6;
}

.com_content .title {
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 10px;
  color: #111;
}

.signature {
  font-size: 12px;
  color: #999;
  margin-top: 10px;
  border-top: 1px dashed #ccc;
  padding-top: 8px;
}


@media (max-width: 600px) {
  .com_info {
    flex-direction: column;
    align-items: flex-start;
  }

  .meta {
    flex-direction: column;
    align-items: flex-start;
    margin-left: 0;
  }

  .meta ul.left {
    flex-direction: column;
    gap: 6px;
  }

  .comment {
    padding: 15px;
  }
}



