:root {
  --primary-color: #dc3545;
  --primary-dark: #c82333;
  --secondary-color: #343a40;
  --light-gray: #f8f9fa;
  --medium-gray: #6c757d;
  --dark-gray: #343a40;
  --white: #ffffff;
  --black: #000000;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

.brand-logo {
  font-size: 1.5rem;
  color: var(--primary-color);
}

.navbar {
  border-bottom: 2px solid var(--light-gray);
}

.navbar-nav .nav-link {
  color: var(--secondary-color);
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary-color);
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
}

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

.btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--white);
}

.hero-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
}

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

.hero-section .lead {
  color: var(--medium-gray);
}

.categories-section {
  background-color: var(--white);
}

.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 16px rgba(0, 0, 0, 0.1);
}

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

.category-card-large img {
  height: 300px;
  object-fit: cover;
}

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

.icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: bold;
}

.icon-circle-large {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  font-size: 3rem;
  font-weight: bold;
}

.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 16px rgba(0, 0, 0, 0.15);
}

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

.page-header {
  background-color: var(--light-gray);
}

.breadcrumb {
  padding: 0;
  margin-bottom: 1rem;
}

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

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

.contact-info-card,
.business-hours-card {
  border: 1px solid #dee2e6;
}

.map-placeholder {
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thank-you-card {
  border: 1px solid #dee2e6;
}

.success-icon {
  animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}

.legal-document {
  line-height: 1.8;
}

.legal-document h2 {
  color: var(--secondary-color);
}

.legal-document ul {
  margin-left: 1.5rem;
}

.legal-document p {
  margin-bottom: 1rem;
}

.cta-section {
  background-color: var(--primary-color);
}

.footer {
  background-color: var(--dark-gray);
}

.footer a {
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.footer a:hover {
  opacity: 0.8;
}

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--secondary-color);
  color: var(--white);
  padding: 1rem 0;
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  display: none;
}

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

.cookie-consent a {
  color: var(--white);
  text-decoration: underline;
}

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

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

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

  .icon-circle {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  .icon-circle-large {
    width: 80px;
    height: 80px;
    font-size: 2.5rem;
  }
}

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

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

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