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;
}

.btn-success {
  background-color: #28a745;
  border-color: #28a745;
  padding: 12px 30px;
  font-weight: 500;
  transition: all 0.3s ease;
}

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

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

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

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

.product-card .card-img-top {
  height: 300px;
}

.category-card .card-img-top {
  height: 300px;
}

.feature-box {
  transition: all 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-5px);
}

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

footer {
  margin-top: 60px;
}

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

footer a:hover {
  opacity: 0.8;
}

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

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

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

.legal-content {
  font-size: 0.95rem;
  line-height: 1.8;
}

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

.legal-content h3 {
  color: #495057;
}

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

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

.breadcrumb {
  background-color: transparent;
  padding: 0;
}

.breadcrumb-item a {
  color: #28a745;
  text-decoration: none;
}

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

.breadcrumb-item.active {
  color: #6c757d;
}

.shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.thank-you-content {
  min-height: 400px;
}

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

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

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

  .card-img-top {
    height: 200px;
  }

  .product-card .card-img-top {
    height: 250px;
  }
}

@media (max-width: 576px) {
  .btn-lg {
    padding: 10px 20px;
    font-size: 1rem;
  }

  .cookie-banner .btn {
    margin-top: 10px;
    width: 100%;
  }
}
