html,
body {
  height: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #1a1a1a;
  background-color: #ffffff;
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #1a1a1a;
}

.navbar-brand {
  font-size: 1.5rem;
  color: #1a7a3d !important;
  letter-spacing: 0.5px;
}

.btn-primary {
  background-color: #1a7a3d;
  border-color: #1a7a3d;
  font-weight: 600;
}

.btn-primary:hover {
  background-color: #156435;
  border-color: #156435;
}

.btn-outline-primary {
  color: #1a7a3d;
  border-color: #1a7a3d;
}

.btn-outline-primary:hover {
  background-color: #1a7a3d;
  border-color: #1a7a3d;
  color: white;
}

.hero-section {
  background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
  padding: 80px 0 !important;
}

.hero-section h1 {
  color: #1a1a1a;
  font-weight: 700;
  line-height: 1.2;
}

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

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(26, 122, 61, 0.1) !important;
}

.product-card {
  transition: transform 0.2s ease;
}

.product-card:hover {
  transform: translateY(-3px);
}

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

.feature-icon {
  font-size: 2rem;
  color: #1a7a3d;
  font-weight: bold;
}

.feature-box {
  background-color: #f9f9f9;
  border-radius: 8px;
}

.card {
  border-radius: 8px;
}

.text-primary {
  color: #1a7a3d !important;
}

.bg-primary {
  background-color: #1a7a3d !important;
}

footer {
  background-color: #1a1a1a !important;
  border-top: 1px solid #333;
}

footer a {
  transition: color 0.3s ease;
}

footer a:hover {
  color: #1a7a3d !important;
}

.form-control {
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 0.75rem 1rem;
}

.form-control:focus {
  border-color: #1a7a3d;
  box-shadow: 0 0 0 0.2rem rgba(26, 122, 61, 0.15);
}

.custom-checkbox .custom-control-label {
  user-select: none;
}

.breadcrumb {
  background-color: transparent;
}

.breadcrumb-item a {
  color: #1a7a3d;
  text-decoration: none;
}

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

.breadcrumb-item.active {
  color: #666;
}

.cookie-banner {
  z-index: 1000;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  border-top: 1px solid #444;
}

.sticky-top {
  z-index: 999;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

img {
  max-width: 100%;
  height: auto;
}

.text-muted {
  color: #666 !important;
}

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

@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 2rem;
  }

  .hero-section p {
    font-size: 1rem;
  }

  .cookie-banner .container {
    flex-direction: column;
    gap: 1rem;
  }

  .cookie-banner button {
    width: 100%;
  }

  .text-md-right {
    text-align: left;
    margin-top: 1rem;
  }
}

@media (max-width: 576px) {
  .navbar-brand {
    font-size: 1.25rem;
  }

  .hero-section {
    padding: 40px 0 !important;
  }

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

.alert-info {
  background-color: #e8f4f0;
  border-color: #1a7a3d;
  color: #1a1a1a;
}
