:root {
  --primary-color: #7c3aed;
  --primary-dark: #6d28d9;
  --primary-light: #a78bfa;
  --text-dark: #1f2937;
  --text-light: #6b7280;
  --bg-light: #f9fafb;
  --border-color: #e5e7eb;
}

* {
  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;
}

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

.navbar {
  padding: 1rem 0;
}

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

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

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

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

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

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  padding: 0.75rem 2rem;
  font-weight: 600;
  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 12px rgba(124, 58, 237, 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);
  transform: translateY(-2px);
}

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

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

.category-card:hover {
  transform: translateY(-5px);
  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 {
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.category-content p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

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

.info-icon {
  font-size: 3rem;
  color: var(--primary-color);
}

.info-section h4 {
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.info-section p {
  color: var(--text-light);
}

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

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

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

.footer h5 {
  color: #ffffff;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.footer p,
.footer a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

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

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

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

.page-header .lead {
  color: var(--text-light);
}

.breadcrumb {
  background-color: transparent;
}

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

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

.product-card {
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px 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(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

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

.product-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-content h3 {
  color: var(--text-dark);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.product-content p {
  color: var(--text-light);
  margin-bottom: 1rem;
  flex-grow: 1;
}

.product-features {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.product-features li {
  color: var(--text-light);
  padding: 0.25rem 0;
  position: relative;
  padding-left: 1.5rem;
}

.product-features li:before {
  content: "✓";
  color: var(--primary-color);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.info-section,
.info-box,
.disclaimer-box {
  background-color: var(--bg-light);
}

.border-left-accent {
  border-left: 4px solid var(--primary-color);
}

.list-styled {
  list-style: none;
  padding: 0;
}

.list-styled li {
  padding: 0.5rem 0;
  position: relative;
  padding-left: 1.5rem;
}

.list-styled li:before {
  content: "→";
  color: var(--primary-color);
  font-weight: bold;
  position: absolute;
  left: 0;
}

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

.form-control {
  border: 1px solid var(--border-color);
  padding: 0.75rem;
  border-radius: 4px;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(124, 58, 237, 0.25);
}

.form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.contact-details {
  margin: 2rem 0;
}

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

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

.faq-item h5 {
  color: var(--text-dark);
  font-weight: 600;
}

.faq-item p {
  color: var(--text-light);
}

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

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

.next-steps {
  background-color: #ffffff;
}

.next-steps ul {
  max-width: 500px;
  margin: 0 auto;
}

.info-card {
  background-color: var(--bg-light);
  transition: transform 0.3s ease;
}

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

.policy-text h2 {
  color: var(--text-dark);
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.policy-text h3 {
  color: var(--text-dark);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
  font-size: 1.25rem;
}

.policy-text h4 {
  color: var(--text-dark);
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.policy-text p {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.policy-text ul {
  color: var(--text-light);
  margin-bottom: 1rem;
  padding-left: 2rem;
}

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

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

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

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

.cookie-banner p {
  margin: 0;
  color: #ffffff;
}

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

.cookie-banner .btn-light {
  background-color: #ffffff;
  color: var(--primary-dark);
  border: none;
}

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

.cookie-banner .btn-outline-light:hover {
  background-color: #ffffff;
  color: var(--primary-dark);
}

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

.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  padding: 0.5rem 0;
  position: relative;
  padding-left: 1.5rem;
  color: var(--text-light);
}

.feature-list li:before {
  content: "✓";
  color: var(--primary-color);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.info-banner {
  background-color: var(--bg-light);
}

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

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

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

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

  .navbar-collapse {
    background-color: #ffffff;
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }
}

@media (max-width: 576px) {
  .btn-lg {
    padding: 0.5rem 1.5rem;
    font-size: 1rem;
  }

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

  .cookie-banner .btn {
    margin-top: 0.5rem;
    width: 100%;
  }
}
