body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
  color: #2C3E50;
  background-color: #FAFBFC;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  color: #2C3E50;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
}

h2 {
  font-size: 2rem;
  margin-top: 2rem;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

.hero {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(107, 79, 161, 0.75);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 2rem;
}

.hero h1 {
  color: white;
  font-size: 3rem;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.3rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.navbar {
  background: white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: #6B4FA1 !important;
  letter-spacing: 1px;
}

.btn-catalog {
  background: #6B4FA1;
  color: white;
  border: 2px solid #6B4FA1;
  font-weight: 600;
  transition: all 0.3s ease;
  padding: 0.5rem 1.5rem;
  border-radius: 4px;
}

.btn-catalog:hover {
  background: #5A3F89;
  border-color: #5A3F89;
  color: white;
  transform: scale(1.02);
}

.btn-primary {
  background: #6B4FA1;
  border-color: #6B4FA1;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: #5A3F89;
  border-color: #5A3F89;
  transform: scale(1.02);
}

.btn-outline-primary {
  color: #6B4FA1;
  border-color: #6B4FA1;
  border-width: 2px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background: #6B4FA1;
  border-color: #6B4FA1;
  transform: scale(1.02);
}

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.chip {
  display: inline-block;
  background: #E8DEEF;
  color: #6B4FA1;
  padding: 0.6rem 1.2rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  border: 2px solid #E8DEEF;
  transition: all 0.3s ease;
}

.chip:hover {
  background: #6B4FA1;
  color: white;
  transform: scale(1.05);
}

.feature-module {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid #E0E0E0;
  transition: all 0.3s ease;
}

.feature-module:hover {
  box-shadow: 0 4px 12px rgba(107, 79, 161, 0.15);
  transform: translateY(-2px);
}

.feature-module h3 {
  color: #6B4FA1;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.category-card {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid #E0E0E0;
  transition: all 0.3s ease;
}

.category-card:hover {
  box-shadow: 0 4px 12px rgba(107, 79, 161, 0.15);
  transform: translateY(-2px);
}

.category-card h3 {
  color: #6B4FA1;
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
}

.product-card {
  background: white;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card:hover {
  box-shadow: 0 6px 16px rgba(107, 79, 161, 0.2);
  transform: translateY(-4px);
}

.product-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-card:hover img {
  transform: scale(1.05);
}

.product-card h3 {
  font-size: 1.1rem;
  color: #2C3E50;
  padding: 1rem 1rem 0.5rem;
  margin: 0;
  font-weight: 600;
}

.product-card p {
  padding: 0 1rem;
  color: #666;
  font-size: 0.9rem;
  flex-grow: 1;
}

.product-price {
  padding: 0 1rem;
  font-size: 1.3rem;
  font-weight: 700;
  color: #6B4FA1;
  margin: 0.5rem 0;
}

.product-card .btn {
  margin: 0.5rem 1rem 1rem;
}

.faq-item {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid #6B4FA1;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 12px rgba(107, 79, 161, 0.15);
}

.faq-item h3 {
  color: #6B4FA1;
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
}

.faq-item p {
  color: #666;
  margin: 0;
}

.info-box {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid #E0E0E0;
  transition: all 0.3s ease;
}

.info-box:hover {
  box-shadow: 0 4px 12px rgba(107, 79, 161, 0.15);
}

.info-box h3 {
  color: #6B4FA1;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.warning-box {
  background: #FFF5F5;
  border-left: 4px solid #E88B8B;
  padding: 1.5rem;
  border-radius: 4px;
  margin-bottom: 1rem;
}

.warning-box h3 {
  color: #C34444;
  margin-bottom: 0.8rem;
  font-size: 1.1rem;
}

.warning-box p {
  color: #666;
  margin: 0;
}

.principle-item {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  border: 1px solid #E0E0E0;
  transition: all 0.3s ease;
}

.principle-item:hover {
  box-shadow: 0 4px 12px rgba(107, 79, 161, 0.15);
  transform: translateY(-2px);
}

.principle-item h4 {
  color: #6B4FA1;
  margin-bottom: 0.8rem;
  font-size: 1rem;
}

.principle-item p {
  color: #666;
  margin: 0;
  font-size: 0.95rem;
}

.how-to-item {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  border: 1px solid #E0E0E0;
  text-align: center;
  transition: all 0.3s ease;
}

.how-to-item:hover {
  box-shadow: 0 4px 12px rgba(107, 79, 161, 0.15);
  transform: translateY(-2px);
}

.how-to-item h4 {
  color: #6B4FA1;
  margin-bottom: 0.8rem;
  font-size: 1rem;
}

.how-to-item p {
  color: #666;
  margin: 0;
  font-size: 0.95rem;
}

.contact-info {
  margin-bottom: 2rem;
}

.contact-info h3 {
  color: #6B4FA1;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.contact-form {
  background: #F5F7FA;
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid #E0E0E0;
}

.contact-form .form-control {
  border: 2px solid #E0E0E0;
  border-radius: 4px;
  padding: 0.75rem;
  transition: all 0.3s ease;
}

.contact-form .form-control:focus {
  border-color: #6B4FA1;
  box-shadow: 0 0 0 0.2rem rgba(107, 79, 161, 0.15);
}

.filter-section {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  border: 1px solid #E0E0E0;
}

.filter-section h4 {
  color: #6B4FA1;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.price-range {
  padding-top: 1rem;
}

footer {
  background: #2C3E50;
  color: white;
}

footer h3, footer h4 {
  color: white;
  margin-bottom: 1.5rem;
}

footer a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s ease;
}

footer a:hover {
  color: #B19CD9;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(44, 62, 80, 0.95);
  color: white;
  padding: 1.5rem;
  z-index: 9999;
  border-top: 1px solid #6B4FA1;
}

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

.cookie-text h4 {
  color: white;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.cookie-text p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  font-size: 0.95rem;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  white-space: nowrap;
}

@media (max-width: 768px) {
  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .hero {
    min-height: 300px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .filter-chips {
    gap: 0.6rem;
  }

  .chip {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }

  .cookie-content {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }

  .cookie-buttons {
    justify-content: center;
  }

  .contact-form {
    padding: 1.5rem;
  }

  .btn-catalog {
    display: none;
  }
}

.bg-light {
  background-color: #F5F7FA;
}

.bg-white {
  background-color: white;
}

ul {
  color: #666;
}

ul li {
  margin-bottom: 0.8rem;
}

a {
  color: #6B4FA1;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #5A3F89;
}

.form-check-label {
  color: #666;
  font-size: 0.95rem;
}

.form-check-label a {
  color: #6B4FA1;
  font-weight: 600;
}

.alert-warning {
  background: #FFFBF0;
  border: 1px solid #F5E1BB;
  color: #7A6521;
}

.alert-warning .alert-heading {
  color: #7A6521;
  font-weight: 700;
}

.alert-info {
  background: #EBF5FF;
  border: 1px solid #B3D9FF;
  color: #1E4976;
}

.alert-info .alert-heading {
  color: #1E4976;
  font-weight: 700;
}

.border-bottom {
  border-color: #E0E0E0 !important;
}
