/* recycled.html에서 분리된 RECYCLED원료 페이지 전용 스타일 */

/* 히어로 섹션 */
.page-hero {
  margin-top: 86px;
  height: 400px;
  background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), 
              url('../images/banner/product_bg.png') center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.page-hero h2 {
  color: white;
  font-size: 48px;
  font-weight: 600;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* 브레드크럼 */
.breadcrumb {
  max-width: 1200px;
  margin: 40px auto 20px;
  padding: 0 40px;
  font-size: 14px;
  color: #666;
  display: flex;
  align-items: center;
  gap: 8px;
}

.breadcrumb a {
  color: #666;
  text-decoration: none;
}

.breadcrumb a:hover {
  color: #5B7FDB;
}

/* 메인 컨텐츠 */
.recycled-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 40px 60px;
}

/* 메인 영역 하단 여백 제거 */
#main-area {
  margin-bottom: 0;
  padding-bottom: 0;
}

/* 하단 질문 영역 숨기기 */
.question {
  display: none !important;
}

.recycled-content h1 {
  font-size: 42px;
  margin-bottom: 60px;
  color: #222;
  font-weight: 600;
}

/* 섹션 배지 */
.section-badge {
  display: inline-block;
  background: linear-gradient(135deg, #5B7FDB 0%, #4A6BC9 100%);
  color: white;
  font-size: 20px;
  font-weight: 600;
  padding: 20px 40px;
  border-radius: 10px;
  margin-bottom: 40px;
  position: relative;
}

.section-badge::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 15px solid #4A6BC9;
}

/* 제품 섹션 */
.product-section {
  margin-bottom: 80px;
}

/* Recycled원료 5개 이미지 */
.recycled-flakes {
  display: flex;
  justify-content: center;
  gap: 0;
  margin: 40px 0;
  overflow-x: auto;
}

.recycled-flakes img {
  height: 200px;
  width: auto;
  object-fit: cover;
}

/* Recycled PET 이미지들 */
.recycled-pet-images {
  margin: 40px 0;
}

.pet-row {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 20px;
  overflow-x: auto;
}

.pet-row img {
  height: 180px;
  width: auto;
  object-fit: cover;
}

/* 큰 이미지 섹션 */
.info-image {
  width: 100%;
  margin: 40px 0;
}

.info-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* 다운로드 링크 영역 */
download-section {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 60px 0;
  flex-wrap: wrap;
}

.download-btn {
  display: inline-block;
  background-color: #666;
  color: white;
  font-size: 14px;
  font-weight: 500;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s;
}

.download-btn:hover {
  background-color: #555;
}

@media (max-width: 768px) {
  .page-hero {
    height: 300px;
    margin-top: 70px;
  }

  .page-hero h2 {
    font-size: 36px;
  }

  .recycled-content {
    padding: 40px 20px 40px;
  }

  .recycled-content h1 {
    font-size: 32px;
  }

  .section-badge {
    font-size: 18px;
    padding: 15px 30px;
  }

  .recycled-flakes img {
    height: 120px;
  }

  .pet-row img {
    height: 100px;
  }

  .download-section {
    flex-direction: column;
    align-items: center;
  }
}
