/* 보종/상품 URL 구조 페이지 & 메인 보강 — KB 옐로/차콜 톤 */

.content_readable {
  max-width: 980px;
}

.form_section_inner {
  max-width: 860px;
}

.section_eyebrow {
  display: block;
  width: fit-content;
  margin: 0 auto 16px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #111;
  background: var(--brandAccent, #ffcc00);
  padding: 10px 18px;
  border-radius: 12px;
  line-height: 1.2;
}

.title_wrap {
  text-align: center;
}

.section_lead {
  max-width: 640px;
  margin: -10px auto 36px;
  text-align: center;
  font-size: 17px;
  line-height: 1.65;
  color: #555;
  word-break: keep-all;
}

.form_intro {
  margin-bottom: 24px;
  text-align: center;
}

.form_intro .section_title {
  margin-bottom: 12px;
  font-size: 30px;
}

.form_intro .form_sub {
  text-align: center;
  font-size: 16px;
  color: #555;
  margin: 0 auto 8px;
  max-width: 520px;
  line-height: 1.55;
  word-break: keep-all;
}

.form .form_area .inner {
  background: #f6f6f4;
  border: 1px solid #e8e8e4;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

section.form {
  padding: 50px 0 30px;
}

/* 메인: 보종 그리드 */
.home_categories {
  padding: 70px 0 40px;
  background:
    linear-gradient(180deg, #fffdf2 0%, #ffffff 42%, #f7f7f5 100%);
}

.category_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.category_tile {
  display: block;
  height: 100%;
  padding: 24px 20px;
  border: 1px solid #e8e8e4;
  border-radius: 16px;
  background: #fff;
  transition: transform .2s, box-shadow .2s, border-color .2s;
  position: relative;
  overflow: hidden;
}

.category_tile::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 4px;
  background: #ffcc00;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s;
}

.category_tile:hover {
  transform: translateY(-4px);
  border-color: #111;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.08);
}

.category_tile:hover::before {
  transform: scaleX(1);
}

.category_tile_label {
  display: inline-block;
  margin-bottom: 10px;
  padding: 5px 10px;
  border-radius: 8px;
  background: #fff4b8;
  color: #111;
  font-size: 12px;
  font-weight: 800;
}

.category_tile strong {
  display: block;
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 800;
  color: #111;
  letter-spacing: -0.03em;
}

.category_tile p {
  min-height: 44px;
  margin-bottom: 16px;
  font-size: 14px;
  line-height: 1.55;
  color: #666;
  word-break: keep-all;
}

.category_tile_meta {
  font-size: 14px;
  font-weight: 800;
  color: #111;
}

/* 메인: 상품 나열 */
.home_products {
  padding: 40px 0 70px;
}

.home_product_stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.home_product_group {
  padding: 20px 22px;
  border: 1px solid #ecece8;
  border-radius: 16px;
  background: #fff;
}

.home_product_group_head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.home_product_group_head h3 {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.home_product_group_head a {
  font-size: 13px;
  font-weight: 700;
  color: #111;
  white-space: nowrap;
  background: #fff4b8;
  padding: 7px 12px;
  border-radius: 999px;
  border-bottom: 0;
}

.home_product_group_head a:hover {
  background: #ffcc00;
}

.product_chip_list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product_chip_list a {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 10px;
  background: #f5f5f3;
  border: 1px solid #e5e5e1;
  font-size: 14px;
  font-weight: 700;
  color: #222;
  transition: all .2s;
  word-break: keep-all;
}

.product_chip_list a:hover {
  background: #ffcc00;
  border-color: #ffcc00;
  color: #111;
}

/* 메인: 안내 / CTA */
.home_notice,
.home_cta {
  /* keep */
}

.home_notice .inner,
.home_cta .inner,
.section1 .inner,
.section2 .inner,
.qna .inner {
  max-width: 980px;
}

.home_notice {
  padding: 70px 0;
  background: #111;
  color: #fff;
}

.home_notice .section_title {
  color: #fff;
}

.notice_grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.notice_grid li {
  padding: 24px 20px;
  border-radius: 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
}

.notice_grid strong {
  display: block;
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: 800;
  color: #ffcc00;
}

.notice_grid p {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255,255,255,0.82);
  word-break: keep-all;
}

.home_cta {
  padding: 30px 0 80px;
}

.home_cta_box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 40px 42px;
  border-radius: 24px;
  background:
    linear-gradient(120deg, rgba(255,204,0,0.95) 0%, #ffcc00 40%, #ffe066 100%);
  color: #111;
  border: 1px solid #f0c000;
}

.home_cta_box h2 {
  margin: 8px 0 12px;
  font-size: 30px;
  font-weight: 800;
  line-height: 1.35;
  word-break: keep-all;
  letter-spacing: -0.03em;
}

.home_cta_box p {
  font-size: 16px;
  line-height: 1.55;
}

.home_cta_box .section_eyebrow {
  background: #111;
  color: #ffcc00;
  margin-left: 0;
  margin-right: auto;
}

.btn_consult {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  padding: 16px 22px;
  border-radius: 12px;
  background: #111;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  white-space: nowrap;
}

.home_cta .btn_consult:hover {
  background: #333;
  color: #fff;
}

/* 보종 / 상품 페이지 */
.category_page,
.product_page {
  padding-top: 75px;
  background: #fff;
}

.category_hero,
.product_hero {
  padding: 50px 0 30px;
  background:
    radial-gradient(ellipse 70% 80% at 100% 0%, rgba(255,204,0,0.22), transparent 50%),
    linear-gradient(180deg, #fafafa 0%, #fff 100%);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 18px;
  font-size: 14px;
  color: #777;
}

.breadcrumb a {
  color: #555;
}

.breadcrumb a:hover {
  color: #111;
}

.category_eyebrow,
.product_eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 800;
  color: #111;
  background: #ffcc00;
  padding: 5px 10px;
  border-radius: 999px;
}

.category_title,
.product_title {
  margin-bottom: 14px;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.25;
  word-break: keep-all;
  letter-spacing: -0.03em;
}

.category_desc,
.product_summary {
  max-width: 820px;
  font-size: 18px;
  line-height: 1.6;
  color: #555;
  word-break: keep-all;
}

.category_products {
  padding: 20px 0 60px;
}

.category_products_head {
  margin-bottom: 24px;
}

.category_products_head h3 {
  margin-bottom: 8px;
  font-size: 26px;
  font-weight: 800;
}

.category_products_head p {
  color: #666;
  font-size: 15px;
}

.product_card_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.product_card a {
  display: block;
  height: 100%;
  padding: 28px 24px;
  border: 1px solid #e8e8e4;
  border-radius: 18px;
  background: #fff;
  transition: .2s;
}

.product_card a:hover {
  border-color: #111;
  box-shadow: 0 12px 28px rgba(0,0,0,.08);
}

.product_card_badge {
  display: inline-block;
  margin-bottom: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #fff4b8;
  color: #111;
  font-size: 12px;
  font-weight: 800;
}

.product_card_name {
  display: block;
  margin-bottom: 12px;
  font-size: 22px;
  font-weight: 800;
  color: #111;
  word-break: keep-all;
}

.product_card_summary {
  margin-bottom: 18px;
  font-size: 15px;
  line-height: 1.55;
  color: #666;
  word-break: keep-all;
}

.product_card_link {
  font-size: 14px;
  font-weight: 800;
  color: #111;
  border-bottom: 2px solid #ffcc00;
}

.category_guide {
  padding: 0 0 80px;
}

.category_guide .inner {
  padding: 32px;
  border-radius: 20px;
  background: #f7f7f5;
  border: 1px solid #ecece8;
}

.category_guide h3 {
  margin-bottom: 16px;
  font-size: 22px;
  font-weight: 800;
}

.guide_list {
  margin-bottom: 22px;
  padding-left: 18px;
}

.guide_list li {
  list-style: disc;
  margin-bottom: 8px;
  font-size: 15px;
  line-height: 1.5;
  color: #444;
}

.product_body_section {
  padding: 20px 0 50px;
}

.product_layout {
  display: grid;
  grid-template-columns: 1.6fr 0.8fr;
  gap: 28px;
  align-items: start;
}

.product_content h3 {
  margin-bottom: 16px;
  font-size: 24px;
  font-weight: 800;
}

.product_body {
  font-size: 16px;
  line-height: 1.75;
  color: #333;
}

.product_body p {
  margin-bottom: 14px;
  word-break: keep-all;
}

.product_body ul {
  margin: 12px 0 0;
  padding-left: 18px;
}

.product_body li {
  list-style: disc;
  margin-bottom: 8px;
}

.product_points {
  margin-top: 28px;
  padding: 22px;
  border-radius: 16px;
  background: #fffdf2;
  border: 1px solid #f3e7a8;
}

.product_points h4 {
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: 800;
}

.product_points li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 8px;
  font-size: 15px;
  color: #444;
}

.product_points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ffcc00;
}

