/* Built for Production Section */

.production-section {
  background: #FFFFFF;
  padding: 5rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

/* Section Header */
.production-section__header {
  margin-bottom: 3rem;
  /* Fade-in animation */
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.production-section__header.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.production-section__title {
  font-family: 'Recoleta', Georgia, serif;
  font-size: var(--font-size-h2);
  font-weight: 300;
  color: #2A2A2A;
  line-height: var(--line-height-tight);
  margin-bottom: 0.5rem;
}

.production-section__subtitle {
  font-size: var(--font-size-body);
  color: #6B6B6B;
  line-height: var(--line-height-normal);
}

/* Layout: Asymmetric flex */
.production-layout {
  display: flex;
  gap: 4rem;
  align-items: flex-start;
}

/* Main content - left side */
.production-content {
  flex: 1;
  max-width: 580px;
  /* Fade-in animation */
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 500ms ease 100ms, transform 500ms ease 100ms;
}

.production-content.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.production-content__lead {
  font-size: 1.125rem;
  font-weight: 500;
  color: #2A2A2A;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.production-content__text {
  font-size: 1rem;
  color: #5A5A5A;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* 3-Step Process */
.production-steps {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin: 1.5rem 0;
}

.production-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.production-step__number {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2F5A1E;
  color: #FFFFFF;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 50%;
}

.production-step__content {
  flex: 1;
}

.production-step__title {
  font-size: 1rem;
  font-weight: 600;
  color: #2A2A2A;
  margin-bottom: 0.25rem;
}

.production-step__text {
  font-size: 0.9375rem;
  color: #5A5A5A;
  line-height: 1.5;
}

.production-cta-link {
  display: inline-block;
  font-size: 1rem;
  font-weight: 500;
  color: #2F5A1E;
  text-decoration: none;
  transition: opacity var(--transition-fast);
}

.production-cta-link:hover {
  opacity: 0.7;
}

/* Compliance badges - right side */
.production-badges {
  flex-shrink: 0;
  width: 260px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.production-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: #FAFAF8;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 8px;
  /* Fade-in animation */
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.production-badge.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger animation delays */
.production-badge:nth-child(1) {
  transition-delay: 150ms;
}

.production-badge:nth-child(2) {
  transition-delay: 250ms;
}

.production-badge__icon {
  flex-shrink: 0;
  width: 40px;
  height: 48px;
}

.production-badge__icon svg {
  width: 100%;
  height: 100%;
}

.production-badge__text {
  display: flex;
  flex-direction: column;
}

.production-badge__title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #2A2A2A;
  line-height: 1.3;
}

.production-badge__desc {
  font-size: 0.8125rem;
  color: #6B6B6B;
  line-height: 1.3;
}

.production-badges__note {
  font-size: 0.8125rem;
  color: #6B6B6B;
  line-height: 1.4;
  margin-top: 0.5rem;
}

/* ============================================
   RESPONSIVE - Tablet
   ============================================ */

@media (max-width: 1024px) {
  .production-layout {
    gap: 3rem;
  }

  .production-badges {
    width: 220px;
  }

  .production-badge {
    padding: 0.875rem 1rem;
  }
}

/* ============================================
   RESPONSIVE - Mobile
   ============================================ */

@media (max-width: 768px) {
  .production-section {
    padding: 3rem 0;
  }

  .production-section__header {
    margin-bottom: 2rem;
  }

  .production-layout {
    flex-direction: column;
    gap: 2.5rem;
  }

  .production-content {
    max-width: 100%;
  }

  .production-steps {
    gap: 1rem;
    margin: 1.25rem 0;
  }

  .production-step__number {
    width: 24px;
    height: 24px;
    font-size: 0.8125rem;
  }

  .production-step__title {
    font-size: 0.9375rem;
  }

  .production-step__text {
    font-size: 0.875rem;
  }

  .production-badges {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .production-badge {
    flex: 1;
    min-width: 160px;
  }

  .production-badges__note {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 400px) {
  .production-badges {
    flex-direction: column;
  }

  .production-badge {
    width: 100%;
  }
}
