@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+KR:wght@400;600;700;900&display=swap');

#ctt{margin:0;padding:0;background:transparent}
#ctt header h1{position:absolute;font-size:0;line-height:0;overflow:hidden}
#ctt_con{padding:0;line-height:1.6em}
#ctt_con img{max-width:100%;height:auto}

/* ================================================
   다이렉트 상품 상세 페이지
   ================================================ */
.prod-page{
  max-width:1536px;
  margin:0 auto;
  padding:0 0 40px;
  font-family:'Noto Sans KR','Malgun Gothic',sans-serif;
  color:#333;
}

/* ---- 상단 히어로 ---- */
.prod-hero{
  position:relative;
  border-radius:20px;
  overflow:hidden;
  min-height:auto;
  display:block;
  margin-bottom:50px;
}
.prod-hero-bg,.prod-hero-overlay,.prod-hero-content{display:none}
.prod-hero-banner{display:block;width:100%;border-radius:20px}
.prod-hero-banner img{width:100%;height:auto;display:block;border-radius:20px}
.prod-hero-bg{
  position:absolute;inset:0;z-index:0;
  background-size:cover;background-position:center;
}
.prod-hero-overlay{
  position:absolute;inset:0;z-index:1;
  background:linear-gradient(135deg,rgba(7,18,35,.88) 0%,rgba(10,37,79,.75) 50%,rgba(11,31,58,.85) 100%);
}
.prod-hero-content{
  position:relative;z-index:2;
  padding:70px 80px;
  color:#fff;
  max-width:700px;
}
.prod-hero-badge{
  display:inline-flex;align-items:center;gap:8px;
  padding:8px 18px;border-radius:999px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.2);
  font-size:14px;font-weight:700;
  margin-bottom:20px;
  backdrop-filter:blur(4px);
}
.prod-hero-badge .dot{
  width:8px;height:8px;border-radius:50%;
  background:#f59e0b;
}
.prod-hero-name{
  font-family:'Noto Serif KR',serif;
  font-size:48px;font-weight:900;
  letter-spacing:-.04em;line-height:1.15;
  margin:0 0 12px;
  text-shadow:0 4px 20px rgba(0,0,0,.3);
}
.prod-hero-sub{
  font-size:20px;color:rgba(255,255,255,.8);
  font-weight:500;line-height:1.6;
  margin:0 0 32px;
}
.prod-hero-price{
  display:flex;align-items:baseline;gap:12px;
  margin-bottom:28px;
}
.prod-hero-price .price-label{
  font-size:15px;color:rgba(255,255,255,.6);font-weight:600;
}
.prod-hero-price .price-value{
  font-size:42px;font-weight:900;color:#f59e0b;
  letter-spacing:-.02em;
}
.prod-hero-price .price-unit{
  font-size:18px;color:rgba(255,255,255,.7);font-weight:600;
}
.prod-hero-cta{
  display:inline-flex;align-items:center;gap:10px;
  padding:16px 36px;border-radius:8px;
  background:#2d86d9;color:#fff;
  font-size:17px;font-weight:800;
  text-decoration:none;
  transition:background .2s,transform .2s;
  box-shadow:0 8px 24px rgba(45,134,217,.35);
}
.prod-hero-cta:hover{background:#2474c0;transform:translateY(-2px)}

/* ---- 포함 내역 ---- */
.prod-includes{margin-bottom:50px}
.prod-section-title{
  font-family:'Noto Serif KR',serif;
  font-size:28px;font-weight:900;color:#0f172a;
  letter-spacing:-.03em;margin:0 0 10px;
}
.prod-section-sub{
  font-size:15px;color:#64748b;font-weight:600;
  margin:0 0 32px;
}
.prod-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}
.prod-item{
  background:#fff;
  border:1px solid #e8ecf1;
  border-radius:16px;
  overflow:hidden;
  text-align:center;
  transition:transform .2s,box-shadow .2s;
  padding:0;
}
.prod-item:hover{
  transform:translateY(-4px);
  box-shadow:0 12px 32px rgba(0,0,0,.08);
}
.prod-item-icon{display:none}
.prod-item-img{width:100%;overflow:hidden;background:#f8fafc}
.prod-item-img img{width:100%;height:auto;display:block}
.prod-item-info{padding:14px 16px;background:#f8fafc;border-top:1px solid #e8ecf1}
.prod-item-name{
  font-size:15px;font-weight:800;color:#0f172a;
  margin-bottom:4px;
}
.prod-item-desc{
  font-size:13px;color:#64748b;font-weight:500;
  line-height:1.5;
}

/* ---- 상세 설명 ---- */
.prod-detail{
  background:#f3f5f7;
  border-radius:16px;
  padding:50px;
  margin-bottom:50px;
}
.prod-detail p{
  font-size:16px;line-height:2;color:#475569;
  margin:0 0 20px;word-break:keep-all;
}
.prod-detail b{color:#0f172a}

/* ---- 비교표 ---- */
.prod-compare{margin-bottom:50px}
.prod-table-wrap{
  overflow-x:auto;
  border-radius:12px;
  border:1px solid #e8ecf1;
}
.prod-table{
  width:100%;border-collapse:collapse;
  font-size:15px;
}
.prod-table thead th{
  background:#0f172a;color:#fff;
  padding:16px 20px;font-weight:700;
  text-align:center;white-space:nowrap;
}
.prod-table tbody td{
  padding:14px 20px;text-align:center;
  border-bottom:1px solid #eee;
  font-weight:600;color:#475569;
}
.prod-table tbody tr:hover td{background:#f0f7ff}
.prod-table .col-highlight{
  background:rgba(45,134,217,.06);
  color:#0f172a;font-weight:800;
}
.prod-table .col-highlight-head{
  background:#2d86d9;
}

/* ---- 하단 CTA ---- */
.prod-bottom-cta{
  text-align:center;
  background:linear-gradient(135deg,#071223 0%,#0a254f 100%);
  border-radius:16px;
  padding:50px 40px;
}
.prod-bottom-cta .cta-title{
  font-family:'Noto Serif KR',serif;
  font-size:28px;font-weight:900;color:#fff;
  margin:0 0 12px;letter-spacing:-.03em;
}
.prod-bottom-cta .cta-desc{
  font-size:16px;color:rgba(255,255,255,.7);
  font-weight:500;margin:0 0 28px;
}
.prod-bottom-cta .cta-phone{
  font-size:42px;font-weight:900;color:#f59e0b;
  margin:0 0 24px;letter-spacing:-.02em;
}
.prod-bottom-cta a{
  display:inline-flex;align-items:center;gap:10px;
  padding:16px 40px;border-radius:8px;
  background:#2d86d9;color:#fff;
  font-size:17px;font-weight:800;
  text-decoration:none;
  transition:background .2s;
}
.prod-bottom-cta a:hover{background:#2474c0}

/* ---- 반응형 ---- */
@media(max-width:1024px){
  .prod-grid{grid-template-columns:repeat(2,1fr)}
  .prod-hero-content{padding:50px 40px}
  .prod-hero-name{font-size:36px}
  .prod-hero-price .price-value{font-size:34px}
}
@media(max-width:768px){
  .prod-hero{min-height:auto;border-radius:14px}
  .prod-hero-content{padding:40px 24px}
  .prod-hero-name{font-size:28px}
  .prod-hero-sub{font-size:16px}
  .prod-hero-price .price-value{font-size:28px}
  .prod-grid{grid-template-columns:1fr 1fr;gap:14px}
  .prod-item{padding:24px 18px}
  .prod-detail{padding:32px 24px;border-radius:12px}
  .prod-section-title{font-size:22px}
  .prod-bottom-cta{padding:36px 24px;border-radius:12px}
  .prod-bottom-cta .cta-title{font-size:22px}
  .prod-bottom-cta .cta-phone{font-size:32px}
}

