:root {
  --primary: #7c3aed;
  --primary-light: #a78bfa;
  --dark: #1f2937;
  --light: #f3f4f6;
  --border: #e5e7eb;
  --text: #111827;
}

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

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background-color: #ffffff;
}

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

a:hover {
  color: var(--primary-light);
  text-decoration: none;
}

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

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

.navbar-brand {
  font-weight: 700;
}

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

.nav-link:hover {
  color: var(--primary) !important;
}

.hero-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f3f4f6 0%, #faf5ff 100%);
  border-bottom: 1px solid var(--border);
}

.hero-section h1 {
  font-size: 3rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-section .lead {
  font-size: 1.25rem;
  color: #6b7280;
  margin-bottom: 30px;
}

.hero-section img {
  box-shadow: 0 10px 40px rgba(124, 58, 237, 0.1);
}

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

.btn-primary:hover {
  background-color: #6d28d9;
  border-color: #6d28d9;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
}

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

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

.features-section {
  padding: 60px 0;
  background-color: #ffffff;
}

.feature-card {
  text-align: center;
  padding: 30px;
  border-radius: 12px;
  background-color: var(--light);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(124, 58, 237, 0.1);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.feature-card h5 {
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}

.feature-card p {
  color: #6b7280;
  font-size: 0.95rem;
}

.categories-section {
  padding: 80px 0;
  background-color: var(--light);
}

.categories-section h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--dark);
}

.category-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  height: 350px;
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.category-card:hover img {
  transform: scale(1.05);
}

.category-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(124, 58, 237, 0.9);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 30px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.category-card:hover .category-overlay {
  opacity: 1;
}

.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #7c3aed 0%, #a78bfa 100%);
  color: white;
  text-align: center;
}

.cta-section h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 15px;
}

.cta-section p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.95;
}

.page-header {
  padding: 60px 0;
  background: linear-gradient(135deg, #f3f4f6 0%, #faf5ff 100%);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.page-header h1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 10px;
}

.page-header p {
  font-size: 1.1rem;
  color: #6b7280;
}

.content-section {
  padding: 60px 0;
}

.content-section h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 30px;
}

.content-section h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-top: 40px;
  margin-bottom: 15px;
}

.content-section p {
  color: #6b7280;
  line-height: 1.8;
  margin-bottom: 15px;
}

.content-section ul {
  margin-left: 20px;
  margin-bottom: 15px;
}

.content-section li {
  color: #6b7280;
  margin-bottom: 8px;
  line-height: 1.8;
}

.sidebar-card {
  background-color: var(--light);
  padding: 25px;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.sidebar-card h6 {
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 15px;
}

.info-box {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.info-box h6 {
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.info-box ul {
  margin-left: 0;
}

.info-box li {
  color: #6b7280;
  margin-bottom: 8px;
  list-style: none;
  padding-left: 0;
}

.product-card {
  background-color: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.product-card:hover {
  box-shadow: 0 10px 30px rgba(124, 58, 237, 0.15);
  transform: translateY(-5px);
}

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

.product-info {
  padding: 20px;
}

.product-info h5 {
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.product-description {
  font-size: 0.95rem;
  color: #6b7280;
  margin-bottom: 15px;
  line-height: 1.6;
}

.product-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 15px;
}

.category-box {
  background-color: var(--light);
  padding: 30px;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.category-box img {
  box-shadow: 0 5px 15px rgba(124, 58, 237, 0.1);
}

.category-box h3 {
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 15px;
}

.category-box p {
  color: #6b7280;
  margin-bottom: 20px;
  line-height: 1.8;
}

.contact-info {
  background-color: var(--light);
  padding: 25px;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.contact-info h6 {
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 15px;
}

.contact-info p {
  color: #6b7280;
  font-size: 0.95rem;
  line-height: 1.8;
}

.contact-form {
  background-color: var(--light);
  padding: 30px;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.contact-form .form-control {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 15px;
  font-size: 0.95rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form .form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.contact-form label {
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.custom-control-label {
  color: #6b7280;
  font-size: 0.95rem;
}

.custom-control-label a {
  color: var(--primary);
  font-weight: 600;
}

.thank-you-section {
  padding: 80px 0;
  min-height: 60vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #f3f4f6 0%, #faf5ff 100%);
}

.thank-you-card {
  background-color: white;
  padding: 50px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(124, 58, 237, 0.1);
  border: 1px solid var(--border);
}

.success-icon {
  font-size: 4rem;
  color: var(--primary);
  margin-bottom: 20px;
  font-weight: bold;
}

.thank-you-card h1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 15px;
}

.thank-you-card .lead {
  color: #6b7280;
  margin-bottom: 15px;
}

.thank-you-card p {
  color: #6b7280;
  font-size: 1rem;
  margin-bottom: 15px;
}

.legal-section {
  padding: 60px 0;
}

.legal-section h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 30px;
  margin-top: 0;
}

.legal-section h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  margin-top: 35px;
  margin-bottom: 15px;
}

.legal-section p {
  color: #6b7280;
  line-height: 1.8;
  margin-bottom: 15px;
}

.legal-section ul {
  margin-left: 20px;
  margin-bottom: 15px;
}

.legal-section li {
  color: #6b7280;
  margin-bottom: 10px;
  line-height: 1.8;
}

.footer {
  background-color: var(--dark);
  color: white;
  padding: 50px 0 20px 0;
  margin-top: 80px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer h6 {
  font-weight: 700;
  color: var(--primary-light);
  margin-bottom: 15px;
}

.footer p,
.footer li {
  font-size: 0.9rem;
  color: #d1d5db;
}

.footer a {
  color: var(--primary-light);
  transition: color 0.3s ease;
}

.footer a:hover {
  color: white;
}

.footer hr {
  border-color: rgba(255, 255, 255, 0.1);
  margin: 30px 0;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--dark);
  color: white;
  padding: 20px 0;
  z-index: 1000;
  box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.2);
}

.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cookie-banner p {
  margin: 0;
  font-size: 0.95rem;
  color: #d1d5db;
}

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

.cookie-banner .btn {
  white-space: nowrap;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 8px 16px;
}

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

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

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

  .categories-section h2,
  .page-header h1,
  .cta-section h2 {
    font-size: 1.8rem;
  }

  .feature-card {
    margin-bottom: 20px;
  }

  .product-card {
    margin-bottom: 20px;
  }

  .contact-form {
    margin-top: 30px;
  }

  .thank-you-card {
    padding: 30px;
  }

  .thank-you-card h1 {
    font-size: 1.8rem;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

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

  .content-section {
    padding: 40px 0;
  }
}

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

  .categories-section h2,
  .cta-section h2,
  .page-header h1 {
    font-size: 1.5rem;
  }

  .category-card {
    height: 250px;
  }

  .product-image {
    height: 200px;
  }

  .thank-you-card {
    padding: 20px;
  }

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

  .thank-you-card h1 {
    font-size: 1.5rem;
  }
}

.info-section {
  background-color: var(--light);
  padding: 25px;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.info-section h3 {
  color: var(--primary);
  margin-top: 0;
}
