:root {
  --primary-yellow: #ffc107;
  --dark-gray: #212529;
  --light-gray: #f8f9fa;
  --medium-gray: #6c757d;
  --white: #ffffff;
}

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

a {
  transition: all 0.3s ease;
}

.navbar-brand img {
  height: 40px;
}

.nav-link {
  font-weight: 500;
  color: var(--dark-gray) !important;
  padding: 0.5rem 1rem !important;
}

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

.btn-warning {
  background-color: var(--primary-yellow);
  border-color: var(--primary-yellow);
  color: var(--dark-gray);
  font-weight: 600;
}

.btn-warning:hover {
  background-color: #ffb300;
  border-color: #ffb300;
  color: var(--dark-gray);
}

.hero-section {
  position: relative;
  margin-bottom: 0;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
}

.icon-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-block;
}

.icon-circle-large {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: inline-block;
}

.icon-circle-xl {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: inline-block;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--dark-gray);
  color: var(--white);
  padding: 1.5rem 0;
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  display: none;
}

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

.cookie-banner a {
  color: var(--primary-yellow);
  text-decoration: underline;
}

.cookie-banner a:hover {
  color: var(--white);
}

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

footer a:hover {
  color: var(--primary-yellow) !important;
}

.accordion .btn-link {
  color: var(--dark-gray);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
}

.accordion .btn-link:hover {
  color: var(--primary-yellow);
}

.border-warning {
  border: 2px solid var(--primary-yellow) !important;
}

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

@media (max-width: 768px) {
  .hero-image-wrapper {
    height: 400px;
  }

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

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