:root {
  /* General Colors */
  --primary-accent-color: #c5d961;
  --primary-text-color: #000000;
  --secondary-text-color: #555555;
  --white-font-color: #ffffff;

  /* Filter Navigation Colors */
  --filter-border-color: #cccccc;
  --filter-bg-color: #ffffff;
  --filter-button-hover-color: #c6d9634d;

  /* Product Section Colors */
  --summary-bubble-bg-color: #d8ecb3;
  --results-box-bg-color: #f1f8e8;
  --checkmark-color: #7cae2f;
}

/* === HERO SECTION === */
.hero-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  gap: 2rem;
  padding: 10rem 2rem 4rem;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.hero-title {
  flex: 1;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-description {
  flex: 1;
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--secondary-text-color);
  max-width: 600px;
  line-height: 1.6;
}

/* === PRODUCTS NAVIGATION === */
.products-navigation {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  margin: 0 auto;
  padding: 0.5rem;
  border: 1px solid var(--filter-border-color);
  border-radius: 999px;
  max-width: 800px;
  box-sizing: border-box;
  overflow: hidden;
  position: sticky;
  top: 10rem;
  background-color: var(--filter-bg-color);
  z-index: 999;
}

.navigation-button {
  flex: 1 1 auto;
  text-align: center;
  padding: 0.7rem 1.2rem;
  border: none;
  background: transparent;
  color: var(--primary-text-color);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition:
    background-color 0.3s ease,
    color 0.3s ease;
  border-radius: 999px;
}

.navigation-button.active {
  background-color: var(--primary-accent-color);
  color: var(--white-font-color);
}

.navigation-button:hover:not(.active) {
  background-color: var(--filter-button-hover-color);
}

/* === SECTION TITLES === */
.section-title {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 700;
  margin: 6rem 5rem 2rem;
  text-align: left;
  line-height: 1.4;
}

.product-section {
  padding: 0rem 2rem 0rem;
  margin: 0 auto;
}

.section-image {
  display: block;
  margin: 2rem auto;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

html {
  scroll-padding-top: 10rem;
}

@media (max-width: 1024px) {
  .hero-section {
    padding-top: 7rem;
  }
}

@media (max-width: 768px) {
  .hero-section {
    flex-direction: column;
    text-align: center;
    padding: 6rem 1.5rem 3rem;
  }
  .section-title {
    margin-left: 1rem;
    margin-right: auto;
    text-align: left;
  }

  .hero-title,
  .hero-description {
    flex: unset;
    max-width: 100%;
  }

  .products-navigation {
    justify-content: center;
    flex-wrap: wrap;
    max-width: 95%;
    top: 6rem;
  }

  @media (hover: none) {
    .navigation-button:hover:not(.active) {
      background-color: transparent;
    }
  }

  .navigation-button {
    margin: 0.3rem;
    padding: 0.6rem 1rem;
  }

  .navigation-button.active {
    padding: 0.6rem 0.9rem;
  }
}

@media (max-width: 480px) {
  .products-navigation {
    border-radius: 1.2rem;
    gap: 0.4rem;
    padding: 0.3rem;
  }

  .navigation-button {
    border-radius: 1rem;
    padding: 0.6rem 0.8rem;
  }

  .navigation-button.active {
    padding: 0.6rem 0.8rem;
  }
}

/* === PRODUCT INFO SECTION === */
.top-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
  max-width: 1200px;
  margin: 1rem auto;
  padding: 0 2rem;
  flex-wrap: nowrap;
  position: relative;
  z-index: 1;
}

.top-intro {
  flex: 1 1 55%;
  min-width: 300px;
}

.top-intro h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.top-intro h3::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  margin-top: 10px;
  background: linear-gradient(90deg, #c5d961, #8db738);
  border-radius: 2px;
}

.top-intro p {
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 95%;
}

.summary-bubble-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.summary-bubble {
  background-color: var(--summary-bubble-bg-color);
  padding: 0.4rem 1rem;
  border-radius: 999px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.059);
  transition: background-color 0.3s ease;
}

.summary-text {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
}

/* === RESULTS BOX (RIGHT COLUMN) === */
.results-box {
  flex: 1 1 38%;
  min-width: 300px;
  background: var(--results-box-bg-color);
  border-radius: 14px;
  padding: 1.75rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(197, 217, 97, 0.3);
  transition: all 0.3s ease;
}

.results-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.results-box h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 0 1.25rem 0;
  position: relative;
  padding-bottom: 8px;
}

.results-box h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--primary-accent-color);
}

.results-box ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.results-box li {
  font-size: 1rem;
  display: block;
  align-items: flex-start;
  gap: 0.7rem;
  line-height: 1.5;
}

.results-box li::before {
  padding-right: 1rem;
  content: "✓";
  color: var(--checkmark-color);
  font-weight: bold;
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* === FADE IN ANIMATION === */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media screen and (max-width: 900px) {
  .top-section {
    flex-direction: column;
    align-items: center;
    padding: 0 1rem;
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
  }

  .top-intro {
    flex: 1 1 100%;
    width: 100%;
    max-width: 700px;
  }

  .results-box {
    flex: 1 1 100%;
    width: 100%;
    max-width: 600px;
    min-width: unset;
    margin: 0 auto;
    box-sizing: border-box;
  }

  .top-intro h3 {
    font-size: 1.4rem;
  }

  .results-box h3 {
    font-size: 1.2rem;
  }

  .summary-bubble-row {
    justify-content: flex-start;
  }
}

.consumer-section .top-section {
  margin-bottom: 4rem;
}
