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;
  color: #0056b3;
}

.navbar-light .navbar-nav .nav-link {
  color: #495057;
  font-weight: 500;
  padding: 0.5rem 1rem;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
  color: #0056b3;
}

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

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

.hero-section .lead {
  color: #495057;
  font-size: 1.25rem;
}

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

.btn-primary:hover {
  background-color: #004494;
  border-color: #004494;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 86, 179, 0.3);
}

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

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

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

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

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

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

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

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

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

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

.cta-section {
  background-color: #0056b3;
}

.page-header {
  border-bottom: 3px solid #0056b3;
}

.page-header h1 {
  color: #212529;
  font-weight: 700;
}

.info-box {
  border-left: 4px solid #0056b3;
}

.feature-icon {
  font-size: 2.5rem;
}

.footer {
  background-color: #212529;
}

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

.footer a {
  transition: color 0.3s ease;
}

.footer a:hover {
  color: #0056b3 !important;
  text-decoration: none;
}

.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 a {
  color: #0056b3;
  text-decoration: underline;
}

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

.min-vh-75 {
  min-height: 75vh;
}

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

.contact-info {
  line-height: 1.8;
}

.breadcrumb {
  background-color: transparent;
}

.breadcrumb-item a {
  color: #0056b3;
  text-decoration: none;
}

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

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

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

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

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

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

  .cookie-banner .text-right {
    text-align: left !important;
    margin-top: 1rem;
  }
}
