/**
 * Text Section Styles - Mobile First
 * 
 * Styling for penjelasan produk section
 * Default: Mobile | Desktop: min-width 1200px
 */

/* Text Section Base - Mobile Default */
.text-section {
  background-color: var(--text-section-bg, #ffffff);
  padding: 40px 0;
  position: relative;

  @media (min-width: 1200px) {
    padding: 60px 0;
  }
}

.text-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  @media (min-width: 1200px) {
    padding: 0;
  }
}

.text-section-content {
  max-width: 100%;
  text-align: center;

  @media (min-width: 1200px) {
    max-width: 1200px;
    margin: 0 auto;
  }
}

/* Title - Mobile */
.text-section-title {
  font-family: "Outfit", sans-serif !important;
  font-size: 28px !important;
  font-weight: 600 !important;
  line-height: 40px !important;
  margin-bottom: 24px !important;
  margin-top: 0px !important;
  color: var(--text-section-title, #333333) !important;
  letter-spacing: 0px !important;

  @media (min-width: 1200px) {
    font-size: 32px !important;
    line-height: 48px !important;
    margin-bottom: 24px !important;
  }
}

/* Description - Mobile */
.text-section-description {
  font-family: "Open Sans", sans-serif !important;
  font-size: 14px !important;
  line-height: 20px !important;
  margin-bottom: 24px !important;
  color: var(--text-section-text, #333333) !important;

  @media (min-width: 1200px) {
    font-size: 16px !important;
    line-height: 24px !important;
  }
}

.text-section-description p {
  margin-bottom: 16px !important;
}

.text-section-description p:last-child {
  margin-bottom: 0 !important;
}

/* Button - Mobile */
.text-section-button {
  font-family: "Open Sans", sans-serif !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  padding: 12px 24px !important;
  background-color: var(--text-section-btn-bg, #2c9251) !important;
  color: var(--text-section-btn-text, #ffffff) !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  line-height: 24px !important;
  text-decoration: none !important;
  border-radius: 8px !important;
  transition: all 0.3s ease !important;
  border: none !important;
  cursor: pointer !important;

  @media (min-width: 1200px) {
    padding: 12px 43.5px !important;
    font-size: 16px !important;
  }
}

.text-section-button:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.text-section-button .button-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
