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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #333;
  line-height: 1.6;
}

.brand-logo {
  font-size: 1.75rem;
  font-weight: 700;
  color: #7c3aed;
  text-decoration: none;
}

.brand-logo:hover {
  color: #6d28d9;
  text-decoration: none;
}

.brand-logo-footer {
  font-size: 1.5rem;
  font-weight: 700;
  color: #a78bfa;
}

.navbar {
  border-bottom: 1px solid #e5e7eb;
}

.navbar-light .navbar-nav .nav-link {
  color: #4b5563;
  font-weight: 500;
  padding: 0.75rem 1rem;
  transition: color 0.3s ease;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
  color: #7c3aed;
}

.hero-section {
  position: relative;
  height: 500px;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  color: #fff;
  z-index: 10;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.25rem;
  font-weight: 300;
}

.btn-primary {
  background-color: #7c3aed;
  border-color: #7c3aed;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #6d28d9;
  border-color: #6d28d9;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
}

.btn-outline-primary {
  color: #7c3aed;
  border-color: #7c3aed;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background-color: #7c3aed;
  border-color: #7c3aed;
  color: #fff;
  transform: translateY(-2px);
}

.category-card,
.product-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  padding: 1.5rem;
  background: #fff;
}

.category-card:hover,
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.product-card img {
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

.product-body h4 {
  color: #1f2937;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.info-card,
.feature-box {
  padding: 1.5rem;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  height: 100%;
  transition: border-color 0.3s ease;
}

.info-card:hover,
.feature-box:hover {
  border-color: #7c3aed;
}

.info-card h4,
.feature-box h5 {
  color: #7c3aed;
  margin-bottom: 1rem;
}

.responsible-use-notice {
  background: #fef3c7;
  border: 2px solid #fbbf24;
  border-radius: 0.5rem;
  padding: 2rem;
}

.testimonial-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  padding: 2rem;
  height: 100%;
}

.customer-name {
  font-weight: 600;
  color: #7c3aed;
  margin-top: 1rem;
}

.faq-item {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.faq-item h5 {
  color: #1f2937;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.cta-section {
  background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
}

.footer {
  background-color: #1f2937;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #a78bfa;
}

.page-header {
  background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
  border-bottom: 3px solid #7c3aed;
}

.product-detail {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  padding: 2rem;
}

.product-category {
  color: #7c3aed;
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.ingredient-list {
  line-height: 1.8;
}

.info-box {
  background: #fef3c7;
  border: 2px solid #fbbf24;
  border-radius: 0.5rem;
  padding: 2rem;
}

.contact-info {
  background: #f9fafb;
  border-left: 4px solid #7c3aed;
  padding: 1.5rem;
  margin-top: 1rem;
}

.contact-form-box {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  padding: 2rem;
}

.form-control:focus {
  border-color: #7c3aed;
  box-shadow: 0 0 0 0.2rem rgba(124, 58, 237, 0.25);
}

.legal-content h2 {
  color: #1f2937;
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.legal-content h3 {
  color: #374151;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.legal-content ul {
  margin-bottom: 1.5rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1f2937;
  color: #fff;
  padding: 1.5rem 0;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  display: none;
}

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

.cookie-banner a {
  color: #a78bfa;
  text-decoration: underline;
}

.cookie-banner a:hover {
  color: #c4b5fd;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }

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

  .hero-section {
    height: 400px;
  }
}
