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

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

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

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

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

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

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

.btn-outline-danger:hover {
  background-color: #dc3545;
  border-color: #dc3545;
  transform: translateY(-2px);
}

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

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

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

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

.category-card {
  padding: 20px;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.category-card h3 {
  color: #212529;
  margin-bottom: 15px;
}

.category-card p {
  color: #6c757d;
  line-height: 1.6;
}

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

.info-card {
  padding: 20px;
}

.info-icon {
  font-size: 3rem;
}

.info-card h4 {
  color: #212529;
  margin-bottom: 15px;
}

.info-card p {
  color: #6c757d;
  line-height: 1.6;
}

.product-card {
  padding: 20px;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

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

.product-card h3 {
  color: #212529;
  margin-bottom: 15px;
}

.product-card .text-muted {
  color: #6c757d !important;
  line-height: 1.6;
}

.page-header {
  background-color: #f8f9fa;
}

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

.page-header .lead {
  color: #495057;
}

.breadcrumb {
  background-color: transparent;
}

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

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

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

.info-box {
  background-color: #f8f9fa;
  border-left: 4px solid #dc3545;
}

.info-box h3 {
  color: #212529;
}

.info-box p {
  color: #495057;
  line-height: 1.6;
}

.info-box a {
  color: #dc3545;
  font-weight: 600;
}

.contact-info-card,
.opening-hours-card {
  background-color: #f8f9fa;
}

.contact-info-card h4,
.opening-hours-card h4 {
  color: #212529;
}

.contact-info-card p,
.opening-hours-card p {
  color: #495057;
}

.form-control {
  border: 2px solid #e9ecef;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.form-check-input:checked {
  background-color: #dc3545;
  border-color: #dc3545;
}

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

.thank-you-card {
  background-color: #f8f9fa;
}

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

.policy-content h2 {
  color: #212529;
  margin-top: 30px;
}

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

.policy-content p,
.policy-content li {
  color: #495057;
  line-height: 1.8;
}

.policy-content a {
  color: #dc3545;
  font-weight: 600;
}

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

.footer {
  background-color: #212529;
}

.footer h5 {
  color: #ffffff;
  margin-bottom: 20px;
}

.footer p {
  color: #adb5bd;
  margin-bottom: 8px;
}

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

.footer a:hover {
  color: #dc3545;
}

.footer ul {
  padding-left: 0;
}

.footer ul li {
  margin-bottom: 8px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #212529;
  color: #ffffff;
  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 p {
  margin: 0;
  color: #ffffff;
}

.cookie-banner a {
  color: #dc3545;
  font-weight: 600;
}

.alert-danger {
  border-left: 4px solid #dc3545;
}

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

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

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

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

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