* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: 'Segoe UI', system-ui, sans-serif;
  background: #f5f0e0;
  color: #4a3b2a;
  line-height: 1.6;
}
.container { max-width: 960px; margin: 0 auto; padding: 0 20px; }
.header {
  background: #6b8f5e;
  color: white;
  padding: 15px 0;
}
.header-content { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.4rem; }
.cart-btn { background: #d4784c; color: white; border: none; padding: 8px 16px; border-radius: 8px; cursor: pointer; font-size: 1rem; }
.hero { padding: 40px 0; text-align: center; }
.products { padding: 20px 0; }
.products h3 { margin-bottom: 20px; text-align: center; }
.products-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.product-card {
  background: white; border: 1px solid #ddd; border-radius: 12px;
  padding: 16px; text-align: center;
}
.product-card h4 { margin-bottom: 8px; }
.product-card p { color: #6b8f5e; font-weight: bold; margin-bottom: 12px; }
.btn { background: #d4784c; color: white; border: none; padding: 10px 20px; border-radius: 8px; cursor: pointer; font-size: 1rem; }
.btn-secondary { background: #ccc; color: #333; margin-top: 10px; }
.modal {
  display: none; position: fixed; top: 0; left: 0;
  width: 100%; height: 100%; background: rgba(0,0,0,0.5);
  justify-content: center; align-items: center;
}
.modal.active { display: flex; }
.modal-content {
  background: white; padding: 24px; border-radius: 12px;
  max-width: 400px; width: 100%;
}
.modal-content h3 { margin-bottom: 16px; }
.modal-content input, .modal-content textarea {
  width: 100%; padding: 8px; margin-bottom: 12px; border: 1px solid #ddd; border-radius: 6px;
}
.payment-demo { margin: 12px 0; }
.payment-note { color: #ff9800; font-size: 0.9rem; margin-top: 8px; }
.cart-total { font-weight: bold; margin: 12px 0; }
.footer { background: #4a3b2a; color: white; text-align: center; padding: 20px 0; margin-top: 40px; }
/* Как это работает */
.how-it-works { padding: 40px 0; }
.how-it-works h3 { text-align: center; margin-bottom: 24px; }
.how-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }
.how-card { background: white; border-radius: 12px; padding: 20px; text-align: center; }
.how-number { 
  width: 40px; height: 40px; background: #6b8f5e; color: white; 
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 12px; font-weight: bold; font-size: 1.2rem;
}
.how-card h4 { margin-bottom: 8px; }
.how-card p { font-size: 0.9rem; color: #666; }

/* Наши продукты */
.about-products { padding: 40px 0; }
.about-products h3 { text-align: center; margin-bottom: 24px; }
.about-products-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.about-product-card { background: white; border-radius: 12px; padding: 20px; text-align: center; }
.about-product-icon { font-size: 2.5rem; margin-bottom: 8px; }
.about-product-card h4 { color: #6b8f5e; margin-bottom: 8px; }
.about-product-card p { font-size: 0.9rem; color: #666; }

/* FAQ */
.faq { padding: 40px 0; }
.faq h3 { text-align: center; margin-bottom: 24px; }
.faq-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.faq-card { background: white; border-radius: 12px; padding: 20px; }
.faq-card h4 { margin-bottom: 8px; color: #4a3b2a; }
.faq-card p { font-size: 0.9rem; color: #666; }
/* Фикс для радио-кнопок */
.payment-demo label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
  cursor: pointer;
}
.payment-demo input[type="radio"] {
  margin: 0;
  width: auto;
}
