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

.navbar-brand {
  font-size: 1.5rem;
  letter-spacing: -0.5px;
}

.hero-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-section h1 {
  color: #212529;
}

.hero-section .lead {
  color: #495057;
}

.categories-section {
  background-color: #ffffff;
}

.category-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
}

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

.category-card img {
  height: 250px;
  object-fit: cover;
}

.product-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e9ecef;
}

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

.product-card img {
  height: 220px;
  object-fit: cover;
}

.info-section {
  background-color: #f8f9fa;
}

.info-icon {
  font-size: 3rem;
  color: #28a745;
  font-weight: bold;
}

.page-header {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.btn-success {
  background-color: #28a745;
  border-color: #28a745;
  transition: all 0.3s ease;
}

.btn-success:hover {
  background-color: #218838;
  border-color: #1e7e34;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

.btn-outline-success {
  color: #28a745;
  border-color: #28a745;
  transition: all 0.3s ease;
}

.btn-outline-success:hover {
  background-color: #28a745;
  border-color: #28a745;
  color: #ffffff;
  transform: translateY(-2px);
}

.text-success {
  color: #28a745 !important;
}

.border-success {
  border-color: #28a745 !important;
}

.footer {
  background-color: #212529;
}

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

.footer a:hover {
  color: #28a745 !important;
}

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

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

.legal-content p {
  margin-bottom: 1rem;
  color: #495057;
}

.legal-content ul {
  margin-bottom: 1rem;
  color: #495057;
}

.legal-content li {
  margin-bottom: 0.5rem;
}

.contact-info {
  background-color: #f8f9fa;
  padding: 1.5rem;
  border-radius: 8px;
}

.business-hours {
  background-color: #f8f9fa;
  padding: 1.5rem;
  border-radius: 8px;
}

.thank-you-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.thank-you-content {
  background-color: #f8f9fa;
  border-radius: 12px;
  padding: 3rem;
}

.success-icon {
  display: inline-block;
}

.step-card {
  background-color: #ffffff;
  border-radius: 8px;
  border: 1px solid #e9ecef;
  height: 100%;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #212529;
  color: #ffffff;
  padding: 1rem 0;
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  display: none;
}

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

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

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

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

@media (max-width: 768px) {
  .hero-section {
    padding: 40px 0;
  }

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

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

  .thank-you-content {
    padding: 2rem 1rem;
  }

  .action-buttons .btn {
    display: block;
    width: 100%;
    margin-bottom: 0.5rem;
  }

  .action-buttons .btn.mr-3 {
    margin-right: 0 !important;
  }
}

@media (max-width: 576px) {
  .display-4 {
    font-size: 2rem;
  }

  .lead {
    font-size: 1rem;
  }
}