.aside_card {
  padding: 22px;
  margin-bottom: 16px;
  border: 1px solid #e8e8e4;
  border-radius: 16px;
  background: #fff;
}

.aside_card h4 {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 800;
}

.aside_card p {
  margin-bottom: 16px;
  font-size: 14px;
  line-height: 1.5;
  color: #666;
}

.aside_card .btn_consult {
  width: 100%;
  background: #111;
  color: #fff;
}

.aside_product_list a {
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  font-size: 14px;
  color: #333;
  word-break: keep-all;
}

.aside_product_list a:hover {
  color: #111;
  font-weight: 700;
}

.product_form_section {
  padding: 20px 0 80px;
  background: #fafafa;
}

.product_form_section .title_wrap p {
  text-align: center;
  margin-top: -20px;
  margin-bottom: 24px;
  color: #666;
}

@media (max-width: 1023px) {
  .category_grid,
  .notice_grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .content_readable,
  .form_section_inner,
  .home_notice .inner,
  .home_cta .inner,
  .section1 .inner,
  .section2 .inner,
  .qna .inner {
    max-width: 100%;
  }

  .section_eyebrow {
    font-size: 14px;
    padding: 9px 16px;
  }

  .product_layout {
    grid-template-columns: 1fr;
  }

  .home_cta_box {
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 24px;
  }

  .category_title,
  .product_title {
    font-size: 32px;
  }
}

@media (max-width: 767px) {
  .category_grid,
  .notice_grid,
  .product_card_list {
    grid-template-columns: 1fr;
  }

  .section_lead {
    font-size: 15px;
    margin-bottom: 28px;
  }

  .section_eyebrow {
    font-size: 13px;
    padding: 8px 14px;
  }

  .form_intro .section_title {
    font-size: 24px;
  }

  .category_tile strong {
    font-size: 22px;
  }

  .home_product_group {
    padding: 16px;
  }

  .home_product_group_head {
    flex-wrap: wrap;
  }

  .home_product_group_head h3 {
    font-size: 18px;
  }

  .home_cta_box h2 {
    font-size: 24px;
  }

  .category_page,
  .product_page {
    padding-top: 60px;
  }
}
