/* --- Base --- */
body {
  font-family: 'Roboto', sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  background: #fff7d6; /* soft yellow */
  color: #4e3d00;
}

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, #f9a825, #ffeb3b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 14px rgba(255,193,7,0.5);
}

h2 {
  text-align: center;
  font-family: 'Orbitron', sans-serif;
  font-size: 28px;
  margin: 35px 0 20px;
  color: #b28900;
  text-shadow: 0 0 6px rgba(255,213,79,0.4);
}

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

/* --- Benefits List --- */
.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;
  color: #4e3d00;
}

/* --- Buttons (yellow-gold) --- */
.order-btn,
.review-form button,
.btn {
  display: inline-block;
  margin-top: 20px;
  background: linear-gradient(90deg, #f9a825, #ffeb3b);
  color: #5f4a00;
  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(255,193,7,0.4);
  text-decoration: none;
  text-align: center;
}

.order-btn:hover,
.review-form button:hover,
.btn:hover {
  background: linear-gradient(90deg, #f57f17, #fbc02d);
  transform: translateY(-2px);
  box-shadow: 0 0 18px rgba(255,167,38,0.6);
}

/* --- Composition Table --- */
.composition-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 20px 0;
  font-size: 16px;
  border: 1px solid #f9e29c;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  background: #fffbe7;
}

.composition-table th {
  background-color: #ffefb3;
  font-weight: 600;
  text-align: center;
  padding: 14px 16px;
  border-bottom: 1px solid #ffe082;
  color: #8d6e00;
}

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

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

.composition-table tr:hover td {
  background-color: #ffefb0;
}

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

/* --- Reviews --- */
.reviews-section {
  padding: 50px 20px;
  background: #fff3bf;
}

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

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

.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 #ffe082;
}

.review-name {
  font-weight: bold;
  color: #8d6e00;
}

.review-stars {
  margin-left: auto;
  color: #ffa000;
  font-size: 18px;
}

.review-date {
  font-size: 13px;
  color: #6d5c00;
  margin-left: 12px;
}

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

.review-photo {
  display: block;
  margin: 18px auto 0;
  max-width: 40%;
  border: 1px solid #ffe082;
}

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

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

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

/* --- Product Block --- */
.product-block {
  text-align: center;
  margin: 45px 0;
}

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

/* --- Footer --- */
.site-footer {
  text-align: center;
  font-size: 14px;
  padding: 25px;
  margin-top: 50px;
  border-top: 1px solid #f2d677;
  background: #ffefb3;
  color: #6b5300;
}

/* --- Privacy Lists --- */
.privacy-container ul,
.privacy-container ol {
  max-width: 800px;
  margin: 0 auto 20px;
  padding: 0 20px;
  list-style-position: inside;
  text-align: left;
  color: #4e3d00;
}
