@charset "UTF-8";

/* =========================================================
   0) RESET / BASE (공통)
========================================================= */
a, button, input, textarea, select { -webkit-tap-highlight-color: transparent; }

a:focus, button:focus, button:focus-visible{
  outline: none !important;
  box-shadow: none !important;
}

button{
  appearance:none; -webkit-appearance:none;
  background:transparent; border:0; padding:0;
  font:inherit; color:inherit;
}
button::-moz-focus-inner{ border:0; padding:0; }

header{
  transform: translateZ(0);
  backface-visibility: hidden;
  border-bottom: 0;
}

html, body{ height:100%; }

*{ box-sizing:border-box; }
body, input, button, select, textarea{ font-family:"Pretendard"; }

body{
  margin:0;
  color:#333;
  font-size:16px;
  line-height:1.6;
}

a{ color:#333; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
p{ margin:0; }
img{ vertical-align:top; max-width:100%; }
address{ font-style:normal; }
.en{ text-transform:uppercase; }
.rozi{ font-family:"Paperozi"; }

.hidden{
  position:absolute; left:-99999999%; top:-99999999%;
  width:.1%; height:.1%;
  font-size:.1%; line-height:.1%;
  overflow:hidden;
}

/* =========================================================
   1) TOKENS / TYPOGRAPHY / LAYOUT WRAP (공통)
========================================================= */
:root{
  --header-h: 80px;

  /* ✅ 전체 서브페이지(회사소개 포함) 본문 폭 */
  --content-max: 1200px;
  --page-pad: 18px;

  /* CEO 포인트 컬러 */
  --ink: #0f2e3f;

  /* =========================
     ✅ TYPOGRAPHY (Mobile default)
     - 가장 많이 쓰던 값 기준으로 통일
     ========================= */
  --fz-h1: 20px;
  --fz-h2: 18px;
  --fz-h3: 16px;
  --fz-h4: 14px;
  --fz-p: 14px;
  --fz-li: 13px;
}

/* ✅ Desktop typography override */
@media (min-width:1025px){
  :root{
    --fz-h1: 20px;
    --fz-h2: 23px;
    --fz-h3: 18px;
    --fz-h4: 17px;
    --fz-p: 16px;
    --fz-li: 15px;
  }
  html{ scroll-padding-top: var(--header-h); }
}

/* ✅ 공통 타이포 적용(본문용) */
h1{ font-size: var(--fz-h1); }
h2{ font-size: var(--fz-h2); }
h3{ font-size: var(--fz-h3); }
h4{ font-size: var(--fz-h4); }

p{ font-size: var(--fz-p); }
li{ font-size: var(--fz-li); }

/* ✅ 메인 제외 페이지(너는 body에 greeting을 붙임) */
body.greeting{
  padding-top: var(--header-h);
  background:#fff;
}

.wrap{
  margin-left: 18px;
  margin-right: 18px;
}

/* =========================================================
   2) HEADER + GNB (공통)
========================================================= */
header{
  position:fixed;
  top:0; left:0;
  width:100%;
  z-index:9999;
  background:#fff;
  transition: box-shadow .25s, border-bottom-color .25s;
  box-shadow: 0 6px 20px rgba(0,0,0,.12);
  border-bottom-color:#e9e9e9;
}
header .gnb ul.menu{ 
    font-size: 20px;   /* 원래 쓰던 값 */
    font-weight: 500; 
  }
  header .gnb .menu > li > a{
    font-size: 20px;   /* 링크에 확실히 적용 */
  }
header .wrap{
  display:flex;
  height: var(--header-h);
  justify-content: space-between;
  align-items:center;
}

header h1 img{ display:block; }

.gnb{ position:relative; }
.gnb .menu{ display:none; }

/* -------------------------
   2-1) Hamburger (mobile)
------------------------- */
.hamburger{
  width:44px;
  height:44px;
  border:0;
  background:transparent;
  cursor:pointer;
  position:relative;
  overflow:visible;
}
.hamburger span{
  position:absolute;
  left:50%; top:50%;
  width:24px; height:2px;
  background:#1d2088;
  border-radius:999px;
  transform: translate(-50%,-50%);
  transform-origin:center;
  transition: transform .22s ease, opacity .18s ease;
}
.hamburger span:nth-child(1){ transform: translate(-50%,-50%) translateY(-7px); }
.hamburger span:nth-child(2){ transform: translate(-50%,-50%); }
.hamburger span:nth-child(3){ transform: translate(-50%,-50%) translateY(7px); }

.gnb.is-open .hamburger span:nth-child(1){ transform: translate(-50%,-50%) rotate(45deg); }
.gnb.is-open .hamburger span:nth-child(2){ opacity:0; }
.gnb.is-open .hamburger span:nth-child(3){ transform: translate(-50%,-50%) rotate(-45deg); }

/* mobile overlay */
.gnb-backdrop{
  position:fixed;
  inset: var(--header-h) 0 0 0;
  background: rgba(0,0,0,.35);
  opacity:0;
  pointer-events:none;
  transition: opacity .22s ease;
  z-index:9000;
}
body.is-menu-open .gnb-backdrop{
  opacity:1;
  pointer-events:auto;
}

/* -------------------------
   2-2) Mobile menu panel
------------------------- */
@media (max-width:1024px){
  .gnb .menu{
    display:block;
    position:fixed;
    top: var(--header-h);
    right:18px;

    width: min(50vw, 360px);
    max-width: calc(100vw - 36px);
    max-height: calc(100vh - var(--header-h) - 18px);
    overflow-y:auto;

    background:#fff;
    border:1px solid rgba(0,0,0,.08);
    border-radius:18px;
    box-shadow:0 14px 30px rgba(0,0,0,.18);

    transform: translateY(-12px);
    opacity:0;
    pointer-events:none;
    transition: transform .22s ease, opacity .22s ease;
    z-index:10001;
  }

  .gnb.is-open .menu{
    transform: translateY(12px);
    opacity:1;
    pointer-events:auto;
  }

  .gnb .menu > li > a{
    display:block;
    padding:16px 18px;
    font-size:18px; /* 메뉴 UI는 예외 */
    font-weight:500;
    border-bottom:1px solid #eee;
  }

  /* mobile 2depth accordion */
  .gnb .sub{
    display:none;
    background:#fafafa;
    padding:6px 0;
    border-bottom:1px solid #eee;

    max-height: 45vh;
    overflow-y:auto;
    -webkit-overflow-scrolling: touch;
  }
  .gnb .sub a{
    display:block;
    padding:12px 22px;
    font-size:16px; /* 메뉴 UI는 예외 */
  }
  .gnb .menu > li.open > .sub{ display:block; }

  body.is-menu-open{ overflow:hidden; }
}

/* -------------------------
   2-3) Desktop GNB dropdown
------------------------- */
@media (min-width:1025px){
  :root{ --header-h:110px; }

  .wrap{
    width:1200px;
    margin:0 auto;
  }

  .hamburger{ display:none; }
  .gnb-backdrop{ display:none; }

  .gnb ul.menu{
    display:flex;
    font-weight:500;
    font-size:20px; /* 메뉴 UI는 예외 */
    opacity:1;
  }

  .menu > li{
    position:relative;
    width:180px;
    text-align:center;
    height: var(--header-h);
  }

  .gnb .menu > li > a{
    height: var(--header-h);
    display:flex;
    align-items:center;
    justify-content:center;
    transition: .3s;
  }

  .menu > li:hover > a{
    color:#1d2088;
    font-weight:600;
  }
  .menu > li:hover::after{
    content:"";
    width:150px;
    height:1px;
    background:#888;
    position:absolute;
    bottom:0;
    left:50%;
    transform: translateX(-50%);
  }

  /* ✅ 2차(드랍다운) */
  .menu > li > ul{
    display:none;
    position:absolute;
    top: var(--header-h);
    left:50%;
    transform: translateX(-50%);
    width:100%;
    background:#fff;
    box-shadow: 0 2px 10px #00000049;
    padding:0;
    margin:0;
  }
  .menu > li:hover > ul{ display:block; }

  .menu > li > ul > li{ height:50px; }
  .gnb .menu > li > ul.sub > li > a{
    display:flex;
    align-items:center;
    justify-content:center;
    width:100%;
    height:50px;
    padding:0 12px;
    font-size:18px; /* 메뉴 UI는 예외 */
    color:#333;
    transition: background-color .2s, color .2s, font-weight .2s;
  }
  .gnb .menu > li > ul.sub > li > a:hover{
    background:#ccc;
    color:#1d2088;
    font-weight:600;
  }

  /* ✅ 2차가 길면 내부 스크롤 */
  .gnb .menu > li > ul.sub{
    max-height: calc(100vh - var(--header-h) - 24px);
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }
}

/* =========================================================
   3) COMPANY HERO (서브바 삭제: 배너만)
========================================================= */
.company-hero{ position:relative; }

.company-hero > .company-banner{
  display:block;
  width:100%;
  height:260px;
  object-fit:cover;
  object-position:center;
}

@media (max-width:1024px){
  .company-hero > .company-banner{ height:100px; }
}

/* =========================================================
   4) COMPANY MAIN (공통: 1200px로 확장)
========================================================= */
.company-main{
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 var(--page-pad) 40px;
}

/* h1 스타일(크기만 공통 변수 사용) */
.company-main > h1.rozi{
  margin: 18px 0 12px;
  font-weight: 700;
  color:#2b2b2b;
  line-height: 1.25;
}

/* 공통 h2 스타일(크기는 변수로 통일) */
.company-main h2{
  color: #0f2e3f;
  text-align: center;
  font-weight: 600;
  font-family: "Paperozi";
  margin-top: 20px;
}
@media (min-width:1025px){
  .company-main h2.rozi{
    color: #0f2e3f;
    text-align: center;
    font-weight: 700;
    font-family: "Paperozi";
  }
}

/* =========================================================
   5-1-1) CEO LETTER
========================================================= */
.letter{
  margin: 18px 0 0;
  padding: 0 0 34px;
}

.letter-paper{
  position:relative;
  border-radius:10px;
  overflow:hidden;
  background: url("../img/letter.jpg") center top / 100% 100% no-repeat;
  padding: 34px 22px 42px;
  min-height: 920px;
  box-shadow: 0 14px 28px rgba(0,0,0,.10);

  padding-left: 64px;
  padding-right: 64px;
}
.letter-paper::before{
  content:"";
  position:absolute;
  inset:0;
  background: rgba(255,255,255,.35);
  pointer-events:none;
}

/* ✅ letter 본문은 컨테이너에서만 조정(개별 p font-size 제거) */
.letter-text{
  position:relative;
  color:#222;
  font-size:15px;
  line-height:1.95;
  letter-spacing:-0.01em;
}
.letter-text p + p{ margin-top:16px; }

.letter-text h3{
  margin:18px 0 10px;
  font-weight:700;
  color: var(--ink);
  line-height:1.35;
}
.letter-text h3 + p{ margin-top:8px; }

.letter-text span{
  font-weight:700;
  color: var(--ink);
}

.letter-text .ceo{
  margin:16px 0;
  padding:8px 0 8px 16px;
  line-height:1.75;
  font-weight:700;
  color: var(--ink);
  white-space: pre-line;
  letter-spacing:-0.01em;
  font-size:14.5px; /* UI성 텍스트 */
}

.letter-text .signature{
  margin-top:26px;
  text-align:right;
  line-height:1.55;
  color: var(--ink);
  font-weight:600;
  font-size:15px; /* UI성 텍스트 */
}
.letter-text .signature .name{
  display:inline-block;
  margin:8px 0 2px;
  font-family:'NamyangjuDasan', serif;
  font-size:56px; /* 서명 UI 예외 */
  font-weight:400;
  letter-spacing:-0.02em;
  color:#2b2b2b;
}

@media (min-width:1025px){
  .company-main--ceo .letter{
    max-width: var(--content-max);
    margin: 18px auto 0;
  }
  .company-main--ceo .letter-paper{ width:100%; }
  .letter-text{
  max-width: 820px;
  margin: 0 auto;
}
}

@media (max-width:1024px){
  .letter-paper{
    padding-left: 22px;
    padding-right: 22px;
  }
  .letter-text{
    font-size:14.5px;
    line-height:1.9;
  }
  .letter-text .ceo{ font-size:14px; }
  .letter-text .signature{ font-size:14.5px; }
  .letter-text .signature .name{ font-size:44px; }
}

/* =========================================================
   5-1-2) PH 전용
========================================================= */
body.philosophy{
  padding-top: var(--header-h);
}
.company-main--ph{
  max-width: var(--content-max);
}

.philosophy .card {
  margin-top: 10px;
  border-radius: 15px;
  background: #f9f5ec;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
  padding: 18px 16px;
  text-align: center;
}
.philosophy .card img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  margin-bottom: 10px;
}
.philosophy h3 {
  margin: 22px 0 10px;
  font-weight: 700;
  color: #1a3a36;
  text-align: center;
}
.philosophy .card p {
  line-height: 1.8;
  color: #1a3a36;
}

