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

html,
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans",
    "Droid Sans", "Helvetica Neue", sans-serif;
  color: #333;
  line-height: 1.6;
}

body {
  background-color: #ffffff;
}

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

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

.btn-danger {
  background-color: #c41e3a;
  border-color: #c41e3a;
  color: white;
}

.btn-danger:hover {
  background-color: #a01729;
  border-color: #a01729;
  color: white;
}

.btn-outline-danger {
  color: #c41e3a;
  border-color: #c41e3a;
}

.btn-outline-danger:hover {
  background-color: #c41e3a;
  border-color: #c41e3a;
  color: white;
}

.navbar-brand {
  letter-spacing: 0.5px;
}

.navbar-light .navbar-nav .nav-link {
  color: #333 !important;
  font-weight: 500;
  transition: color 0.3s ease;
}

.navbar-light .navbar-nav .nav-link:hover {
  color: #c41e3a !important;
}

.form-control {
  background-color: white;
  color: #333;
  border: 1px solid #dee2e6;
}

.form-control:focus {
  color: #333;
  background-color: white;
  border-color: #c41e3a;
  box-shadow: 0 0 0 0.2rem rgba(196, 30, 58, 0.25);
}

.category-preview:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15) !important;
}

.product-card {
  transition: all 0.3s ease;
}

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

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

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

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

.cookie-content p {
  margin: 0;
  flex: 1;
  min-width: 250px;
}

.cookie-link {
  color: #c41e3a;
  text-decoration: underline;
  margin-left: 20px;
  display: inline-block;
}

@media (max-width: 768px) {
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-content p {
    width: 100%;
  }

  .cookie-link {
    margin-left: 0;
    margin-top: 10px;
  }

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

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

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

  .hero-section h1 {
    font-size: 1.75rem !important;
    margin-bottom: 15px !important;
  }

  .hero-section p {
    font-size: 1rem !important;
    margin-bottom: 20px !important;
  }

  .btn-lg {
    padding: 10px 30px !important;
    font-size: 0.95rem !important;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 15px;
}

section {
  position: relative;
  z-index: 1;
}

img {
  max-width: 100%;
  height: auto;
}

footer a {
  transition: color 0.3s ease;
}

footer a:hover {
  color: #c41e3a;
}
