* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
  color: #333;
  background: #fff;
  line-height: 1.6;
}

a {
  color: #0066cc;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.btn {
  padding: 10px 24px;
  border-radius: 4px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-primary {
  background: #ff8c00;
  color: #fff;
}

.btn-primary:hover {
  background: #e67e00;
  transform: scale(1.03);
  text-decoration: none;
}

.btn-secondary {
  background: #28a745;
  color: #fff;
}

.btn-secondary:hover {
  background: #218838;
  transform: scale(1.03);
  text-decoration: none;
}

header {
  background: #fff;
  border-bottom: 1px solid #e0e0e0;
  padding: 16px 0;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  color: #0066cc;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 24px;
  margin: 0;
}

nav a {
  color: #333;
  font-weight: 500;
}

nav a:hover {
  color: #0066cc;
}

footer {
  background: #f8f9fa;
  padding: 48px 0 24px;
  margin-top: 80px;
  border-top: 1px solid #e0e0e0;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
  margin-bottom: 32px;
}

.footer-section h3 {
  margin-bottom: 16px;
  color: #333;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 8px;
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid #e0e0e0;
  color: #666;
  font-size: 14px;
}

.section {
  padding: 48px 0;
}

.section-title {
  font-size: 32px;
  margin-bottom: 16px;
  color: #333;
}

.section-subtitle {
  font-size: 18px;
  color: #666;
  margin-bottom: 32px;
}

.card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  padding: 24px;
  transition: all 0.2s;
}

.card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  transform: scale(1.03);
}

.product-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: all 0.2s;
}

.product-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  transform: scale(1.03);
}

.product-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.product-body {
  padding: 16px;
}

.product-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #333;
}

.product-description {
  font-size: 14px;
  color: #666;
  margin-bottom: 12px;
}

.product-price {
  font-size: 20px;
  font-weight: 700;
  color: #0066cc;
  margin-bottom: 12px;
}

.product-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 500;
}

.badge-moment {
  background: #e3f2fd;
  color: #0066cc;
}

.badge-category {
  background: #f3e5f5;
  color: #7b1fa2;
}

.product-meta {
  font-size: 13px;
  color: #666;
  margin-bottom: 12px;
}

.moment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

.moment-card {
  padding: 24px;
  background: #f8f9fa;
  border-radius: 8px;
  border-left: 4px solid #0066cc;
}

.moment-card h3 {
  margin-bottom: 12px;
  color: #333;
}

.rhythm-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 48px;
}

.rhythm-card {
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  text-align: center;
}

.photo-strip {
  margin: 48px 0;
  text-align: center;
}

.photo-strip img {
  width: 100%;
  max-width: 800px;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.photo-caption {
  margin-top: 16px;
  font-size: 16px;
  color: #666;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

.steps-list {
  background: #f8f9fa;
  padding: 32px;
  border-radius: 8px;
  margin-bottom: 48px;
}

.steps-list ol {
  padding-left: 20px;
}

.steps-list li {
  margin-bottom: 12px;
  font-size: 16px;
}

.table-responsive {
  overflow-x: auto;
  margin-bottom: 48px;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}

th {
  background: #f8f9fa;
  padding: 12px;
  text-align: left;
  border-bottom: 2px solid #e0e0e0;
  font-weight: 600;
}

td {
  padding: 12px;
  border-bottom: 1px solid #e0e0e0;
}

.faq-section {
  margin-bottom: 48px;
}

.faq-item {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 16px;
}

.faq-question {
  font-weight: 600;
  margin-bottom: 8px;
  color: #333;
}

.faq-answer {
  color: #666;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 48px;
}

.comparison-column h3 {
  margin-bottom: 16px;
  color: #333;
}

.comparison-column ul {
  padding-left: 20px;
}

.comparison-column li {
  margin-bottom: 8px;
}

.rules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 48px;
}

.rule-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 20px;
}

.rule-card h4 {
  margin-bottom: 8px;
  color: #0066cc;
}

.filters-chips {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.chip {
  padding: 8px 16px;
  background: #f8f9fa;
  border: 1px solid #e0e0e0;
  border-radius: 20px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
}

.chip:hover {
  background: #e3f2fd;
  border-color: #0066cc;
}

.chip.active {
  background: #0066cc;
  color: #fff;
  border-color: #0066cc;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background: #fff;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #333;
}

.form-control {
  width: 100%;
  padding: 12px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-size: 16px;
}

.form-control:focus {
  outline: none;
  border-color: #0066cc;
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.form-check {
  display: flex;
  align-items: start;
  gap: 8px;
}

.form-check input {
  margin-top: 4px;
}

.thank-you-box {
  max-width: 600px;
  margin: 80px auto;
  text-align: center;
  background: #fff;
  padding: 48px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.thank-you-box h1 {
  color: #28a745;
  margin-bottom: 16px;
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.8;
}

.legal-content h2 {
  margin-top: 32px;
  margin-bottom: 16px;
  color: #333;
}

.legal-content h3 {
  margin-top: 24px;
  margin-bottom: 12px;
  color: #333;
}

.legal-content p {
  margin-bottom: 16px;
}

.legal-content ul {
  margin-bottom: 16px;
  padding-left: 32px;
}

.legal-content li {
  margin-bottom: 8px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #333;
  color: #fff;
  padding: 20px;
  display: none;
  z-index: 1000;
}

.cookie-banner.show {
  display: block;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.cookie-text {
  flex: 1;
  min-width: 300px;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
}

@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    gap: 12px;
  }
  
  .moment-grid,
  .products-grid {
    grid-template-columns: 1fr;
  }
  
  .comparison-grid {
    grid-template-columns: 1fr;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .section-title {
    font-size: 24px;
  }
  
  .contact-form {
    padding: 20px;
  }
}