@media (max-width:1024px){
  .company-main--ph .philosophy .card p{
    line-height: 1.85;
  }
}

/* =========================================================
   PH 전용(Desktop): 카드 500px + 중앙선 + 좌/우 교차
========================================================= */
@media (min-width:1025px){

  .company-main--ph .page-hero.philosophy-hero{
    width: 100%;
    max-width: var(--content-max);
    display:block;
    margin: 0 auto 46px;
  }

  .company-main--ph .section-title{
    max-width: var(--content-max);
    margin: 0 auto 26px;
    font-size: 26px; /* 섹션 타이틀 UI 예외 */
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #0f2e3f;
    text-align:center;
  }

  .company-main--ph section.philosophy{
    --card-w: min(500px, calc((100% - 120px) / 2));
    --center-gap: 120px;
    --row-gap: 78px;
    --line-w: 2px;

    max-width: var(--content-max);
    margin: 0 auto;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: var(--row-gap);
    padding: 8px 0 60px;
    overflow: hidden;
  }

  .company-main--ph section.philosophy::before{
    content:"";
    position:absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: var(--line-w);
    background: #1a3a36;
    opacity: .9;
  }

  .company-main--ph section.philosophy > .left,
  .company-main--ph section.philosophy > .right{
    width: var(--card-w);
  }

  .company-main--ph section.philosophy > .left{
    align-self: flex-start;
    margin-right: calc(var(--center-gap) / 2);
    text-align: center;
  }

  .company-main--ph section.philosophy > .right{
    align-self: flex-end;
    margin-left: calc(var(--center-gap) / 2);
    text-align: center;
  }

  .company-main--ph section.philosophy > .left > h3,
  .company-main--ph section.philosophy > .right > h3{
    margin: 0 0 14px;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: -0.02em;
    color: #1a3a36;
  }

  .company-main--ph section.philosophy .card{
    margin: 0;
    border-radius: 16px;
    background: #f9f5ec;
    border: 1px solid rgba(0,0,0,.08);
    box-shadow: 0 10px 22px rgba(0,0,0,.08);
    padding: 26px 26px;
    text-align: center;
  }

  .company-main--ph section.philosophy .card img{
    width: 44px;
    height: 44px;
    object-fit: contain;
    margin-bottom: 14px;
  }

  .company-main--ph section.philosophy .card p{
    line-height: 1.75;
    letter-spacing: -0.03em;
    color: #1a3a36;
  }

  @media (max-width: 1240px){
    .company-main--ph section.philosophy{
      --center-gap: 90px;
      --row-gap: 70px;
    }
  }

  @media (max-width: 1120px){
    .company-main--ph section.philosophy{
      --center-gap: 70px;
      --card-w: min(480px, calc((100% - 70px) / 2));
    }
  }
}

/* =========================================================
   5-1-3) sister 전용
========================================================= */
body.philosophy{
  padding-top: var(--header-h);
}

