:root {
  --primary-color: #c84343;
  --primary-dark: #a33535;
  --primary-light: #d96868;
  --secondary-color: #2d3436;
  --text-dark: #2d3436;
  --text-light: #636e72;
  --background-light: #f8f9fa;
  --white: #ffffff;
  --border-radius: 8px;
  --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

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

.site-header {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
  max-height: 50px;
}

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

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

.hero-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  min-height: 70vh;
  background-image: url("../images/hero-background.jpg");
  background-size: cover;
  background-position: center;
  background-blend-mode: multiply;
  position: relative;
}

.hero-overlay {
  background: rgba(45, 52, 54, 0.5);
  min-height: 70vh;
  display: flex;
  align-items: center;
}

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

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

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(200, 67, 67, 0.3);
}

.btn-outline-light {
  border: 2px solid var(--white);
  color: var(--white);
  padding: 12px 30px;
  border-radius: var(--border-radius);
  font-weight: 600;
  transition: all 0.3s ease;
}

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

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

.content-section {
  padding: 60px 0;
}

.card {
  border-radius: var(--border-radius);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card-img-top {
  border-radius: var(--border-radius) var(--border-radius) 0 0;
  height: 200px;
  object-fit: cover;
}

.disclaimer-box {
  background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 100%);
  border-left: 4px solid var(--primary-color);
  padding: 20px;
  border-radius: var(--border-radius);
}

.disclaimer-box-large {
  background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 100%);
  border: 2px solid var(--primary-color);
  padding: 30px;
  border-radius: var(--border-radius);
}

.category-card,
.lifestyle-card,
.habit-card {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 20px;
  box-shadow: var(--box-shadow);
  transition: transform 0.3s ease;
}

.category-card:hover,
.lifestyle-card:hover,
.habit-card:hover {
  transform: translateY(-5px);
}

.ingredient-card {
  background: var(--white);
  padding: 20px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.product-card {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: var(--white);
}

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

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

.product-body {
  padding: 25px;
}

.product-title {
  color: var(--text-dark);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.product-category {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.product-description {
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

.ingredients-block {
  background: var(--background-light);
  padding: 15px;
  border-radius: var(--border-radius);
  margin-top: 15px;
}

.ingredients-block h6 {
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 10px;
}

.ingredients-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.ingredients-list li {
  padding: 5px 0;
  border-bottom: 1px solid #e0e0e0;
}

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

.info-card,
.structure-card,
.quality-card {
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  height: 100%;
}

.approach-card {
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: transform 0.3s ease;
}

.approach-card:hover {
  transform: translateY(-5px);
}

.icon-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.icon-number {
  color: var(--white);
  font-size: 2rem;
  font-weight: 700;
}

.transparency-item h6 {
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.definition-card {
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.border-left-success {
  border-left: 4px solid #27ae60;
}

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

.responsibility-box {
  background: linear-gradient(135deg, var(--background-light) 0%, #e8eaed 100%);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.contact-info-box,
.contact-info-card {
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.contact-detail {
  padding: 10px 0;
}

.info-box {
  background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 100%);
  border-radius: var(--border-radius);
  border-left: 4px solid var(--primary-color);
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.cta-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  padding: 60px 0;
}

.thank-you-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
  background: var(--background-light);
}

.thank-you-box {
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.page-header {
  background: var(--background-light);
  padding: 60px 0;
}

.policy-content h2 {
  color: var(--text-dark);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.policy-content h5 {
  color: var(--primary-color);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

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

.site-footer {
  background: var(--secondary-color);
  color: var(--white);
}

.site-footer h5,
.site-footer h6 {
  color: var(--white);
  font-weight: 700;
  margin-bottom: 1rem;
}

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

.site-footer a:hover {
  color: var(--white);
}

.site-footer ul {
  list-style: none;
  padding: 0;
}

.site-footer ul li {
  margin-bottom: 0.5rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(45, 52, 54, 0.95);
  color: var(--white);
  padding: 20px 0;
  z-index: 9999;
  display: none;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}

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

.cookie-banner p {
  margin-bottom: 0;
}

.cookie-banner a {
  color: var(--white);
}

@media (max-width: 768px) {
  .hero-section {
    min-height: 50vh;
  }

  .hero-overlay {
    min-height: 50vh;
  }

  .min-vh-70 {
    min-height: 50vh;
  }

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

  .lead {
    font-size: 1rem;
  }

  .btn-lg {
    padding: 10px 20px;
    font-size: 1rem;
  }
}

.form-control {
  border-radius: var(--border-radius);
  border: 2px solid #e0e0e0;
  padding: 12px 16px;
  transition: border-color 0.3s ease;
}

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

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

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

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

.rounded {
  border-radius: var(--border-radius);
}

.shadow {
  box-shadow: var(--box-shadow);
}

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