:root {
  --primary-red: #dc3545;
  --dark-red: #c82333;
  --light-gray: #f8f9fa;
  --dark-gray: #343a40;
  --text-dark: #212529;
  --text-light: #6c757d;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
}

.navbar-brand img {
  transition: opacity 0.3s;
}

.navbar-brand img:hover {
  opacity: 0.8;
}

.nav-link {
  font-weight: 500;
  transition: color 0.3s;
}

.nav-link:hover {
  color: var(--primary-red) !important;
}

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

.hero-section h1 {
  color: var(--text-dark);
}

.hero-section .lead {
  color: var(--text-light);
}

.btn-danger {
  background-color: var(--primary-red);
  border-color: var(--primary-red);
  font-weight: 600;
  padding: 12px 30px;
  transition: all 0.3s;
}

.btn-danger:hover {
  background-color: var(--dark-red);
  border-color: var(--dark-red);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}

.btn-outline-danger {
  color: var(--primary-red);
  border-color: var(--primary-red);
  font-weight: 600;
  padding: 12px 30px;
  transition: all 0.3s;
}

.btn-outline-danger:hover {
  background-color: var(--primary-red);
  border-color: var(--primary-red);
  transform: translateY(-2px);
}

.category-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

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

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

.category-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: white;
  padding: 30px;
  text-align: center;
}

.category-overlay h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.category-overlay p {
  margin-bottom: 15px;
}

.info-section {
  background-color: var(--light-gray);
}

.info-icon .badge {
  font-size: 1.5rem;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.product-card {
  border: 1px solid #dee2e6;
  border-radius: 8px;
  transition: all 0.3s;
  overflow: hidden;
}

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

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

.product-card .card-title {
  color: var(--text-dark);
  font-weight: 700;
  font-size: 1.2rem;
}

.product-card .card-text {
  color: var(--text-light);
  font-size: 0.95rem;
}

.page-header {
  background-color: var(--light-gray);
  border-bottom: 3px solid var(--primary-red);
}

.breadcrumb {
  background-color: transparent;
}

.breadcrumb-item a {
  color: var(--primary-red);
  text-decoration: none;
}

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

.breadcrumb-item.active {
  color: var(--text-light);
}

.contact-info-box {
  padding: 20px;
  background-color: var(--light-gray);
  border-radius: 8px;
  border-left: 4px solid var(--primary-red);
}

.contact-info-box h5 {
  color: var(--primary-red);
  font-weight: 700;
  margin-bottom: 15px;
}

.contact-info-box a {
  color: var(--primary-red);
  text-decoration: none;
}

.contact-info-box a:hover {
  text-decoration: underline;
}

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

.form-check-input:checked {
  background-color: var(--primary-red);
  border-color: var(--primary-red);
}

.thank-you-content {
  background-color: var(--light-gray);
  border-radius: 8px;
  padding: 40px;
}

.footer {
  background-color: var(--dark-gray);
  margin-top: 60px;
}

.footer h5 {
  color: white;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s;
}

.footer a:hover {
  color: white;
  text-decoration: underline;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(33, 37, 41, 0.95);
  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: var(--primary-red);
  text-decoration: underline;
}

.cookie-banner .btn-light {
  background-color: white;
  color: var(--text-dark);
}

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

.cookie-banner .btn-outline-light:hover {
  background-color: white;
  color: var(--text-dark);
}

.category-showcase {
  padding: 20px;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.alert {
  border-radius: 8px;
}

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

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

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

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

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

@media (max-width: 576px) {
  .btn-danger,
  .btn-outline-danger {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .category-overlay h3 {
    font-size: 1.4rem;
  }

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