.elementor-1912 .elementor-element.elementor-element-119f33dc{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--gap:0px 0px;--row-gap:0px;--column-gap:0px;}.elementor-1912 .elementor-element.elementor-element-119f33dc.e-con{--flex-grow:0;--flex-shrink:0;}.elementor-1912 .elementor-element.elementor-element-5b384e46{--display:flex;}.elementor-1912 .elementor-element.elementor-element-5b384e46.e-con{--flex-grow:0;--flex-shrink:0;}.elementor-widget-image .widget-image-caption{color:var( --e-global-color-text );font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}.elementor-1912 .elementor-element.elementor-element-979885f{width:var( --container-widget-width, 100% );max-width:100%;--container-widget-width:100%;--container-widget-flex-grow:0;text-align:start;}.elementor-1912 .elementor-element.elementor-element-979885f.elementor-element{--flex-grow:0;--flex-shrink:0;}.elementor-1912 .elementor-element.elementor-element-979885f img{width:100%;max-width:100%;height:230px;}.elementor-1912 .elementor-element.elementor-element-2e328c40{--display:flex;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-1912 .elementor-element.elementor-element-2e328c40.e-con{--flex-grow:0;--flex-shrink:0;}.elementor-1912 .elementor-element.elementor-element-67677a77{--display:flex;}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-1912 .elementor-element.elementor-element-47acbe72{width:var( --container-widget-width, 106.366% );max-width:106.366%;--container-widget-width:106.366%;--container-widget-flex-grow:0;}.elementor-1912 .elementor-element.elementor-element-47acbe72.elementor-element{--flex-grow:0;--flex-shrink:0;}.elementor-1912 .elementor-element.elementor-element-66ee60ff{--display:flex;}.elementor-1912 .elementor-element.elementor-element-ab2bd3b{--display:flex;}@media(min-width:768px){.elementor-1912 .elementor-element.elementor-element-119f33dc{--width:100.398%;}.elementor-1912 .elementor-element.elementor-element-5b384e46{--width:36.615%;}.elementor-1912 .elementor-element.elementor-element-2e328c40{--width:60.037%;}}/* Start custom CSS for text-editor, class: .elementor-element-935302e *//* 기본 폰트 및 배경 설정 */
body {
    font-family: 'Malgun Gothic', 'Apple SD Gothic Neo', sans-serif;
    background-color: #ffffff;
    margin: 0;
    padding: 40px;
    display: flex;
    justify-content: center;
}

.main-container {
    width: 100%;
    max-width: 1100px;
}

/* 제목 및 강조 라인 스타일 */
.title-section h1 {
    font-size: 26px;
    margin-bottom: 8px;
    color: #000;
}

.blue-text {
    color: #3498db; /* In Mold Paint 파란색 */
}

.red-line {
    width: 100%;
    height: 4px;
    background-color: #c0392b; /* 상단 짙은 빨간색 라인 */
    margin-bottom: 25px;
}

/* 테이블 둥근 모서리 래퍼 */
.table-wrapper {
    border-radius: 12px;
    overflow: hidden; /* 모서리 밖으로 나가는 내용 숨김 */
    border: 1px solid #d1d9e6;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.spec-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #fff;
}

/* 헤더 스타일 */
.spec-table thead {
    background-color: #dce6f1; /* 연한 블루그레이 배경 */
}

.spec-table th {
    padding: 15px;
    font-style: italic; /* 헤더 글자 기울임 */
    font-weight: bold;
    color: #333;
    font-size: 16px;
    border-bottom: 1px solid #c8d1df;
}

/* 데이터 셀 스타일 */
.spec-table td {
    padding: 12px 15px;
    text-align: center;
    font-size: 13px;
    color: #444;
    border-bottom: 1px solid #edf2f7;
}

/* 제품명 열 강조 */
.spec-table tbody td:first-child {
    font-weight: bold;
    color: #000;
}

/* 비고란 왼쪽 정렬 */
.left-align {
    text-align: left !important;
}

/* 짝수 행 배경색 */
.spec-table tbody tr:nth-child(even) {
    background-color: #eaf2f7;
}

/* 하단 KIDS 제품군 강조 */
.highlight-row {
    background-color: f7f9fc !important;
}

/* Color 열 내부 정렬 (텍스트 + 원형 아이콘) */
.color-td {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px; /* 텍스트와 원 사이 간격 */
    height: 100%;
}

.dot {
    display: inline-block;
    width: 15px;
    height: 15px;
    border-radius: 50%; /* 완전한 원형 */
    border: 1px solid #ddd;
    flex-shrink: 0;
}

/* 호버 효과 */
.spec-table tbody tr:hover {
    background-color: #f1f4f9;
}/* End custom CSS */