:root {
  --primary-red: #dc3545;
  --dark-bg: #212529;
  --light-bg: #f8f9fa;
  --text-dark: #212529;
  --text-light: #ffffff;
  --border-color: #dee2e6;
}

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

html,
body {
  height: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: #ffffff;
}

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

a:hover {
  color: #c82333;
  text-decoration: none;
}

.hero-section {
  background: linear-gradient(135deg, var(--dark-bg) 0%, #1a1e22 100%);
  min-height: 500px;
  display: flex;
  align-items: center;
}

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

.hero-section img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-header {
  background: var(--dark-bg);
  color: var(--text-light);
  padding: 3rem 0;
  text-align: center;
}

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

.page-header p {
  font-size: 1.1rem;
  opacity: 0.9;
}

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

.features h2 {
  color: var(--text-dark);
  font-size: 2rem;
  margin-bottom: 3rem;
}

.card {
  border: 1px solid var(--border-color);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 16px rgba(220, 53, 69, 0.1);
}

.card-title {
  font-weight: 600;
  font-size: 1.1rem;
}

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

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

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

.product-card .card-body {
  padding: 1.5rem;
}

.btn-danger {
  background-color: var(--primary-red);
  border-color: var(--primary-red);
  font-weight: 600;
  padding: 0.6rem 1.5rem;
  transition: all 0.3s ease;
}

.btn-danger:hover {
  background-color: #c82333;
  border-color: #c82333;
  transform: translateY(-2px);
}

.btn-outline-danger {
  color: var(--primary-red);
  border-color: var(--primary-red);
  font-weight: 600;
}

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

.featured-products {
  padding: 4rem 0;
}

.featured-products h2 {
  font-size: 2rem;
  margin-bottom: 3rem;
  text-align: center;
}

.cta-section {
  background: var(--dark-bg);
  color: var(--text-light);
  text-align: center;
  padding: 4rem 0;
}

.cta-section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

footer {
  background-color: var(--dark-bg);
  color: var(--text-light);
  margin-top: auto;
}

footer h5,
footer h6 {
  font-weight: 600;
}

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

footer a:hover {
  opacity: 1;
}

.contact-form {
  background-color: var(--light-bg);
  padding: 2rem;
  border-radius: 8px;
}

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

.contact-form .form-control:focus {
  border-color: var(--primary-red);
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

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

.contact-form .form-check-label {
  font-weight: 400;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--dark-bg);
  color: var(--text-light);
  padding: 1.5rem;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 999;
  display: none;
}

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

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cookie-content p {
  margin: 0 1rem 0 0;
  flex: 1;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

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

.about-content {
  line-height: 1.8;
}

.about-content h2 {
  color: var(--text-dark);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.about-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.policy-content {
  line-height: 1.8;
}

.policy-content h3 {
  color: var(--text-dark);
  font-weight: 700;
  margin-bottom: 1rem;
}

.policy-content p {
  margin-bottom: 1rem;
}

.policy-content ul {
  margin-bottom: 1rem;
  margin-left: 1.5rem;
}

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

.info-section {
  background-color: var(--light-bg);
  padding: 3rem 0;
}

.info-section h5 {
  color: var(--primary-red);
  font-weight: 700;
  margin-bottom: 1rem;
}

.navbar {
  background-color: var(--dark-bg) !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
}

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

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

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

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

  .hero-section {
    min-height: 400px;
  }

  .cookie-content {
    flex-direction: column;
    gap: 1rem;
  }

  .cookie-content p {
    margin: 0;
  }

  .cookie-buttons {
    width: 100%;
  }

  .cookie-buttons button {
    flex: 1;
  }

  .card {
    margin-bottom: 1.5rem;
  }

  .contact-form {
    background-color: transparent;
    padding: 0;
  }

  .about-content img {
    margin-bottom: 2rem;
  }

  .page-header {
    padding: 2rem 0;
  }

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

  footer .row {
    margin-bottom: 2rem;
  }

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

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

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

  .card-title {
    font-size: 1rem;
  }

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

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