:root {
  --primary-color: #fdb913;
  --primary-dark: #e5a711;
  --secondary-color: #2c3e50;
  --text-dark: #1a1a1a;
  --text-light: #6c757d;
  --bg-light: #f8f9fa;
  --white: #ffffff;
  --border-color: #dee2e6;
}

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

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

.brand-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary-color);
  letter-spacing: -0.5px;
}

.navbar {
  border-bottom: 1px solid var(--border-color);
}

.navbar-brand:hover .brand-logo {
  color: var(--primary-color);
}

.nav-link {
  font-weight: 500;
  color: var(--text-dark);
  transition: color 0.3s ease;
}

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

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

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--text-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(253, 185, 19, 0.3);
}

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

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

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

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

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

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

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

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px 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: var(--white);
  padding: 40px 30px;
  text-align: center;
}

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

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

.feature-icon .icon-circle {
  width: 80px;
  height: 80px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 auto;
}

.features-section h4 {
  color: var(--secondary-color);
  font-weight: 700;
  margin-top: 15px;
}

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

.cta-section h2 {
  color: var(--text-dark);
}

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

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

.page-header h1 {
  color: var(--secondary-color);
}

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

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

.category-showcase {
  background-color: var(--white);
  padding: 20px;
  border-radius: 8px;
}

.category-image-wrapper {
  overflow: hidden;
  border-radius: 8px;
}

.category-image-wrapper img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.info-box {
  background-color: var(--bg-light);
  border-left: 4px solid var(--primary-color);
}

.product-card {
  background-color: var(--white);
  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;
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.product-image {
  width: 100%;
  height: 280px;
  overflow: hidden;
}

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

.product-body {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-title {
  color: var(--secondary-color);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.product-description {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 15px;
  flex-grow: 1;
}

.product-features {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.product-features li {
  padding: 5px 0;
  color: var(--text-light);
  font-size: 0.9rem;
}

.product-features li:before {
  content: "✓ ";
  color: var(--primary-color);
  font-weight: 700;
  margin-right: 8px;
}

.contact-form-wrapper {
  background-color: var(--bg-light);
}

.contact-info h5,
.contact-info strong {
  color: var(--secondary-color);
}

.business-hours {
  background-color: var(--bg-light);
}

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

.custom-control-input:checked ~ .custom-control-label::before {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.thank-you-box {
  background-color: var(--bg-light);
}

.success-icon .icon-checkmark {
  width: 100px;
  height: 100px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 auto;
}

.step-box {
  background-color: var(--bg-light);
  border-radius: 8px;
  height: 100%;
}

.legal-text h2 {
  color: var(--secondary-color);
  font-size: 1.75rem;
  font-weight: 700;
  margin-top: 30px;
  margin-bottom: 15px;
}

.legal-text h3 {
  color: var(--secondary-color);
  font-size: 1.35rem;
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 12px;
}

.legal-text h4 {
  color: var(--secondary-color);
  font-size: 1.15rem;
  font-weight: 600;
  margin-top: 15px;
  margin-bottom: 10px;
}

.legal-text h5 {
  color: var(--secondary-color);
  font-size: 1rem;
  font-weight: 600;
  margin-top: 12px;
  margin-bottom: 8px;
}

.legal-text p {
  margin-bottom: 15px;
  color: var(--text-dark);
}

.legal-text ul,
.legal-text ol {
  margin-bottom: 15px;
  padding-left: 25px;
}

.legal-text li {
  margin-bottom: 8px;
  color: var(--text-dark);
}

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

.legal-text a:hover {
  text-decoration: underline;
}

.contact-box {
  background-color: var(--bg-light);
}

.cookie-table-wrapper {
  overflow-x: auto;
  margin: 20px 0;
}

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

.table thead th {
  background-color: var(--secondary-color);
  color: var(--white);
  font-weight: 600;
  border: none;
}

.table-bordered td,
.table-bordered th {
  border-color: var(--border-color);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--secondary-color);
  color: var(--white);
  padding: 20px 0;
  z-index: 9999;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}

.cookie-banner p {
  margin: 0;
  color: var(--white);
}

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

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

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

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

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

.footer a {
  transition: color 0.3s ease;
}

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

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

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

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

  .category-overlay {
    padding: 30px 20px;
  }

  .product-image {
    height: 220px;
  }

  .cookie-banner .btn {
    margin-top: 10px;
    width: 100%;
  }
}

@media (max-width: 576px) {
  .hero-section h1 {
    font-size: 1.75rem;
  }

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

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