/* Основные стили для Loveshop */
body {
  font-family: 'Source Sans Pro', sans-serif;
  line-height: 1.6;
  color: #333;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  background: #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  padding: 1rem 0;
}

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

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.nav-link {
  color: #ff6b6b;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.nav-link:hover {
  color: #e55a5a;
}

/* Main Content */
.main-content {
  padding: 2rem 0;
}

.hero {
  text-align: center;
  padding: 3rem 0;
  background: linear-gradient(135deg, #FFF6ED 0%, #ffe8d6 100%);
}

.hero h2 {
  font-size: 2.5rem;
  color: #ff6b6b;
  margin-bottom: 1rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.btn {
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-primary {
  background: #ff6b6b;
  color: white;
}

.btn-primary:hover {
  background: #e55a5a;
}

.btn-secondary {
  background: transparent;
  color: #ff6b6b;
  border: 2px solid #ff6b6b;
}

.btn-secondary:hover {
  background: #ff6b6b;
  color: white;
}

/* About Loveshop */
.about-loveshop {
  padding: 3rem 0;
  background: white;
}

.about-loveshop h3 {
  text-align: center;
  font-size: 2rem;
  color: #ff6b6b;
  margin-bottom: 2rem;
}

.about-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: start;
}

.about-text p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.about-stats {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.stat {
  text-align: center;
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 10px;
  border-left: 4px solid #ff6b6b;
}

.stat h4 {
  font-size: 2rem;
  color: #ff6b6b;
  margin-bottom: 0.5rem;
}

/* Features */
.features {
  padding: 3rem 0;
  background: #f8f9fa;
}

.features h3 {
  text-align: center;
  font-size: 2rem;
  color: #ff6b6b;
  margin-bottom: 2rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.feature {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.feature:hover {
  transform: translateY(-5px);
}

.feature h4 {
  color: #ff6b6b;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.feature-link {
  color: #ff6b6b;
  text-decoration: none;
  font-weight: 600;
  margin-top: 1rem;
  display: inline-block;
}

.feature-link:hover {
  text-decoration: underline;
}

/* How to Order */
.how-to-order {
  padding: 3rem 0;
  background: white;
}

.how-to-order h3 {
  text-align: center;
  font-size: 2rem;
  color: #ff6b6b;
  margin-bottom: 2rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.step {
  text-align: center;
  padding: 2rem;
  background: #f8f9fa;
  border-radius: 10px;
  border-top: 4px solid #ff6b6b;
}

.step h4 {
  color: #ff6b6b;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

/* Reviews */
.reviews {
  padding: 3rem 0;
  background: #f8f9fa;
}

.reviews h3 {
  text-align: center;
  font-size: 2rem;
  color: #ff6b6b;
  margin-bottom: 2rem;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.review {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  border-left: 4px solid #ff6b6b;
}

.review h4 {
  color: #ff6b6b;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.reviewer {
  display: block;
  margin-top: 1rem;
  font-style: italic;
  color: #666;
  font-size: 0.9rem;
}

/* FAQ */
.faq {
  padding: 3rem 0;
  background: white;
}

.faq h3 {
  text-align: center;
  font-size: 2rem;
  color: #ff6b6b;
  margin-bottom: 2rem;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 10px;
  border-left: 4px solid #ff6b6b;
}

.faq-item h4 {
  color: #ff6b6b;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

/* Mirrors */
.mirrors {
  padding: 3rem 0;
  background: #f8f9fa;
}

.mirrors h3 {
  text-align: center;
  font-size: 2rem;
  color: #ff6b6b;
  margin-bottom: 1rem;
}

.mirrors p {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.1rem;
  color: #666;
}

.mirrors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.mirror-link {
  display: block;
  padding: 1rem;
  background: white;
  color: #ff6b6b;
  text-decoration: none;
  text-align: center;
  border-radius: 6px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  transition: all 0.3s;
}

.mirror-link:hover {
  background: #ff6b6b;
  color: white;
  transform: translateY(-2px);
}

/* Contacts */
.contacts {
  padding: 3rem 0;
  background: white;
}

.contacts h3 {
  text-align: center;
  font-size: 2rem;
  color: #ff6b6b;
  margin-bottom: 2rem;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.contact-item {
  text-align: center;
  padding: 2rem;
  background: #f8f9fa;
  border-radius: 10px;
}

.contact-item h4 {
  color: #ff6b6b;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.contact-item a {
  color: #ff6b6b;
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.contact-item a:hover {
  text-decoration: underline;
}

/* Footer */
.footer {
  background: #333;
  color: white;
  padding: 2rem 0;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.footer-links a {
  color: #ff6b6b;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    gap: 1rem;
  }
  
  .nav-links {
    justify-content: center;
  }
  
  .hero h2 {
    font-size: 2rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .steps {
    grid-template-columns: 1fr;
  }
  
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  
  .mirrors-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
  
  .contact-info {
    grid-template-columns: 1fr;
  }
} 