:root {
  --primary-color: #dc2626;
  --primary-dark: #b91c1c;
  --secondary-color: #1f2937;
  --text-dark: #111827;
  --text-light: #6b7280;
  --border-color: #e5e7eb;
  --bg-light: #f9fafb;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
}

.navbar {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.navbar-brand {
  font-size: 1.5rem;
  color: var(--primary-color) !important;
  letter-spacing: -0.5px;
}

.nav-link {
  color: var(--text-dark) !important;
  font-weight: 500;
  padding-left: 1rem !important;
  padding-right: 1rem !important;
  transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-color) !important;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  font-weight: 600;
  padding: 0.6rem 1.5rem;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(220, 38, 38, 0.2);
}

.btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
  font-weight: 600;
  padding: 0.6rem 1.5rem;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
  transform: translateY(-2px);
}

.hero-section {
  margin-top: 72px;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  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: linear-gradient(135deg, rgba(220, 38, 38, 0.8), rgba(31, 41, 55, 0.7));
  display: flex;
  align-items: center;
}

.page-header {
  margin-top: 72px;
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: var(--bg-light);
}

.category-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

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

.category-content {
  padding: 2rem;
  background: white;
}

.product-card {
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  background: white;
}

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

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

.product-body {
  padding: 1.5rem;
}

.product-card-detailed {
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  background: white;
  height: 100%;
  transition: all 0.3s ease;
}

.product-card-detailed:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}

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

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
}

.testimonial-card {
  padding: 2rem;
  background: white;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  height: 100%;
}

.faq-item {
  padding: 1.5rem;
  background: white;
  border-radius: 8px;
  border: 1px solid var(--border-color);
}

.value-card {
  padding: 2rem;
  background: white;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  height: 100%;
}

.value-icon {
  font-size: 3rem;
}

.distinction-card {
  padding: 2rem;
  background: white;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  height: 100%;
}

.disclaimer-box {
  padding: 2rem;
  background: #fef2f2;
  border-left: 4px solid var(--primary-color);
  border-radius: 4px;
}

.info-box {
  padding: 2rem;
  background: white;
  border-radius: 8px;
  border: 1px solid var(--border-color);
}

.contact-info-card {
  padding: 1.5rem;
  background: white;
  border-radius: 8px;
  border: 1px solid var(--border-color);
}

.shipping-icon {
  font-size: 3rem;
}

.thank-you-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 60px;
}

.thank-you-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: #10b981;
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.info-box-thank-you {
  padding: 2rem;
  background: var(--bg-light);
  border-radius: 8px;
  margin-top: 2rem;
}

.legal-content {
  line-height: 1.8;
}

.legal-content h2 {
  margin-top: 2rem;
}

.legal-content ul {
  padding-left: 2rem;
}

.ingredient-card {
  padding: 1.5rem;
  background: white;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  height: 100%;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--secondary-color);
  color: white;
  padding: 1.5rem 0;
  z-index: 9999;
  box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.1);
  display: none;
}

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

.cookie-banner a {
  color: #fca5a5;
}

.cookie-banner a:hover {
  color: white;
  text-decoration: underline;
}

footer {
  margin-top: 4rem;
}

footer a {
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: white !important;
}

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

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

  .display-4 {
    font-size: 2.5rem;
  }
}

@media (max-width: 576px) {
  .hero-image-wrapper {
    height: 300px;
  }

  .category-image,
  .product-image {
    height: 200px;
  }
}
