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

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #1a1a1a;
  margin-top: 0;
}

.brand-color {
  color: #7c3aed;
  font-size: 1.5rem;
  letter-spacing: -0.5px;
}

.bg-purple {
  background-color: #7c3aed !important;
}

.btn-purple {
  background-color: #7c3aed;
  border-color: #7c3aed;
  color: #ffffff;
}

.btn-purple:hover {
  background-color: #6d28d9;
  border-color: #6d28d9;
  color: #ffffff;
}

.btn-outline-purple {
  color: #7c3aed;
  border-color: #7c3aed;
}

.btn-outline-purple:hover {
  background-color: #7c3aed;
  border-color: #7c3aed;
  color: #ffffff;
}

.badge-purple {
  background-color: #7c3aed;
  color: #ffffff;
}

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

.navbar-light .navbar-nav .nav-link {
  color: #4b5563;
  font-weight: 500;
  transition: color 0.2s ease;
}

.navbar-light .navbar-nav .nav-link:hover {
  color: #7c3aed;
}

.hero-section {
  background-color: #f8f9fa;
  padding-top: 60px;
  padding-bottom: 60px;
}

.hero-section h1 {
  line-height: 1.2;
  font-size: 3rem;
}

.hero-section img {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15) !important;
}

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

.feature-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-left: auto;
  margin-right: auto;
  background-color: #e9d5ff !important;
  color: #7c3aed !important;
}

.feature-box {
  padding: 20px;
}

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

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15) !important;
}

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

.contact-form .form-control {
  border: 1px solid #e0e0e0;
  padding: 10px 15px;
  font-size: 1rem;
  border-radius: 4px;
}

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

.contact-form label {
  color: #1a1a1a;
  font-weight: 600;
  margin-bottom: 8px;
}

.contact-icon {
  font-size: 3rem;
}

.success-icon {
  width: 100px;
  height: 100px;
  background-color: #7c3aed;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  margin-left: auto;
  margin-right: auto;
  font-weight: bold;
}

footer {
  background-color: #1a1a1a;
  color: #ffffff;
  border-top: 1px solid #e0e0e0;
}

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

footer a:hover {
  color: #7c3aed;
}

.text-white-50 {
  color: rgba(255, 255, 255, 0.6);
}

.bg-white-10 {
  background-color: rgba(255, 255, 255, 0.1);
}

.text-balance {
  text-wrap: balance;
}

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

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

  .container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .navbar-brand {
    font-size: 1.25rem;
  }

  .card {
    margin-bottom: 15px;
  }

  footer .row {
    text-align: center;
  }

  footer .text-md-left {
    text-align: center !important;
  }

  .d-flex.justify-content-md-end {
    justify-content: center !important;
  }
}

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

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

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

  .lead {
    font-size: 1rem;
  }

  .btn {
    padding: 10px 20px;
    font-size: 0.95rem;
  }

  .feature-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
}
