
/* PRODUCT PAGE ADDITIONS */

.product-hero {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  padding: 40px 20px;
}
.product-image {
  flex: 1 1 300px;
  max-width: 400px;
  border-radius: 8px;
  object-fit: contain;
}
.product-info {
  flex: 1 1 300px;
}
.product-title {
  font-size: 32px;
  margin: 0 0 10px;
}
.product-subtitle {
  font-size: 18px;
  margin: 0 0 20px;
}
.product-price {
  font-size: 28px;
  font-weight: bold;
  margin: 0 0 20px;
}
.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.btn {
  display: inline-block;
  text-decoration: none;
  font-size: 16px;
  padding: 12px 24px;
  border-radius: 4px;
  cursor: pointer;
}
.btn-buy {
  background: #004D40; /* тёмно-зелёный */
  color: white;
  border: none;
}
.btn-call {
  background: #FFFFFF;
  color: #004D40;
  border: 2px solid #004D40;
}
.btn-call:hover {
  background: #004D40;
  color: white;
}

/* Section backgrounds */
.beige-bg    { background: #FAF5EC; }
.light-bg    { background: #FFFFFF; }
.green-bg    { background: #E8F5E9; }
.yellow-bg   { background: #FFF3E0; }

/* Common for these sections */
.product-section {
  padding: 40px 20px;
}
.product-section h3 {
  margin-top: 0;
  font-size: 24px;
}
.product-section ul {
  padding-left: 20px;
}
.product-section ul li {
  margin-bottom: 10px;
  line-height: 1.6;
}

/* FOOTER STYLES */
.site-footer {
  background: #004D40;
  color: white;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 30px 20px;
}
.footer-contacts p,
.footer-contacts a {
  margin: 5px 0;
  color: white;
  text-decoration: none;
}
.footer-social a {
  margin: 0 10px;
  font-size: 20px;
  color: white;
  text-decoration: none;
}
.footer-social a:hover {
  opacity: 0.7;
}
@media (max-width: 768px) {
  .product-hero {
    flex-direction: column;
  }
  .site-footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-social {
    margin: 20px 0;
  }
}/* Галерея превью */
.gallery {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.gallery-item {
  width: 60px;
  height: 60px;
  object-fit: contain;
  cursor: pointer;
  border: 1px solid #ddd;
  border-radius: 4px;
}

/* Лайтбокс */
.lightbox {
  position: fixed;
  top:0; left:0; right:0; bottom:0;
  background: rgba(0,0,0,0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}
.lightbox.active {
  display: flex;
}
.lightbox-content img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 4px;
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  padding: 10px;
}
.lightbox-close { top:20px; right:30px; }
.lightbox-prev  { left:20px;  top:50%; transform: translateY(-50%); }
.lightbox-next  { right:20px; top:50%; transform: translateY(-50%); }

/* Инлайн-иконки в тексте */
.icon-inline {
  width: 24px;
  height: 24px;
  vertical-align: middle;
  margin-right: 8px;
}