/* --- Базовые стили --- */
body {
  font-family: 'Roboto', sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  background: #ffffff; /* белый фон */
  color: #2d2d2d;
}

h1 {
  text-align: center;
  font-family: 'Orbitron', sans-serif;
  font-size: 42px;
  margin: 40px 0 25px;
  font-weight: 700;
  letter-spacing: 1px;
  background: linear-gradient(90deg, #00bcd4, #4dd0e1); /* голубой градиент */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 10px rgba(0,188,212,0.35);
}

h2 {
  text-align: center;
  font-family: 'Orbitron', sans-serif;
  font-size: 28px;
  margin: 35px 0 20px;
  color: #004d40; /* тёмный акцент */
  text-shadow: 0 0 4px rgba(0,188,212,0.2);
}

p {
  max-width: 850px;
  margin: 12px auto;
  padding: 0 18px;
  font-size: 17px;
}

/* Кнопки */
.order-btn, .review-form button, .btn {
  display: inline-block;
  margin-top: 20px;
  background: linear-gradient(90deg, #00bcd4, #00acc1);
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  padding: 15px 35px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 12px rgba(0,188,212,0.4);
  text-decoration: none;
  text-align: center;
}

.order-btn:hover, .review-form button:hover, .btn:hover {
  background: linear-gradient(90deg, #00838f, #0097a7);
  transform: translateY(-2px);
  box-shadow: 0 0 18px rgba(0,188,212,0.6);
}

/* Таблица состав */
.composition-table th {
  background-color: #e0f7fa;
  font-weight: 600;
  text-align: center;
  padding: 14px 16px;
  border-bottom: 1px solid #ddd;
  color: #006064;
}

.composition-table th {
  background-color: #e8f5e9;
  font-weight: 600;
  text-align: center;
  padding: 14px 16px;
  border-bottom: 1px solid #ddd;
  color: #1b5e20;
}

.composition-table td {
  padding: 14px 16px;
  border-bottom: 1px solid #eee;
  vertical-align: middle;
}

.composition-table tr:nth-child(even) td { background-color: #fafafa; }
.composition-table tr:hover td { background-color: #f1f8f4; }

.composition-table td:nth-child(1),
.composition-table td:nth-child(2),
.composition-table th:nth-child(1),
.composition-table th:nth-child(2) { text-align: center; }

.composition-table td img {
  max-width: 90px;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 6px;
}

/* --- Блок отзывов --- */
.reviews-section {
  padding: 50px 20px;
  background: #f9fdf9;
}

.reviews-section h2 {
  text-align: center;
  margin-bottom: 35px;
  font-size: 30px;
  color: #1b5e20;
}

.review {
  max-width: 650px;
  margin: 20px auto;
  padding: 22px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}

.review-header {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.review-avatar {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 14px;
  border: 2px solid #eee;
}

.review-name { font-weight: bold; color: #222; }
.review-stars { margin-left: auto; color: #ff9800; font-size: 18px; }
.review-date { font-size: 13px; color: #777; margin-left: auto; }

.review-text {
  margin-top: 12px;
  font-size: 16px;
  line-height: 1.5;
  color: #444;
}

/* --- Фото в отзывах --- */
.review-photo {
  display: block;
  margin: 18px auto 0;
  max-width: 200px;
  width: 100%;
  border-radius: 12px;
  border: 1px solid #eee;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* --- Только одно реальное фото без скруглений --- */
.review-photo.real {
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
}

/* --- FAQ --- */
.faq-section {
  max-width: 850px;
  margin: 60px auto;
  padding: 0 22px;
}

.faq-section h2 {
  text-align: center;
  font-size: 30px;
  margin-bottom: 45px;
  color: #1b5e20;
}

.faq-section h3 {
  font-size: 21px;
  margin-top: 32px;
  margin-bottom: 12px;
  color: #333;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 6px;
}

.faq-section p {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  margin: 0 0 22px;
}

/* --- Продукт-блок --- */
.product-block {
  text-align: center;
  margin: 45px 0;
}

.product-block img {
  max-width: 260px;
  margin: 20px auto;
  display: block;
}

/* --- Футер --- */
.site-footer {
  text-align: center;
  font-size: 14px;
  padding: 25px;
  margin-top: 50px;
  border-top: 1px solid #ddd;
  background: #f1f1f1;
}

/* Центровка списков в privacy */
.privacy-section ul {
  text-align: center;
  list-style-position: inside;
  padding: 0;
}
