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

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

html {
  scroll-behavior: smooth;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--text-dark);
  font-weight: 600;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--primary-dark);
}

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

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

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

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

header {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  font-size: 1.3rem;
  color: var(--primary-color) !important;
}

.logo-icon {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 0.2rem 0.5rem;
  border-radius: 0.25rem;
  margin-right: 0.5rem;
  font-weight: bold;
  font-size: 0.9rem;
}

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

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

.hero {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--white) 100%);
  padding: 5rem 0;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.hero-content .lead {
  font-size: 1.3rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.page-header {
  background-color: var(--primary-light);
  padding: 3rem 0;
  border-bottom: 1px solid var(--border-color);
  text-align: center;
}

.page-header h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.page-header .lead {
  color: var(--text-light);
  font-size: 1.1rem;
}

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

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

.category-card img {
  width: 100%;
  height: 300px;
  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(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--white);
  text-align: center;
  padding: 2rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.category-overlay h3 {
  color: var(--white);
  margin-bottom: 0.5rem;
  font-size: 1.8rem;
}

.category-overlay p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1rem;
}

.features {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.feature-card {
  padding: 2rem;
  background-color: var(--white);
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}

.feature-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-weight: bold;
}

.feature-card h4 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.feature-card p {
  color: var(--text-light);
  font-size: 0.95rem;
}

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

.product-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

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

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

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

.product-info {
  padding: 1.5rem;
}

.product-info h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.product-info p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.category-intro {
  font-size: 1.05rem;
  color: var(--text-light);
}

.cta {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: var(--white);
  text-align: center;
}

.cta h2 {
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.cta p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.contact-form {
  background-color: var(--white);
  padding: 2rem;
  border: 1px solid var(--border-color);
  border-radius: 0.5rem;
}

.form-group label {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.form-control {
  border-color: var(--border-color);
  border-radius: 0.25rem;
  transition: all 0.3s ease;
}

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

.contact-info-block {
  padding: 1.5rem;
  background-color: var(--bg-light);
  border-radius: 0.5rem;
  border-left: 4px solid var(--primary-color);
}

.contact-info-block h4 {
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.contact-info-block p {
  margin-bottom: 0.5rem;
}

.contact-info-block a {
  color: var(--primary-color);
}

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

.thank-you-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.thank-you-icon {
  display: flex;
  justify-content: center;
}

.thank-you-content {
  animation: fadeIn 0.5s ease-in-out;
}

.thank-you-content h1 {
  font-size: 2.5rem;
}

.thank-you-details {
  text-align: left;
}

.thank-you-details ul {
  list-style-position: inside;
}

.thank-you-details li {
  margin-bottom: 0.5rem;
  color: var(--text-light);
}

.contact-reminder {
  text-align: center;
}

.policy-content {
  font-size: 1rem;
  line-height: 1.8;
}

.policy-content h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
  border-bottom: 2px solid var(--primary-light);
  padding-bottom: 0.5rem;
}

.policy-content h4 {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.policy-content ul {
  list-style-position: inside;
  margin-left: 1rem;
  color: var(--text-light);
}

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

.policy-content a {
  color: var(--primary-color);
  text-decoration: underline;
}

.reason-card {
  padding: 1.5rem;
  background-color: var(--bg-light);
  border-radius: 0.5rem;
  border-left: 4px solid var(--primary-color);
  transition: all 0.3s ease;
}

.reason-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.reason-card h4 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.reason-card p {
  color: var(--text-light);
}

.info-box {
  padding: 1.5rem;
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 0.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.info-box:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

.tip-card {
  padding: 1.5rem;
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.tip-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 256, 0.1);
  border-color: var(--primary-color);
}

.tip-card h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.tip-card p {
  color: var(--text-light);
  font-size: 0.95rem;
}

.values-list {
  list-style: none;
}

.values-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-light);
}

.values-list li:last-child {
  border-bottom: none;
}

.values-list strong {
  color: var(--primary-color);
}

footer {
  background-color: var(--bg-light);
}

footer h5 {
  color: var(--text-dark);
}

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

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

footer .small {
  line-height: 1.8;
}

.alert {
  border-radius: 0.5rem;
  border-left: 4px solid;
}

.alert-info {
  border-left-color: var(--primary-color);
  background-color: var(--primary-light);
  color: var(--primary-dark);
}

.alert-warning {
  background-color: #fef3c7;
  border-left-color: #f59e0b;
  color: #78350f;
}

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

  .page-header h1 {
    font-size: 1.8rem;
  }

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

  .cta h2 {
    font-size: 1.5rem;
  }

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

  .navbar-nav {
    margin-top: 1rem;
  }

  .nav-link {
    margin-left: 0;
    margin-bottom: 0.5rem;
  }

  .contact-form {
    padding: 1rem;
  }

  .policy-content {
    font-size: 0.95rem;
  }

  .row > [class^="col-"] {
    margin-bottom: 1rem;
  }

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

  .cookie-consent .row {
    flex-direction: column;
  }

  .cookie-consent .col-md-4 {
    text-align: left;
    margin-top: 1rem;
  }
}

@media (max-width: 576px) {
  body {
    font-size: 0.95rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  .hero {
    padding: 2rem 0;
  }

  .hero-content h1 {
    font-size: 1.5rem;
  }

  .btn-lg {
    padding: 0.5rem 1rem;
    font-size: 0.95rem;
  }

  .product-card {
    margin-bottom: 1rem;
  }

  footer {
    padding: 2rem 0 !important;
  }

  footer .col-md-3 {
    margin-bottom: 1.5rem;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.text-muted {
  color: var(--text-light) !important;
}

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

.border-top {
  border-top: 1px solid var(--border-color) !important;
}
