:root {
  --primary: #e8d21d;
  --primary-dark: #c4b319;
  --secondary: #2c3e50;
  --light: #f8f9fa;
  --dark: #212529;
  --gray: #6c757d;
}

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

.text-primary {
  color: var(--primary) !important;
}

.bg-primary {
  background-color: var(--primary) !important;
  color: var(--dark) !important;
}

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

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

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

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

.navbar-brand {
  font-size: 1.5rem;
  letter-spacing: 0.5px;
}

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

.min-vh-75 {
  min-height: 75vh;
}

.min-vh-60 {
  min-height: 60vh;
}

.icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.icon-text {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--dark);
}

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

.icon-text-large {
  font-size: 0.9rem;
  font-weight: bold;
  color: var(--secondary);
}

.icon-circle-xl {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background-color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.icon-text-xl {
  font-size: 3rem;
  font-weight: bold;
  color: var(--dark);
}

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

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

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

.page-header {
  border-bottom: 3px solid var(--primary);
}

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

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

.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

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

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

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

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

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

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

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

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

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

  .cookie-banner {
    padding: 1rem 0;
  }
}
