:root {
  --color-primary: #8b2635;
  --color-primary-dark: #6b1e29;
  --color-primary-light: #a43545;
  --color-text: #1a1a1a;
  --color-text-light: #666666;
  --color-background: #ffffff;
  --color-background-light: #f8f9fa;
  --color-border: #e0e0e0;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--color-text);
  line-height: 1.6;
}

.logo {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-primary);
}

.navbar {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

.navbar-light .navbar-nav .nav-link {
  color: var(--color-text);
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

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

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

.btn-primary:hover {
  background-color: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(139, 38, 53, 0.3);
}

.btn-outline-primary {
  color: var(--color-primary);
  border-color: var(--color-primary);
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
}

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

.hero-section {
  position: relative;
  overflow: hidden;
}

.hero-image {
  position: relative;
  width: 100%;
  min-height: 500px;
}

.hero-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(139, 38, 53, 0.3));
  display: flex;
  align-items: center;
}

.hero-content {
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content h1 {
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-title {
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 1rem;
}

.product-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

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

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

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

.product-card-body h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--color-text);
}

.category-box {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.category-box h3 {
  color: var(--color-primary);
  margin-bottom: 1rem;
  font-weight: 600;
}

.feature-box {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.feature-box h4 {
  color: var(--color-primary);
  margin-bottom: 1rem;
  font-weight: 600;
}

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

.benefit-item h4 {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.testimonial-author {
  font-weight: 600;
  color: var(--color-primary);
  margin-top: 1rem;
}

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

.footer-main {
  background-color: #2c2c2c;
}

.footer-main h5 {
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-main a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-main a:hover {
  color: white;
  text-decoration: none;
}

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

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

.cookie-consent a {
  color: white;
  text-decoration: underline;
}

.cookie-consent .btn-light {
  background-color: white;
  color: var(--color-primary);
  border: none;
}

.cookie-consent .btn-outline-light {
  border-color: white;
  color: white;
}

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

.product-detail {
  padding: 2rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.product-detail h2 {
  color: var(--color-primary);
  font-weight: 700;
  margin-bottom: 1rem;
}

.product-detail h4 {
  color: var(--color-text);
  font-weight: 600;
  font-size: 1.1rem;
}

.product-detail img {
  border-radius: 8px;
}

.contact-form .form-control {
  border: 2px solid var(--color-border);
  border-radius: 8px;
  padding: 0.75rem;
}

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

.contact-info-box {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.contact-info-box h4 {
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: 1rem;
}

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

.thank-you-icon {
  font-size: 5rem;
  color: var(--color-primary);
  background: var(--color-background-light);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.legal-content h2 {
  color: var(--color-primary);
  font-weight: 700;
  font-size: 1.75rem;
  margin-top: 2rem;
}

.legal-content h3 {
  color: var(--color-text);
  font-weight: 600;
  font-size: 1.25rem;
}

@media (max-width: 768px) {
  .hero-image img {
    height: 350px;
  }

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

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

  .cookie-consent .btn {
    margin-top: 0.5rem;
    width: 100%;
  }
}
