* {
  box-sizing: border-box;
}

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

.navbar-brand {
  font-size: 1.5rem;
  color: #dc3545 !important;
}

.nav-link {
  font-weight: 500;
  color: #495057 !important;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #dc3545 !important;
}

.nav-item.active .nav-link {
  color: #dc3545 !important;
}

.btn-primary {
  background-color: #dc3545;
  border-color: #dc3545;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: #c82333;
  border-color: #bd2130;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(220, 53, 69, 0.3);
}

.btn-outline-primary {
  color: #dc3545;
  border-color: #dc3545;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
  background-color: #dc3545;
  border-color: #dc3545;
  color: #fff;
}

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

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

.hero-section .lead {
  color: #6c757d;
}

.features-section .feature-box {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

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

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

.footer {
  margin-top: auto;
}

.footer a:hover {
  color: #ffffff !important;
  text-decoration: underline;
}

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

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

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

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

.shadow {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

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

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

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

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

.cookie-banner .btn-light {
  background-color: #fff;
  color: #212529;
  border: none;
}

.cookie-banner .btn-outline-light {
  color: #fff;
  border-color: #fff;
}

.cookie-banner .btn-outline-light:hover {
  background-color: #fff;
  color: #212529;
}

.policy-content h2 {
  color: #212529;
  border-bottom: 2px solid #dc3545;
  padding-bottom: 10px;
}

.policy-content h4 {
  color: #495057;
}

.policy-content ul {
  padding-left: 20px;
}

.policy-content li {
  margin-bottom: 8px;
}

.policy-content p {
  margin-bottom: 15px;
}

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

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

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

  .cookie-banner .col-md-8,
  .cookie-banner .col-md-4 {
    text-align: center;
  }

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

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

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