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

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

.navbar {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.5rem;
}

.brand-name {
  color: #1a1a1a;
  font-weight: 700;
}

.nav-link {
  color: #1a1a1a;
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #fdb913;
}

.nav-link.active {
  color: #fdb913;
}

.hero-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #4a4a4a;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-cta {
  margin-top: 2rem;
}

.btn-primary {
  background-color: #fdb913;
  border-color: #fdb913;
  color: #1a1a1a;
  font-weight: 600;
  padding: 12px 32px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #e5a610;
  border-color: #e5a610;
  color: #1a1a1a;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(253, 185, 19, 0.3);
}

.btn-outline-dark {
  border-color: #1a1a1a;
  color: #1a1a1a;
  font-weight: 600;
  padding: 12px 32px;
  transition: all 0.3s ease;
}

.btn-outline-dark:hover {
  background-color: #1a1a1a;
  border-color: #1a1a1a;
  color: #ffffff;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

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

.category-card {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: #ffffff;
}

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

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

.category-content {
  padding: 2rem;
}

.category-content h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.category-content p {
  color: #4a4a4a;
  margin-bottom: 1.5rem;
}

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

.info-icon {
  width: 60px;
  height: 60px;
  background-color: #fdb913;
  color: #1a1a1a;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
}

.info-section h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.info-section p {
  color: #4a4a4a;
}

.page-header {
  background-color: #f8f9fa;
  border-bottom: 3px solid #fdb913;
}

.breadcrumb {
  background-color: transparent;
}

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

.breadcrumb-item a:hover {
  color: #fdb913;
}

.breadcrumb-item.active {
  color: #1a1a1a;
}

.product-card {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: #ffffff;
  height: 100%;
}

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

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

.product-info {
  padding: 1.5rem;
}

.product-info h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.75rem;
}

.product-info p {
  color: #4a4a4a;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.category-showcase {
  padding: 2rem;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.category-showcase h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.product-features {
  list-style: none;
  padding-left: 0;
}

.product-features li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: #4a4a4a;
}

.product-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #fdb913;
  font-weight: 700;
}

.feature-box {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-4px);
}

.feature-box h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.75rem;
}

.cta-section {
  background-color: #1a1a1a;
  color: #ffffff;
}

.cta-section h2 {
  color: #ffffff;
}

.cta-section .lead {
  color: #e0e0e0;
}

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

.form-control {
  border: 2px solid #e0e0e0;
  border-radius: 4px;
  padding: 0.75rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: #fdb913;
  box-shadow: 0 0 0 0.2rem rgba(253, 185, 19, 0.25);
}

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

.contact-info h5 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.contact-item {
  padding: 1rem;
  background-color: #f8f9fa;
  border-radius: 8px;
}

.map-placeholder {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.thank-you-content {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

.policy-content {
  background-color: #ffffff;
}

.policy-content h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.policy-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.policy-content p {
  color: #4a4a4a;
  margin-bottom: 1rem;
  line-height: 1.8;
}

.policy-content ul {
  color: #4a4a4a;
  margin-bottom: 1rem;
  padding-left: 2rem;
}

.policy-content li {
  margin-bottom: 0.5rem;
}

.footer {
  background-color: #1a1a1a;
  color: #ffffff;
}

.footer h5 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

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

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

.footer ul {
  list-style: none;
  padding-left: 0;
}

.footer ul li {
  margin-bottom: 0.5rem;
}

.footer .text-muted {
  color: #b0b0b0 !important;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 1.5rem 0;
  z-index: 9999;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
}

.cookie-banner p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.cookie-banner a {
  color: #fdb913;
  text-decoration: underline;
}

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

.cookie-banner .btn-outline-light:hover {
  background-color: #ffffff;
  color: #1a1a1a;
}

.cookie-banner.hidden {
  display: none;
}

.info-card {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.info-card:hover {
  transform: translateY(-4px);
}

.info-card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.75rem;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .hero-cta .btn {
    display: block;
    width: 100%;
    margin-bottom: 1rem;
  }

  .hero-cta .btn.ml-3 {
    margin-left: 0 !important;
  }

  .cookie-banner .col-md-4 {
    text-align: center !important;
    margin-top: 1rem;
  }

  .cookie-banner .btn {
    display: block;
    width: 100%;
    margin-bottom: 0.5rem;
  }

  .cookie-banner .btn.mr-2 {
    margin-right: 0 !important;
  }
}

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

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

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