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

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, #00c853, #b2ff59);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 10px rgba(0,200,83,0.4);
}

h2 {
  text-align: center;
  font-family: 'Orbitron', sans-serif;
  font-size: 28px;
  margin: 35px 0 20px;
  color: #222;
  text-shadow: 0 0 4px rgba(0,224,255,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, #28a745, #4caf50);
  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(40,167,69,0.4);
  text-decoration: none;
  text-align: center;
}

.order-btn:hover,
.review-form button:hover,
.btn:hover {
  background: linear-gradient(90deg, #218838, #388e3c);
  transform: translateY(-2px);
  box-shadow: 0 0 18px rgba(40,167,69,0.6);
}

/* --- Таблица состава --- */
.composition-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 20px 0;
  font-size: 16px;
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  background: #fff;
}

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

.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: 60px;
  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: #2e7d32;
}

.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: 40%;
  border: 1px solid #eee;
}

/* --- 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: #2e7d32;
}

.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-container ul,
.privacy-container ol {
  max-width: 800px;
  margin: 0 auto 20px;
  padding: 0 20px;
  list-style-position: inside;
  text-align: left;
}

.benefits {
  max-width: 800px;
  margin: 20px auto;
  padding: 0 20px;
  list-style-position: inside;
  text-align: left;
}

.benefits li {
  margin: 8px 0;
  font-size: 18px;
}

#order-form {
  max-width: 420px;
  margin: 0 auto;
  padding: 24px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

#order-form *,
#order-form *::before,
#order-form *::after {
  box-sizing: border-box;
}

#order-form h3 {
  margin: 0 0 8px;
  text-align: center;
  font-size: 22px;
  color: #0f172a;
}

#order-form .price {
  text-align: center;
  margin-bottom: 18px;
  font-size: 16px;
  color: #334155;
}

#order-form input[type="text"],
#order-form input[type="tel"] {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 12px;
  font-size: 15px;
  color: #0f172a;
  background: #f8fafc;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  outline: none;
  display: block;
}

#order-form input::placeholder {
  color: #94a3b8;
}

#order-form input:focus {
  border-color: #16a34a;
  background: #ffffff;
}

#order-form button {
  width: 100%;
  padding: 15px;
  margin-top: 8px;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  background: linear-gradient(180deg, #22c55e, #16a34a);
  border: none;
  border-radius: 12px;
  cursor: pointer;
}

#order-form button:hover {
  box-shadow: 0 6px 18px rgba(22, 163, 74, 0.25);
}

#order-form button:active {
  transform: scale(0.98);
}

#order-form form {
  display: flex;
  flex-direction: column;
}
