* {
  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;
  background-color: #fff;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #dc3545 !important;
  letter-spacing: 0.5px;
}

.navbar {
  padding: 1rem 0;
}

.nav-link {
  color: #333 !important;
  font-weight: 500;
  margin-left: 1rem;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #dc3545 !important;
}

.nav-link.active {
  color: #dc3545 !important;
}

.hero-section {
  position: relative;
  height: 600px;
  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;
  color: #fff;
}

.hero-overlay h1 {
  font-weight: 700;
}

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

.btn-primary:hover {
  background-color: #c82333;
  border-color: #bd2130;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}

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

.btn-outline-primary:hover {
  background-color: #dc3545;
  border-color: #dc3545;
  color: #fff;
}

.category-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.category-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.category-content {
  padding: 2rem;
}

.category-content h3 {
  color: #dc3545;
  margin-bottom: 1rem;
  font-weight: 700;
}

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

.product-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-color: #dc3545;
}

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

.product-body {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-body h4 {
  color: #333;
  margin-bottom: 1rem;
  font-weight: 700;
}

.product-features {
  list-style: none;
  padding-left: 0;
  margin-top: auto;
}

.product-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 0.9rem;
}

.product-features li:last-child {
  border-bottom: none;
}

.product-features li:before {
  content: "✓ ";
  color: #dc3545;
  font-weight: bold;
  margin-right: 0.5rem;
}

.testimonial-card {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid #dc3545;
  height: 100%;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1rem;
  color: #555;
}

.testimonial-author {
  font-weight: 700;
  color: #dc3545;
  margin-bottom: 0;
}

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

.faq-item h5 {
  color: #dc3545;
  margin-bottom: 1rem;
  font-weight: 700;
}

.info-box {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 12px;
  border: 2px solid #dc3545;
}

.info-box h3 {
  color: #dc3545;
  margin-bottom: 1rem;
}

.cta-section {
  background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
  color: #fff;
  padding: 5rem 0;
  margin-top: 3rem;
}

.cta-section h2 {
  font-weight: 700;
}

.cta-section .btn-primary {
  background-color: #fff;
  color: #dc3545;
  border-color: #fff;
}

.cta-section .btn-primary:hover {
  background-color: #f8f9fa;
  color: #c82333;
  border-color: #f8f9fa;
}

.footer {
  background-color: #222;
  color: #fff;
  padding: 3rem 0 1.5rem;
  margin-top: 3rem;
}

.footer h5 {
  color: #dc3545;
  margin-bottom: 1rem;
  font-weight: 700;
}

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

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

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

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

.footer-divider {
  background-color: #444;
  margin: 2rem 0 1.5rem;
}

.footer-legal-link {
  color: #ccc;
  margin-left: 1rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-legal-link:hover {
  color: #dc3545;
}

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

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

.cookie-banner p {
  margin: 0;
  font-size: 0.95rem;
}

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

.page-hero {
  position: relative;
  height: 400px;
  overflow: hidden;
}

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

.page-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}

.page-hero-overlay h1 {
  font-weight: 700;
}

.page-hero-simple {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 4rem 0;
  margin-bottom: 2rem;
}

.product-detail-card {
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
}

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

.product-detail-body {
  padding: 2rem;
}

.product-detail-body h3 {
  color: #dc3545;
  margin-bottom: 1rem;
  font-weight: 700;
}

.product-detail-body h5 {
  color: #333;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  font-weight: 700;
  font-size: 1.1rem;
}

.product-detail-description {
  color: #555;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.ingredient-list {
  list-style: none;
  padding-left: 0;
}

.ingredient-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 0.95rem;
}

.ingredient-list li:last-child {
  border-bottom: none;
}

.ingredient-list li:before {
  content: "• ";
  color: #dc3545;
  font-weight: bold;
  margin-right: 0.5rem;
}

.ingredient-info-box {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid #dc3545;
}

.ingredient-info-box h4 {
  color: #dc3545;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.feature-box {
  background: #fff;
  padding: 1.5rem;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  height: 100%;
}

.feature-box h4 {
  color: #dc3545;
  margin-bottom: 1rem;
  font-weight: 700;
}

.contact-info-box {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 12px;
  border: 2px solid #dc3545;
  height: 100%;
}

.contact-info-box h3 {
  color: #dc3545;
  margin-bottom: 1.5rem;
}

.contact-item h5 {
  font-weight: 700;
  color: #333;
  margin-bottom: 0.5rem;
}

.contact-item a {
  color: #dc3545;
  text-decoration: none;
}

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

.info-note {
  background: #fff3cd;
  border: 1px solid #ffc107;
  padding: 1.5rem;
  border-radius: 8px;
}

.info-note h5 {
  color: #856404;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.info-note p {
  color: #856404;
  margin-bottom: 0;
  font-size: 0.9rem;
}

.thank-you-content {
  padding: 3rem 0;
}

.thank-you-actions {
  margin-top: 2rem;
}

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

.legal-content h3 {
  color: #333;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  font-weight: 700;
  font-size: 1.25rem;
}

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

.legal-content p {
  margin-bottom: 1rem;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .hero-section {
    height: 400px;
  }

  .page-hero {
    height: 300px;
  }

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

  .nav-link {
    margin-left: 0;
    margin-bottom: 0.5rem;
  }

  .footer-legal-link {
    display: block;
    margin-left: 0;
    margin-bottom: 0.5rem;
  }

  .cta-section {
    padding: 3rem 0;
  }
}