.company-main--sister h2 { margin-top: 25px }
.company-main--sister .dreambio .lab { color: #0d8a7a; font-weight: 700; }
.company-main--sister .dreambio .tnc { color: #1d2088; font-weight: 700; }

.company-main--sister .manu {
  background: #e8f4f1;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.08);
  padding: 25px 16px;
  margin: 20px auto;
}

.company-main--sister .manu p {
  line-height: 1.7;
  color: #2b2b2b;
  letter-spacing: -0.02em;
  word-break: keep-all;
  padding-left: 30px;
  padding-right: 20px;
}

.company-main--sister .process {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  justify-items: center;
}

.company-main--sister .process .card {
  width: 100%;
  max-width: 400px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.06);
  padding: 14px 14px 12px;
  text-align: center;
}

.company-main--sister .process .card img {
  height: 34px;
  width: auto;
  display: block;
  margin: 2px auto 10px;
}

.company-main--sister .process .card h3 {
  margin: 0 0 8px;
  font-weight: 700;
  color: #0f2e3f;
  letter-spacing: -0.02em;
}

.company-main--sister .process .card p {
  line-height: 1.55;
  color: #444;
  letter-spacing: -0.02em;
}

.company-main--sister .process > img[alt="화살표"] {
  display: none;
  width: 18px;
  height: auto;
  opacity: 0.85;
}

.company-main--sister .gotobio {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
.company-main--sister .gotobio img {
  width: min(220px, 70%);
  height: auto;
  display: block;
  margin: auto;
}

@media (min-width: 1025px) {
  .company-main--sister .manu {
    max-width: 1200px;
    padding: 18px 18px;
    border-radius: 10px;
  }
  .company-main--sister .manu p {
    line-height: 1.75;
    text-align: left;
  }

  .company-main--sister .process {
    margin-top: 22px;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: 18px;
    justify-items: center;
  }

  .company-main--sister .process .card {
    max-width: 330px;
    padding: 16px 14px 14px;
  }

  .company-main--sister .process > img[alt="화살표"] {
    display: block;
    width: 20px;
    height: auto;
  }
}

/* =========================================================
   5-1-4) map 전용
========================================================= */
body.philosophy{
  padding-top: var(--header-h);
}

.company-main--map > img{
  display:block;
  width:100%;
  max-width: 1200px;
  margin: 10px auto 18px;
  box-shadow: 0 10px 18px rgba(0,0,0,.10);
  object-fit: cover;
}

.company-main--map .road{ margin-top: 10px; }

.company-main--map .road-lacation{
  max-width: 1200px;
  margin: 0 auto;
}

.company-main--map .road-text{
  background:#f6f7fb;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 14px;
  padding: 20px 50px 20px;
  box-shadow: 0 10px 18px rgba(0,0,0,.10);
  margin-bottom: 30px;
}

.company-main--map .road-text h3{
  margin: 0 0 10px;
  font-weight: 700;
  color:#0f2e3f;
  line-height: 1.35;
  letter-spacing: -0.02em;
}
.company-main--map .road-text p{
  margin-top: 8px;
  line-height: 1.55;
  color:#2b2b2b;
  letter-spacing: -0.02em;
  word-break: keep-all;
}
.company-main--map .road-text .dream{
  font-weight: 800;
  color:#1d2088;
}

.company-main--map .road-guide{
  margin: 12px auto 20px;
  text-align:center;
  color:#666;
  letter-spacing: -0.02em;
}
.company-main--map .road-guide p{
  display:inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 8px 14px rgba(0,0,0,.08);
}

.company-main--map .map-embed{
  max-width: 640px;
  margin: 18px auto 0;
  background:#fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 16px;
  box-shadow: 0 12px 22px rgba(0,0,0,.12);
  overflow:hidden;
}

.company-main--map .map-embed > div{
  width: 100% !important;
  height: auto !important;
  color:#333;
}

.company-main--map .map-embed img.map{
  display:block;
  width:100% !important;
  height:auto !important;
  border:0 !important;
}

.company-main--map .map-embed > div > div:first-child{
  height: auto !important;
  min-height: 320px;
}

.company-main--map .map-embed > div > div:nth-child(2){
  border-radius: 0 !important;
  border: 0 !important;
  border-top: 1px solid rgba(0,0,0,.08) !important;
  background: #f9f9f9 !important;
}

@media (max-width: 1024px){
  .company-main--map > img{ max-width: 100%;  }
  .company-main--map .road-lacation,
  .company-main--map .map-embed{ max-width: 100%; }
  .company-main--map .map-embed > div > div:first-child{ min-height: 260px; }

  .company-main--map .road-guide p{ font-size: 13px; } /* 캡슐 UI 예외 */
}

/* =========================================================
   5-2-1) 유통/도매 전용
========================================================= */

.distribution > h2{
  margin: 20px 0 20px;
  text-align:center;
  font-weight: 700;
  color:#2b2b2b;
  letter-spacing:-0.02em;
}

.distribution .biz-dist{ margin-top: 20px; }

.distribution .biz-text{
  display:flex;
  flex-direction:column;
  gap: 18px;
}

.distribution .biz-intro{
  background:#eef3fb;
  border:1px solid rgba(15,46,63,.08);
  border-radius: 14px;
  padding: 25px;
  box-shadow: 0 8px 18px rgba(0,0,0,.06);
}
.distribution .biz-intro p{
  line-height: 1.75;
  color:#2b2b2b;
  text-align:center;
  word-break: keep-all;
}
.distribution .biz-intro p br{ display:none; }

.distribution .biz-feild{
  display:flex;
  gap: 14px;
  text-align: center;
}
.distribution .biz-feild > div{
  background:#ffffff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 14px;
  box-shadow: 0 10px 22px rgba(0,0,0,.07);
  margin: auto;
  padding: 15px 10px;
}
.distribution .biz-feild h4{
  margin: 0 0 10px;
  font-weight: 800;
  color: #233a4a;
  letter-spacing:-0.02em;
  line-height:1.25;
}
.distribution .biz-feild p{
  line-height: 1.75;
  color:#2b2b2b;
  word-break: keep-all;
  padding-left: 20px;
  padding-right: 20px;
}

.distribution .advantage{
  margin-top: 6px;
  display:flex;
  flex-direction:column;
  gap: 12px;
}
.distribution .advantage > h3{
  margin: 4px 0 12px;
  text-align:center;
  font-weight: 800;
  color:#233a4a;
  letter-spacing:-0.02em;
  padding-top: 10px;
}
.distribution .advantage .ads1,
.distribution .advantage .ads2,
.distribution .advantage .ads3{
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.distribution .advantage .ads{
  background:#f6f9ff;
  border:1px solid rgba(29,32,136,.12);
  border-radius: 12px;
  padding: 12px;
  font-size: 12.5px; /* 칩 UI 예외 */
  line-height: 1.55;
  color:#2b2b2b;
  box-shadow: 0 6px 14px rgba(0,0,0,.06);
  word-break: keep-all;
  margin-top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.distribution .advantage .ads3 .ads{ width: 100%; }

.distribution .partners{
  margin-top: 8px;
  padding-top: 10px;
  margin: auto;
}
.distribution .partners > h3{
  margin: 0 0 10px;
  text-align:center;
  font-weight: 800;
  color:#2f7fa3;
  letter-spacing:-0.02em;
  padding-top: 20px;
}
.distribution .partners ul{ padding: 14px 14px; }
.distribution .partners li{
  position:relative;
  padding-left: 22px;
  line-height: 1.7;
  color:#2b2b2b;
  word-break: keep-all;
}
.distribution .partners li + li{ margin-top: 8px; }
.distribution .partners li::before{
  content:"";
  position:absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(29,32,136,.45);
  left: 8px;
  top: 0.95em;
  transform: translateY(-50%);
}

@media (min-width:1025px){

  .distribution > h2{
    margin: 20px 0 20px;
    color: #233a4a;
  }

  .distribution .biz-intro{
    padding: 18px 18px 16px;
    border-radius: 16px;
  }
  .distribution .biz-intro p br{ display:inline; }

  .distribution .biz-feild{
    gap: 16px;
    width: min(1200px, 100%);
    margin: 0 auto;
  }
  .distribution .biz-feild > div{
    margin: 0;
    flex: 1 1 0;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    padding: 18px 16px;
    border-radius:14px;
    background:#fff;
    border:1px solid rgba(0,0,0,.08);
    box-shadow:0 10px 22px rgba(0,0,0,.07);
    gap: 6px;
  }
  .distribution .biz-feild h4{ margin: 0; }
  .distribution .biz-feild p{ margin: 0; }

  .distribution .advantage .ads{
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding: 13px 14px;
    border-radius: 14px;
    font-size: 15px;
  }

  .distribution .advantage .ads1,
  .distribution .advantage .ads2{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .distribution .advantage .ads3{
    display:flex;
    justify-content:center;
    align-items: center;
  }
  .distribution .advantage .ads3 .ads{
    width: min(520px, 100%);
  }
  .distribution .partners ul{
    padding: 16px 18px;
    border-radius: 16px;
  }
  .distribution .partners li{
    padding-left: 20px;
  }
  .distribution .partners li::before{
    left: 7px;
    width: 7px; height: 7px;
  }
}

/* =========================================================
   5-2-2) OEM/ODM 전용 (distribution 스타일과 동일 톤)
   - h2/h3/h4/p/li 크기: distribution과 동일 (mobile/desktop)
========================================================= */

/* main img(배너)에는 손대지 않기 위해: section부터만 간격 제어 */
.oem{
  padding-bottom: 10px;
}

/* 섹션 타이틀(h2) */
.oem > h2{
  margin: 20px 0 20px;
  text-align:center;
  font-size: 18px;       /* ✅ distribution mobile h2 */
  font-weight: 700;
  color:#2b2b2b;
  letter-spacing:-0.02em;
}

/* 전체 본문 래퍼 */
.oem .biz-oem{
  margin-top: 20px;
}
.oem .oem-text{
  display:flex;
  flex-direction:column;
  gap: 18px;
}

/* 소개(연한 박스) */
.oem .oem-intro{
  background:#eef3fb;
  border:1px solid rgba(15,46,63,.08);
  border-radius: 14px;
  padding: 25px;
  box-shadow: 0 8px 18px rgba(0,0,0,.06);
}
.oem .oem-intro p{
  font-size: 15px;       /* ✅ distribution mobile intro p */
  line-height: 1.75;
  color:#2b2b2b;
  text-align:center;
  word-break: keep-all;
}

/* 강점 영역 */
.oem .oem-advantage{
  margin-top: 6px;
  display:flex;
  flex-direction:column;
  gap: 12px;
}
.oem .oem-advantage > h3{
  margin: 4px 0 12px;
  text-align:center;
  font-weight: 800;
  color:#233a4a;
  letter-spacing:-0.02em;
  padding-top: 10px;
}

/* 강점 카드(ads) */
.oem .oem-advantage .ads{
  background:#ffffff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 14px;
  box-shadow: 0 10px 22px rgba(0,0,0,.07);
  padding: 15px 14px;
  text-align:center;

  display:flex;
  flex-direction:column;
  gap: 10px; /* h4-p 간격 통제(원하면 여기만 조절) */
}
.oem .oem-advantage .ads h4{
  margin: 0;
  font-size: 14px;       /* ✅ distribution mobile h4 */
  font-weight: 800;
  color: #233a4a;
  letter-spacing:-0.02em;
  line-height:1.25;
}
.oem .oem-advantage .ads p{
  margin: 0;
  font-size: 14px;       /* ✅ distribution mobile p */
  line-height: 1.75;
  color:#2b2b2b;
  word-break: keep-all;
}

/* 파트너(리스트) - ✅ h3 바로 아래에 리스트가 오고, 전체가 가운데로 */
.oem .partners{
  margin-top: 8px;
  padding-top: 10px;

  display:flex;
  flex-direction:column;
  align-items:center;    /* ✅ 가운데 정렬 핵심 */
}
.oem .partners > h3{
  margin: 0 0 10px;      /* ✅ h3 바로 아래에 리스트 오게 */
  text-align:center;
  font-weight: 800;
  color:#2f7fa3;
  letter-spacing:-0.02em;
  padding-top: 20px;
}

/* ul 자체를 가운데에 두고, li는 읽기 좋게 좌측 정렬 */
.oem .partners ul{ padding: 14px 14px; }
.oem .partners li{
  position:relative;
  padding-left: 22px;
  line-height: 1.7;
  color:#2b2b2b;
  word-break: keep-all;
}
.oem .partners li + li{ margin-top: 8px; }
.oem .partners li::before{
  content:"";
  position:absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(29,32,136,.45);
  left: 8px;
  top: 0.95em;
  transform: translateY(-50%);
}

/* ===== 데스크탑(시안처럼 2열/정돈) ===== */
@media (min-width:1025px){

  .oem > h2{
    margin: 20px 0 20px;
    font-size: 23px;     /* ✅ distribution desktop h2 */
    color: #233a4a;
  }

  /* 소개 박스(데스크탑) */
  .oem .oem-intro{
    padding: 18px 18px 16px;
    border-radius: 16px;
  }
  .oem .oem-intro p{
    font-size: 16px;     /* ✅ distribution desktop intro p */
  }

  /* 강점: 2열 */
  .oem .oem-advantage > h3{
    font-size: 20px;     /* ✅ distribution desktop advantage h3 */
  }

  .oem .oem-advantage{
    max-width: 1200px;
    margin-left:auto;
    margin-right:auto;
  }

  .oem .oem-advantage .ads{
    padding: 18px 16px;
    border-radius: 16px;
  }
  .oem .oem-advantage .ads h4{
    font-size: 17px;     /* ✅ distribution desktop h4 */
  }
  .oem .oem-advantage .ads p{
    font-size: 16px;     /* ✅ distribution desktop p */
  }

  /* 2열 그리드로 정돈(ads 4개) */
  .oem .oem-advantage{
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .oem .oem-advantage > h3{
    grid-column: 1 / -1; /* 제목은 전체 폭 */
    margin-bottom: 4px;
  }

  /* 파트너 리스트(데스크탑) */
  .oem .partners > h3{
    font-size: 18px;     /* ✅ distribution desktop partners h3도 16 유지(원본과 동일) */
  }
  .oem .partners ul{
    padding: 16px 18px;
    border-radius: 16px;
  }
  .oem .partners li{
    padding-left: 20px;
  }
  .oem .partners li::before{
    left: 7px;
    width: 7px; height: 7px;
  }
}

/* =========================================================
   5-2-3) 수입/수출(trade) 전용
   - distribution / oem과 동일한 톤 & 구조
========================================================= */

/* 배너 아래 섹션부터만 간격 제어 */
.trade{
  padding-bottom: 10px;
}

/* 섹션 타이틀(h2) - distribution과 통일 */
.trade > h2{
  margin: 20px 0 20px;
  text-align:center;
  font-size: 18px;
  font-weight: 700;
  color:#2b2b2b;
  letter-spacing:-0.02em;
}

/* 전체 본문 래퍼 */
.trade .biz-trade{
  margin-top: 20px;
}
.trade .trade-text{
  display:flex;
  flex-direction:column;
  gap: 18px; /* distribution과 동일 */
}

/* 소개(연한 박스) */
.trade .trade-intro{
  background:#eef3fb;
  border:1px solid rgba(15,46,63,.08);
  border-radius: 14px;
  padding: 25px;
  box-shadow: 0 8px 18px rgba(0,0,0,.06);
}
.trade .trade-intro p{
  font-size: 15px;
  line-height: 1.75;
  color:#2b2b2b;
  text-align:center;
  word-break: keep-all;
}
/* 모바일에서 불필요한 강제 줄바꿈 완화 */
.trade .trade-intro p br{ display:none; }

/* 수입/수출 2카드 래퍼 */
.trade .trade1{
  display:flex;
  flex-direction:column; /* 모바일: 1열 */
  gap: 14px;
}

/* 수입/수출 카드 */
.trade .trade2{
  background:#ffffff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 14px;
  box-shadow: 0 10px 22px rgba(0,0,0,.07);
  padding: 16px 14px;
  text-align: center;

  /* 카드 내부 상/하 여백 균일 느낌 */
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  gap: 10px;
}

/* 카드 안 h3/h4/p */
.trade .trade2 h3{
  margin: 0;
  font-size: 18px;       /* distribution h3(모바일)과 톤 통일 */
  font-weight: 800;
  color:#233a4a;
  letter-spacing:-0.02em;
  line-height:1.25;
}
.trade .trade2 h4{
  margin: 0;
  font-size: 14px;       /* distribution h4(모바일)와 톤 통일 */
  font-weight: 800;
  color:#2b2b2b;
  letter-spacing:-0.02em;
  line-height:1.35;
}

/* trade2 본문: 왼쪽 정렬 + 줄바꿈(2줄째~)만 들여쓰기 */
.trade .trade2 p{
  text-align:left;
  line-height:1.75;
  word-break:keep-all;
  overflow-wrap:anywhere;

  /* ✅ hanging indent: 첫 줄은 기준선, 다음 줄만 들여쓰기 */
  padding-left: 1.2em;
  text-indent: -1.2em;

  margin: 10px 0 0;
}

/* 첫 문단 간격이 너무 붙으면 */
.trade .trade2 p:first-of-type{ margin-top: 8px; }


.trade .trade-advantage{
  margin: auto;
  background:#f6f9ff;
  border:1px solid rgba(29,32,136,.12);
  border-radius: 14px;
  box-shadow: 0 6px 14px rgba(0,0,0,.06);
  padding: 15px 20px;
  text-align:center; /* ✅ ul 덩어리 중앙 정렬용 */
  width: 100%;
}

.trade .trade-advantage > h3{
  margin: 0;
  text-align:center;
  font-weight: 800;
  color:#233a4a;
  letter-spacing:-0.02em;
}

/* ✅ 리스트 덩어리 자체를 가운데로 + 내부는 왼쪽정렬 */
.trade .trade-advantage ul{
  display:inline-block;
  text-align:left;
  margin: 0 auto 0;            /* ✅ 기본 margin 제거 */
  padding: 0;           /* ✅ 기본 padding 제거 */
  list-style:none;      /* ✅ 기본 불릿 제거(우리가 커스텀 노드로 찍을 것) */
  max-width: 300px;
  width: 100%;
}

/* ✅ 문장 시작축(텍스트) 정렬 */
.trade .trade-advantage li{
  position:relative;
  padding-left: 22px;   /* ✅ 노드 공간 확보 → 모든 텍스트 시작축 동일 */
  line-height: 1.7;
  color:#2b2b2b;
  word-break: keep-all;
  text-align-last: left;
}
.trade .trade-advantage li + li{ margin-top: 8px; }

/* ✅ 노드(●) 복원 */
.trade .trade-advantage li::before{
  content:"";
  position:absolute;
  width:6px;
  height:6px;
  border-radius:50%;
  background: rgba(29,32,136,.45);
  left: 8px;
  top: 0.95em;
  transform: translateY(-50%);
}

.trade .partners{
  margin-top: 10px;
  text-align:center; /* ✅ ul 덩어리 중앙 정렬용 */
}

.trade .partners > h3{
  margin: 15px 0 5px;
  text-align:center;
  font-weight: 800;
  color:#2f7fa3;      /* ✅ 요청: 박스 없는 li 섹션(Partners) 제목만 이 색 */
  letter-spacing:-0.02em;
}

/* ✅ 리스트 덩어리 가운데 + 내부 왼쪽정렬 */
.trade .partners ul{
  display:inline-block;
  text-align:left;
  margin: 0;
  padding: 0;
  list-style:none;
}

/* ✅ 텍스트 시작축 통일 */
.trade .partners li{
  position:relative;
  padding-left: 22px;
  line-height: 1.7;
  color:#2b2b2b;
  word-break: keep-all;
}
.trade .partners li + li{ margin-top: 8px; }

/* ✅ 노드(●) */
.trade .partners li::before{
  content:"";
  position:absolute;
  width:6px;
  height:6px;
  border-radius:50%;
  background: rgba(29,32,136,.45);
  left: 8px;
  top: 0.95em;
  transform: translateY(-50%);
}

/* 해외 파트너 문의(contact) */
.trade .contact{
  margin-top: 10px;
  background:#eef3fb;
  border:1px solid rgba(15,46,63,.08);
  border-radius: 14px;
  padding: 18px 16px;
  box-shadow: 0 8px 18px rgba(0,0,0,.06);
  text-align:center;
}
.trade .contact > h3{
  margin: 0 0 10px;
  font-size: 16px;       /* distribution partners h3(모바일)와 통일 */
  font-weight: 800;
  color:#233a4a;
  letter-spacing:-0.02em;
}
.trade .contact p{
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  color:#2b2b2b;
  word-break: keep-all;
}
.trade .contact p + p{ margin-top: 10px; }
.trade .contact .dream{
  font-weight: 800;
  color:#1d2088;
}


/* =========================
   DESKTOP (1025+): 2열 정돈
========================= */
@media (min-width:1025px){

  .trade > h2{
    margin: 20px 0 20px;
    font-size: 23px;     /* distribution h2(데스크탑)과 통일 */
    color: #233a4a;
  }

  /* 소개 박스 */
  .trade .trade-intro{
    padding: 18px 18px 16px;
    border-radius: 16px;
  }
  .trade .trade-intro p{
    font-size: 16px;
  }
  .trade .trade-intro p br{ display:inline; } /* 데스크탑은 원래 줄바꿈 유지 */

  /* 수입/수출 카드 2열 */
  .trade .trade1{
    flex-direction:row;
    gap: 16px;
    width: min(1200px, 100%);
    margin: 0 auto;
  }
  .trade .trade2{
    flex: 1 1 0;
    padding: 18px 16px;
    border-radius:14px;
    gap: 10px;
  }
  .trade .trade2 h3{
    font-size: 20px;   /* 데스크탑에서 한 단계 업 */
    margin: 0;
  }
  .trade .trade2 h4{
    font-size: 17px;
  }
  .trade .trade2 p{
    font-size: 16px;   /* distribution p(데스크탑) 톤 */
  }

  /* 특징 */
  .trade .trade-advantage > h3{
    font-size: 20px;   /* distribution advantage h3(데스크탑)과 통일 */
    padding-top: 10px;
  }
.trade .trade-advantage{
  width: 600px;
  padding-bottom: 10px;
}

  .trade .trade-advantage > ul,
  .trade .partners > ul{
    width: min(820px, 100%);       /* 데스크탑에서는 살짝 넓게 */
    padding: 16px 18px;
    border-radius: 16px;
  }
  .trade .trade-advantage li{
    font-size: 15px;
    padding-left: 20px;
  }
  .trade .trade-advantage li::before, .trade .partners > ul > li::before{
    left: 7px;
    width: 7px;
    height: 7px;
  }
  .trade .trade-advantage > ul > li,
  .trade .partners > ul > li{
    line-height: 1.75;
  }

  /* 파트너 리스트도 1200 기준 가운데 */
  .trade .partners{
    max-width: 1200px;
    margin: 0 auto;
  }
  .trade .partners ul{
    padding: 16px 18px;
    border-radius: 16px;
  }
  .trade .partners li{
    font-size: 15px;
    padding-left: 20px;
  }
  .trade .partners li::before{
    left: 7px;
    width: 7px; height: 7px;
  }

  /* 문의 박스 */
  .trade .contact{
    max-width: 1200px;
    margin-left:auto;
    margin-right:auto;
    padding: 18px 18px;
    border-radius: 16px;
  }
  .trade .contact > h3{
    font-size: 18px;
  }
  .trade .contact p{
    font-size: 16px;
  }
}

/* =========================================================
   5-2-4) retail 전용
   - 모바일/데스크탑 모두 세로 배열
   - h3는 카드 밖(위) 중앙정렬
   - 카드 안 텍스트는 왼쪽 정렬
   - 바로가기 이미지와 .gotoshowroom만 가운데 정렬
========================================================= */

/* 섹션 시작 간격(배너/메인 이미지는 건드리지 않음) */
.retail{
  padding-bottom: 10px;
}

/* 섹션 타이틀(h2) */
.retail > h2{
  margin: 20px 0 20px;
  text-align:center;
  font-size: 18px;
  font-weight: 700;
  color:#2b2b2b;
  letter-spacing:-0.02em;
}

/* 전체 래퍼 */
.retail .biz-retail{ margin-top: 20px; }

.retail .retail-text{
  display:flex;
  flex-direction:column;
  gap: 18px;
}

/* 소개(연한 박스) */
.retail .retail-intro{
  background:#eef3fb;
  border:1px solid rgba(15,46,63,.08);
  border-radius: 14px;
  padding: 25px;
  box-shadow: 0 8px 18px rgba(0,0,0,.06);
  text-align:center;
}

.retail .retail-intro p{
  font-size: 15px;
  line-height: 1.75;
  color:#2b2b2b;
  word-break: keep-all;
}

/* 모바일에서는 강제 br 완화(기존 페이지들처럼) */
.retail .retail-intro p br{ display:none; }

/* 온라인/오프라인 묶음: 항상 세로 */
.retail .retail1{
  display:flex;
  flex-direction:column;
  gap: 20
  px;
}

/* =========================
   카드(박스) + h3(박스 밖)
   ========================= */

/* 카드 컨테이너 */
.retail .retail2{
  /* h3가 차지하는 윗공간(카드 배경은 그 아래부터 시작) */
  --h3-space: 44px;          /* 모바일 기본 */
  --card-pad-x: 18px;
  --card-pad-y: 16px;
  --card-radius: 14px;

  position:relative;
  width: min(1200px, 100%);
  margin: 0 auto;

  /* 카드 내용이 들어갈 공간(= 카드 배경이 시작되는 구간부터 패딩 적용) */
  padding: calc(var(--h3-space) + var(--card-pad-y)) var(--card-pad-x) var(--card-pad-y);
}

/* 카드 배경/테두리/그림자: h3 공간 아래부터 시작 */
.retail .retail2::before{
  content:"";
  position:absolute;
  left:0; right:0;
  top: var(--h3-space);
  bottom:0;
  background:#fff;
  border:1px solid rgba(0,0,0,.08);
  border-radius: var(--card-radius);
  box-shadow: 0 10px 22px rgba(0,0,0,.07);
  z-index:0;
}

/* 카드 내부 내용은 배경 위로 */
.retail .retail2 > *{
  position:relative;
  z-index:1;
}

/* h3: “박스 밖 위 여백” 중앙정렬 (oem 느낌) */
.retail .retail2 > h3{
  position:absolute;
  left:0; right:0;
  top: 0;
  height: var(--h3-space);
  display:flex;
  align-items:center;
  justify-content:center;

  margin:0;
  text-align:center;
  font-size: 16px;
  font-weight: 800;
  color:#233a4a;
  letter-spacing:-0.02em;
}

/* 카드 내부 텍스트는 왼쪽 정렬 */
.retail .retail2 > h4,
.retail .retail2 > p{
  text-align:left;
}

/* h4 스타일 */
.retail .retail2 > h4{
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 800;
  color:#233a4a;
  letter-spacing:-0.02em;
  line-height:1.25;
}

/* p 스타일 */
.retail .retail2 > p{
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  color:#2b2b2b;
  word-break: keep-all;
}

/* 문단 사이 간격(너무 벌어지지 않게) */
.retail .retail2 > p + p{ margin-top: 10px; }

/* 강조 텍스트 */
.retail .dream{
  font-weight: 800;
  color:#1d2088;
}

/* 바로가기(온라인샵) 이미지는 가운데 */
.retail a.gotoshop{
  display:flex;
  justify-content:center;
  align-items:center;
  margin: 10px 0;
}
.retail a.gotoshop img{
  width: min(220px, 80%);
  height:auto;
  display:block;
}

/* 쇼룸 안내 묶음(.gotoshowroom)은 가운데 정렬
   - 단, 텍스트는 카드 정책대로 왼쪽 정렬 유지 */
.retail .gotoshowroom{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap: 10px;
  margin: 8px 0 6px;
  width:100%;
}
.retail .gotoshowroom p{
  width:100%;
  margin:0;
  text-align:center; 
}

/* 오시는길 버튼(이미지)만 가운데 */
.retail a.gotodream{
  display:flex;
  justify-content:center;
  align-items:center;
}
.retail a.gotodream img{
  width: min(220px, 70%);
  height:auto;
  display:block;
}
/* a 자체도 가운데 정렬 유지 */
.retail .gotoshop,
.retail .gotodream{
  display:flex;
  justify-content:center;
  align-items:center;
  margin: 10px auto;
}

/* ✅ 두 버튼 이미지 "같은 높이"로 통일 */
.retail .gotoshop img,
.retail .gotodream img{
  display:block;
  object-fit: contain;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  outline: 0 !important;
  line-height: 0;
}

/* =========================
   DESKTOP (1025+)
   - 여전히 세로 배열 유지
   ========================= */
@media (min-width:1025px){

  .retail > h2{
    margin: 20px 0 20px;
    font-size: 23px;
    color:#233a4a;
  }

  .retail .retail-intro{
    padding: 18px 18px 16px;
    border-radius: 16px;
  }
  .retail .retail-intro p{
    font-size: 16px;
  }
  .retail .retail-intro p br{ display:inline; } /* 데스크탑은 원래 줄바꿈 유지 */

  /* 카드: 여백/타이틀 공간만 살짝 확대 */
  .retail .retail2{
    --h3-space: 52px;
    --card-pad-x: 22px;
    --card-pad-y: 18px;
    --card-radius: 16px;
    margin-top: 30px;
    padding-bottom: 3%;
  }

  .retail .retail2 > h3{
    font-size: 20px;
  }

  .retail .retail2 > h4{
    font-size: 18px;
    margin-bottom: 8px;
    padding-left: 30px;
    padding-top: 20px;
  }

  .retail .retail2 > p{
    font-size: 16px;
    line-height: 1.75;
    padding-top: 20px;
    padding-left: 30px;
  }

  .retail a.gotoshop img{
    width: min(245px, 45%);
  }

  .retail a.gotodream img{
    width: min(260px, 45%);
  }
}

/* =========================================================
   5-3-1) PRODUCT (공통: joint / cir / nerve 통합)
   - oem/trade 톤 유지
   - .item: 유지보수 편한 자동 그리드
   - ✅ joint.css 대체용 (이것 하나로 3페이지 커버)
========================================================= */

/* main img(배너)에는 손대지 않기 위해: section부터만 간격 제어 */
.product{
  padding-bottom: 10px;
}

/* 섹션 타이틀 */
.product > h2{
  margin: 20px 0 20px;
  text-align:center;
  font-size: 18px;
  font-weight: 700;
  color:#2b2b2b;
  letter-spacing:-0.02em;
}

/* 전체 래퍼 */
.items-product{
  margin-top: 20px;
  display:flex;
  flex-direction:column;
  gap: 18px;
}

/* 소개(연한 박스) */
.items-product .product-intro{
  background:#eef3fb;
  border:1px solid rgba(15,46,63,.08);
  border-radius: 14px;
  padding: 25px;
  box-shadow: 0 8px 18px rgba(0,0,0,.06);
  text-align:left;
}

/* intro 제목(선택: 있으면 가운데) */
.items-product .product-intro h4{
  font-size: 16px;
  text-align: center;
  margin: 5px 0 10px;
  color:#233a4a;
  font-weight:800;
  letter-spacing:-0.02em;
}

/* intro 본문 */
.items-product .product-intro p{
  font-size: 15px;
  line-height: 1.75;
  color:#2b2b2b;
  word-break: keep-all;
  padding-left: 20px;
  margin:0;
}

/* 모바일: 강제 br 완화 */
.items-product .product-intro p br{ display:none; }

/* =========================
   ITEMS GRID
   ========================= */

/* 그리드 컨테이너 */
.items-product .items{
  width: min(1200px, 100%);
  margin: 0 auto;

  display:grid;

  /* ✅ 유지보수 편한 자동 그리드(기본) */
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 14px;

  align-items: stretch;
}

/* 개별 카드(.item) */
.items-product .item{
  background:#ffffff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 14px;
  box-shadow: 0 10px 22px rgba(0,0,0,.07);

  overflow:hidden;
  display:flex;
  flex-direction:column;
  min-height: 100%;
}

/* ✅ item 안에 a가 있는 경우(클릭형 카드) */
.items-product .item > a{
  display:flex;
  flex-direction:column;
  min-height:100%;
  color:inherit;
  text-decoration:none;
}

/* 상품 이미지 */
.items-product .item img{
  width:100%;
  aspect-ratio: 1 / 1;     /* ✅ 정사각 썸네일로 통일 */
  object-fit: cover;
  display:block;
}

/* 상품명 */
.items-product .item h4{
  margin: 0;
  padding: 12px 12px 14px;

  font-size: 13px;
  font-weight: 800;
  color:#233a4a;
  letter-spacing:-0.02em;
  line-height: 1.35;

  text-align:center;
  word-break: keep-all;
}

/* hover(선택) */
@media (hover:hover){
  .items-product .item{
    transition: transform .18s ease, box-shadow .18s ease;
  }
  .items-product .item:hover{
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(0,0,0,.12);
  }

  /* 클릭형 카드 hover도 같이 */
  .items-product .item > a{
    transition: transform .18s ease;
  }
}

/* =========================
   DESKTOP (1025+)
   - 데스크탑에서는 “한 줄 4개” 고정
   ========================= */
@media (min-width:1025px){

  .product > h2{
    margin: 20px 0 20px;
    font-size: 23px;
    color:#233a4a;
  }

  .items-product .product-intro{
    padding: 18px 18px 16px;
    border-radius: 16px;
  }
  .items-product .product-intro h4{
    font-size: 17px;
  }
  .items-product .product-intro p{
    font-size: 16px;
    padding-left: 40px;
  }
  .items-product .product-intro p br{ display:inline; } /* 데스크탑은 원래 줄바꿈 유지 */

  /* ✅ 4열 고정 + 간격 */
  .items-product .items{
    margin-top: 15px;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }

  .items-product .item{
    border-radius: 16px;
  }

  .items-product .item h4{
    font-size: 14px;
    padding: 14px 14px 16px;
  }
}

/* =========================
   Tablet (선택) : 2~3열 자연스럽게
   ========================= */
@media (min-width:600px) and (max-width:1024px){
  .items-product .items{
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width:420px) and (max-width:599px){
  .items-product .items{
    grid-template-columns: repeat(2, 1fr);
  }
}


/* =========================================================
   5-4-1) CONTACT (문의하기) 전용 - FULL
   - oem/trade/joint 톤 유지
   - Desktop: 대표전화/이메일 2열 + 동일 높이
   - padding 넉넉 / 글자크기 사이트 기준과 통일
========================================================= */

/* 섹션 전체 */
.contact{
  padding-bottom: 10px;
}

/* 섹션 타이틀(h2) */
.contact > h2{
  margin: 20px 0 20px;
  text-align:center;
  font-weight: 700;
  color:#2b2b2b;
  letter-spacing:-0.02em;
  font-size: var(--fz-h2);
}

/* 전체 래퍼 */
.biz-contact{
  margin-top: 20px;
  display:flex;
  flex-direction:column;
  gap: 18px;
}

/* 인트로(연한 박스) */
.biz-contact .contact-intro{
  background:#eef3fb;
  border:1px solid rgba(15,46,63,.08);
  border-radius: 14px;
  padding: 25px;
  box-shadow: 0 8px 18px rgba(0,0,0,.06);
  text-align:center;
}
.biz-contact .contact-intro p{
  font-size: var(--fz-p);
  line-height: 1.75;
  color:#2b2b2b;
  word-break: keep-all;
}
.biz-contact .contact-intro p br{ display:none; }

/* ---------------------------------------------------------
   공통 카드 (전화/이메일)
--------------------------------------------------------- */
.biz-contact .contact-card{
  background:#ffffff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 14px;
  box-shadow: 0 10px 22px rgba(0,0,0,.07);

  /* ✅ 다른 페이지 박스 느낌으로 넉넉히 */
  padding: 22px 22px 20px;

  /* ✅ 2열일 때 같은 높이로 채우기 위한 내부 flex */
  display:flex;
  flex-direction:column;
  gap: 10px;
}

/* 카드 타이틀(h3) */
.biz-contact .contact-card > h3{
  margin: 0 0 6px;
  text-align:center;
  font-weight: 800;
  color:#233a4a;
  letter-spacing:-0.02em;
  font-size: var(--fz-h3);
}

/* ✅ 전화/이메일 값만 (헤더 메뉴에는 영향 없음) */
.biz-contact .contact-value{
  margin: 0;
  font-weight: 900;
  letter-spacing:-0.02em;
  color:#1d2088;
  font-size: 20px;
  padding-left: 20px;
}

/* ✅ 카드 안에서만 링크(전화걸기/메일) 색/굵기 유지 */
.biz-contact .contact-card a{
  color: inherit;
  font-weight: inherit;
  text-decoration: none;
}

/* 운영시간/부가라인 */
.biz-contact .contact-sub{
  margin: 0 0 2px;
  color:#666;
  letter-spacing:-0.02em;
  font-size: 14px; /* UI성 텍스트 */
  padding-left: 20px;
}


/* 설명 문단 */
.biz-contact .contact-desc{
  margin: 8px 0 0;
  line-height: 1.75;
  color:#2b2b2b;
  word-break: keep-all;
  font-size: var(--fz-p);
  padding-left: 20px;
}

/* ✅ 카드 하단 안내(있다면) 아래로 밀어서 높이 균일감 */
.biz-contact .contact-note{
  margin-top: auto;
  padding-top: 10px;
  color:#666;
  letter-spacing:-0.02em;
  word-break: keep-all;
  font-size: 14px; /* UI성 */
  padding-left: 20px;
}

/* ---------------------------------------------------------
   리스트(노드 포함): “ul 덩어리 가운데” + “문장 왼쪽”
--------------------------------------------------------- */
.biz-contact .contact-list{
  /* ✅ ul 덩어리 자체를 가운데 */
  width: fit-content;
  max-width: min(560px, 100%);
  margin: 10px auto 0;

  padding: 0;          /* 기본 ul 패딩 제거 */
  list-style:none;
}
.biz-contact .contact-list li{
  position:relative;
  padding-left: 22px;  /* ✅ 노드 공간 확보 → 시작축 통일 */
  line-height: 1.7;
  color:#2b2b2b;
  word-break: keep-all;
  text-align:left;
  font-size: 15px;
}
.biz-contact .contact-list li + li{ margin-top: 8px; }

.biz-contact .contact-list li::before{
  content:"";
  position:absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(29,32,136,.45);
  left: 8px;
  top: 0.95em;
  transform: translateY(-50%);
}

/* ---------------------------------------------------------
   안내 사항 박스
--------------------------------------------------------- */
.biz-contact .notice-box{
  background:#f6f9ff;
  border:1px solid rgba(29,32,136,.12);
  border-radius: 14px;
  padding: 18px 18px;
  box-shadow: 0 6px 14px rgba(0,0,0,.06);
}

.biz-contact .notice-strong{
  margin: 0 0 10px;
  font-weight: 700;
  color:#233a4a;
  letter-spacing:-0.02em;
  word-break: keep-all;
  font-size: var(--fz-h4);
  line-height: 1.5;
  padding-top: 5px;
  font-size: 15px;
}
.biz-contact .notice-desc{
  margin: 0;
  line-height: 1.75;
  color:#2b2b2b;
  letter-spacing:-0.02em;
  word-break: keep-all;
  font-size: var(--fz-p);
  padding-left: 20px;
}

/* 온라인 구매 버튼 */
.biz-contact .shop-links{
  margin-top: 12px;
  display:flex;
  gap: 10px;
  justify-content:center;
  flex-wrap:wrap;
}
/* ✅ 이미지로 쓰는 shop-btn: 박스(배경/패딩/고정높이/그림자) 제거 */
.biz-contact .shop-btn{
  background: transparent !important;
  box-shadow: none !important;
  border: 0 !important;

  min-width: 0 !important;
  height: auto !important;
  padding: 0 !important;

  line-height: 0;              /* 이미지 아래 미세 여백 방지 */
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ✅ 이미지가 버튼 크기를 결정하도록 */
.biz-contact .shop-btn img{
  display: block;
  height: 44px;                /* 원하는 버튼 크기 */
  width: auto;
  object-fit: contain;
}

@media (hover:hover){
  .biz-contact .shop-btn:hover{
    transform: translateY(-1px);
  }
}


/* 인라인 강조 */
.biz-contact .contact-inline{
  font-weight:800;
  color:#1d2088;
}

/* 마무리 문구 */
.biz-contact .contact-ending{
  background:#ffffff;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 14px;
  padding: 20px 18px;
  box-shadow: 0 10px 22px rgba(0,0,0,.06);
  text-align:center;
}
.biz-contact .contact-ending p{
  margin:0;
  line-height: 1.75;
  color:#233a4a;
  font-weight: 800;
  letter-spacing:-0.02em;
  word-break: keep-all;
  font-size: var(--fz-p);
}

/* =========================
   DESKTOP (1025+)
   - 전화/이메일 2열 + 동일높이
   - 폰트/패딩을 다른 페이지 데스크탑 톤으로
========================= */
@media (min-width:1025px){

  .contact > h2{
    margin: 20px 0 20px;
    color:#233a4a;
    font-size: var(--fz-h2);
  }

  /* ✅ 2열 레이아웃 */
  .biz-contact{
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    align-items: stretch; /* ✅ 같은 행 높이로 늘림 */
  }

  /* intro는 2칸 전체 */
  .biz-contact .contact-intro{
    grid-column: 1 / -1;
    padding: 18px 18px 16px;
    border-radius: 16px;
  }
  .biz-contact .contact-intro p{
    font-size: var(--fz-p);
  }
  .biz-contact .contact-intro p br{ display:inline; }

  /* ✅ 전화/이메일 카드: 같은 높이 */
  .biz-contact .contact-card--tel{ grid-column: 1; }
  .biz-contact .contact-card--mail{ grid-column: 2; }

  .biz-contact .contact-card{
    border-radius: 16px;

    /* ✅ 좌우 패딩 넉넉히(다른 페이지 박스 기준) */
    padding: 26px 28px 24px;

    /* ✅ 카드 자체도 높이 채우도록 */
    height: 100%;
  }

  .biz-contact .contact-card > h3{
    font-size: var(--fz-h3); /* 18px */
    margin-bottom: 10px;
  }

  .biz-contact .contact-value{
    font-size: 26px; /* 데스크탑에서 확실히 커지게 */
  }
  .biz-contact .contact-sub{
    font-size: 15px;
  }
  .biz-contact .contact-desc{
    font-size: var(--fz-p); /* 16px */
  }

  .biz-contact .contact-list{
    max-width: min(620px, 100%);
  }
  .biz-contact .contact-list li{
    font-size: var(--fz-li); /* 15px */
    padding-left: 22px;
  }
  .biz-contact .contact-list li::before{
    width: 7px;
    height: 7px;
    left: 7px;
  }

  /* notice / ending은 2칸 전체 */
  .biz-contact .notice-box,
  .biz-contact .contact-ending{
    grid-column: 1 / -1;
  }

  .biz-contact .notice-box{
    border-radius: 16px;
    padding: 22px 22px;
  }
  .biz-contact .notice-strong{
    font-size: var(--fz-h4); /* 17px */
  }
  .biz-contact .notice-desc{
    font-size: var(--fz-p); /* 16px */
  }

  .biz-contact .shop-btn{
    height: 48px;
    min-width: 200px;
    font-size: 15px;
  }

  .biz-contact .contact-ending{
    border-radius: 16px;
    padding: 22px 22px;
  }
  .biz-contact .contact-ending p{
    font-size: var(--fz-p);
  }
}



/* =========================================================
   6) FOOTER (공통)
========================================================= */
footer{
  background:#4a4a4a;
  color:#fff;
  padding:22px 18px 26px;
}

.footer1{
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius:14px;
  padding:16px 16px 14px;

  display:flex;
  flex-direction:column;
  gap:6px;
  text-align:left;
}
.footer1 .service{
  font-size:14px; /* UI 예외 */
  font-weight:500;
  opacity:.95;
  letter-spacing:-0.02em;
}
.footer1 .tel{
  font-size:30px; /* UI 예외 */
  font-weight:500;
  line-height:1.05;
  letter-spacing:-0.02em;
}

.footert2{
  margin-top:16px;
  display:flex;
  flex-direction:column;
  gap:10px;
  align-items:flex-start;
}
.logo2 img{
  display:block;
  height:34px;
  width:auto;
  opacity:.95;
}
.footert2 address{
  font-size:12px; /* UI 예외 */
  line-height:1.6;
  opacity:.9;
  letter-spacing:-0.01em;
  word-break: keep-all;
  overflow-wrap:anywhere;
}

@media (min-width:1025px){
  footer{
    min-height:230px;
    padding: 0 clamp(80px, 8.5vw, 180px);
    display:flex;
    align-items:center;
    justify-content: space-between;
  }
  .footer1{
    background:transparent !important;
    border:0 !important;
    border-radius:0 !important;
    box-shadow:none !important;
    padding:0 !important;
    margin:0 !important;
    gap:10px;
  }
  .footer1 .service{ font-size:25px; } /* UI 예외 */
  .footer1 .tel{ font-size:40px; }     /* UI 예외 */

  .footert2{
    width:520px;
    margin:0 !important;
    padding:0 !important;
    align-items:flex-end;
    text-align:right;
    gap:8px;
  }
  .logo2{
    width:100%;
    display:flex;
    justify-content:flex-end;
  }
  .logo2 img{ height:44px; }
  .footert2 address{
    font-size:14px; /* UI 예외 */
    line-height:1.75;
    opacity:.92;
    width:100%;
    text-align:right;
  }
}

/* =========================================================
   7) QUICK BAR (공통: 데스크탑만)
========================================================= */
.biolab-qb{ display:none; }

@media (min-width:1025px){
  .biolab-qb{ display:block; }

  :root{
    --qb-w: 100px;
    --qb-h: 350px;
    --qb-radius: 18px;
    --qb-safe: 10px;
    --qb-offset: 70px;

    --qb-scale: min(
      1,
      calc((100vw - (var(--qb-safe) * 2)) / var(--qb-w)),
      calc((100vh - (var(--qb-safe) * 2)) / var(--qb-h))
    );
  }

  .biolab-qb{
    position:fixed;
    top:50%;
    transform: translateY(-50%) scale(var(--qb-scale));
    transform-origin: right center;
    z-index:9999;

    right: max(var(--qb-safe), calc(50% - 960px + var(--qb-offset)));
    width: var(--qb-w);
    height: var(--qb-h);
    border-radius: var(--qb-radius);
    background:#006b63;
    box-shadow:0 14px 30px rgba(0,0,0,.4);
    overflow:hidden;
  }

  .biolab-qb__inner{
    position:relative;
    width:100%;
    height:100%;
    color:#fff;
    text-align:center;
    word-break: keep-all;
  }
  .biolab-qb *{ box-sizing:border-box; }

  .biolab-qb__logo{
    position:absolute;
    left:50%;
    top:15%;
    transform: translateX(-50%);
    width:50px;
    height:34px;
  }
  .biolab-qb__logo img{
    width:100%;
    height:100%;
    object-fit:contain;
    display:block;
  }

  .biolab-qb__title{
    position:absolute;
    top:45%;
    left:50%;
    transform: translateX(-50%);
    width:100%;
    text-shadow: 0 2px 0 rgba(0,0,0,.28);
  }
  .biolab-qb__title .en{
    font-family:"KOTRA_BOLD", sans-serif;
    font-weight:700;
    font-size:14px; /* UI 예외 */
    line-height:1.05;
    letter-spacing:-0.4px;
    white-space:nowrap;
  }
  .biolab-qb__title .ko{
    margin-top:0;
    font-family:"KOTRA_BOLD", sans-serif;
    font-weight:700;
    font-size:10px; /* UI 예외 */
    letter-spacing:-0.8px;
    white-space:nowrap;
  }

  .biolab-qb__desc{
    position:absolute;
    left:50%;
    transform: translateX(-50%);
    width:100%;
    top:245px;
    font-weight:500;
    font-size:10px; /* UI 예외 */
    line-height:1.25;
    text-shadow: 0 2px 0 rgba(0,0,0,.25);
    white-space:nowrap;
  }

  .biolab-qb__btn{
    position:absolute;
    left:50%;
    top:290px;
    transform: translateX(-50%);
    width:86px;
    height:24px;
    border-radius:999px;
    background:#fff;
    color:#111;

    display:flex;
    align-items:center;
    justify-content:center;
    gap:6px;
    box-shadow: 0 5px 0 rgba(0,0,0,.18);
  }
  .biolab-qb__btn .txt{
    font-weight:700;
    font-size:10px; /* UI 예외 */
    white-space:nowrap;
  }
  .biolab-qb__btn .arrow{
    font-size:11px; /* UI 예외 */
    font-weight:900;
    color:#006b63;
    line-height:1;
    white-space:nowrap;
  }
  .biolab-qb__btn:hover{
    transform: translateX(-50%) translateY(-1px);
  }

  @media (max-width:1400px){
    :root{ --qb-offset:20px; }
  }
}
