:root {
  --primary: #dc3545;
  --dark: #212529;
  --light: #f8f9fa;
  --text-dark: #333;
  --text-light: #666;
  --border-color: #ddd;
}

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

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

body {
  background-color: #fff;
}

.navbar-brand {
  font-size: 1.5rem;
  letter-spacing: 0.5px;
}

.brand-accent {
  color: var(--primary);
  font-weight: bold;
}

.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.3s ease;
}

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

.hero-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.hero-overlay {
  position: relative;
  z-index: 1;
}

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

.feature-card {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

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

.value-card {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.value-card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

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

.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(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.category-overlay h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.category-overlay p {
  margin-bottom: 20px;
}

.page-header {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: white;
}

.product-card {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

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

.product-image {
  height: 200px;
  overflow: hidden;
  background: var(--light);
}

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

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

.product-content {
  background: white;
}

.product-card h4 {
  color: var(--text-dark);
  margin-bottom: 15px;
}

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

.feature-icon {
  text-align: center;
}

.icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto;
  font-weight: bold;
}

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

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

.btn-outline-secondary {
  color: var(--text-dark);
  border-color: var(--border-color);
}

.btn-outline-secondary:hover {
  background-color: var(--text-dark);
  border-color: var(--text-dark);
}

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

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

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

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

.custom-checkbox .custom-control-label {
  color: var(--text-dark);
}

.custom-checkbox .custom-control-label a {
  color: var(--primary);
  text-decoration: none;
}

.custom-checkbox .custom-control-label a:hover {
  text-decoration: underline;
}

.thank-you-card {
  background: var(--light);
  border-radius: 10px;
  border: 2px solid var(--primary);
}

.legal-content {
  line-height: 1.8;
  color: var(--text-dark);
}

.legal-content h2 {
  color: var(--text-dark);
  margin-top: 40px;
}

.legal-content p {
  color: var(--text-light);
  margin-bottom: 15px;
}

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

.legal-content li {
  color: var(--text-light);
  margin-bottom: 10px;
}

footer {
  margin-top: 80px;
}

footer h5 {
  font-size: 1rem;
}

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

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  color: white;
  padding: 20px;
  z-index: 9999;
  display: none;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

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

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

.cookie-banner p {
  margin: 0;
  flex: 1;
  font-size: 0.95rem;
}

.cookie-banner-buttons {
  display: flex;
  gap: 10px;
  white-space: nowrap;
}

.min-vh-100 {
  min-height: 100vh;
}

@media (max-width: 768px) {
  .hero-section .row {
    flex-direction: column-reverse;
  }

  .category-card {
    height: 250px;
  }

  .cookie-banner-content {
    flex-direction: column;
    gap: 15px;
  }

  .cookie-banner p {
    flex: none;
  }

  .cookie-banner-buttons {
    width: 100%;
    justify-content: flex-start;
  }

  .btn-group .btn {
    flex: 1;
  }

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

  .hero-section .row align-items-center {
    min-height: auto;
    padding: 40px 0;
  }

  .contact-form {
    padding: 20px;
  }

  .page-header {
    padding: 40px 0;
  }
}

@media (max-width: 576px) {
  .navbar-brand {
    font-size: 1.2rem;
  }

  .feature-icon {
    margin-bottom: 15px;
  }

  .icon-circle {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }

  .row > div {
    margin-bottom: 20px;
  }

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

  footer .row {
    margin-bottom: 30px;
  }
}
