/* ===================================================
 * Custom utilities (추가)
 * - Tailwind arbitrary class(h-[...])가 현재 빌드에 포함되지 않는 경우를 대비
 * =================================================== */
.h-200px {
    height: 200px;
}

/* footer-top: 문구가 길어도 버튼이 밀리지 않도록 가로폭 제한 */
.footer-top-desc {
    max-width: 70ch;
}

/* google-map: 지도 영역 비율(세로 사이즈)을 클래스로 제어 */
.google-map {
    position: relative;
    width: 100%;
    height: 0;
    overflow: hidden;
}
/* pseudo-element 미적용 환경 대비: modifier 클래스가 있으면 padding-top을 직접 적용 */
.google-map.google-map--4x3 { padding-top: 75%; }
.google-map.google-map--16x9 { padding-top: 56.25%; }
.google-map.google-map--1x1 { padding-top: 100%; }
.google-map::before {
    content: "";
    display: block;
    padding-top: 75%; /* 기본 4:3 */
}
.google-map iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}
/* 필요 시 비율 변경 */
.google-map--4x3::before { padding-top: 75%; }
.google-map--16x9::before { padding-top: 56.25%; }
.google-map--1x1::before { padding-top: 100%; }

/* 메인페이지 Products 슬라이더(공통): 썸네일 영역 높이 고정 + 이미지 세로/가로 중앙 정렬 */
.properties-slider-container .home-product-thumb {
    height: 200px !important;
}
.properties-slider-container .home-product-thumb img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    object-position: center !important;
}

/* /products: 제품 목록 카드도 메인/하단 삽입 카드와 동일한 썸네일 규격 유지 */
.products-page .home-product-thumb {
    height: 200px !important;
}
.products-page .home-product-thumb img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    object-position: center !important;
}

/* /search 페이지: PC에서 검색바 가로 폭 축소 */
@media (min-width: 1024px) {
    .search-page-form-container {
        max-width: 35% !important;
        min-width: 360px;
    }
}

/* ===================================================
 * 공통(Custom) 스타일
 * - 언어별(custom-*.css)에서 공통으로 사용되던 스타일을 이 파일로 이동
 * - 언어별 파일에는 폰트/언어 특화(타이포)만 남김
 * =================================================== */

/* ===================================================
 * 게시판 본문 타이포 (기술자료 등)
 * - Tailwind prose 변형 클래스가 빌드 없이 적용되지 않는 환경 대비
 * - 특정 페이지에만 영향 주도록 전용 래퍼 클래스로 스코프 처리
 * =================================================== */
.board-post-content {
    color: var(--paragraph-color, #555);
    line-height: 1.9;
}
.board-post-content p {
    margin: 0.75rem 0;
    line-height: 1.9;
}
.board-post-content h2 {
    margin: 3.5rem 0 1.25rem;
    font-size: 1.5rem;
    line-height: 1.3;
    font-weight: 700;
    color: var(--heading-color, #222);
}
.board-post-content h3 {
    margin: 3rem 0 1rem;
    font-size: 1.25rem;
    line-height: 1.35;
    font-weight: 700;
    color: var(--heading-color, #222);
}
.board-post-content h4 {
    margin: 2rem 0 0.75rem;
    font-size: 1.125rem;
    line-height: 1.4;
    font-weight: 700;
    color: var(--heading-color, #222);
}
.board-post-content ul,
.board-post-content ol {
    margin: 1rem 0;
    padding-left: 1.25rem;
}
.board-post-content li {
    margin: 0.25rem 0;
}
.board-post-content img {
    max-width: 100%;
    height: auto;
}

/* 링크 밑줄 제거 */
a {
    text-decoration: none;
}
a:hover {
    text-decoration: none;
}

/* 언어 드롭다운 호버 스타일 */
.language-dropdown-hover {
    position: relative;
}
.language-dropdown-hover .dropdown-toggle::after {
    display: none;
}
.language-dropdown-hover .dropdown-menu {
    min-width: 120px;
}
.language-dropdown-hover > button:hover {
    opacity: 0.8;
}

/* 언어 드롭다운 그룹 격리 (다른 요소와 hover 충돌 방지) */
.language-dropdown-group {
    isolation: isolate;
    position: relative;
    z-index: 1000;
}
.language-dropdown-group:hover .language-menu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}
.language-menu {
    z-index: 9999 !important;
    position: absolute !important;
}

/* 언어 선택 링크 아이콘과 텍스트 간격 */
.language-toggle {
    gap: 0.125rem !important; /* 2px */
}
.language-toggle svg {
    margin-right: 0.125rem !important; /* 2px */
}

/* 헤더 메뉴 드롭다운 애니메이션 */
.main-nav .drop-menu {
    transform: translateY(-10px) !important;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease !important;
}
.main-nav li:hover > .drop-menu {
    transform: translateY(0) !important;
}
.main-nav .megamenu {
    transform: translateY(-10px) !important;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease !important;
}
.main-nav li:hover > .megamenu {
    transform: translateY(0) !important;
}

/* 헤더 하위메뉴 줄간격 조정 */
.menu-submenu li a {
    padding-top: 0.375rem !important;
    padding-bottom: 0.375rem !important;
    line-height: 1.4 !important;
}
.menu-submenu li span.title {
    padding-top: 0.375rem !important;
    padding-bottom: 0.375rem !important;
    line-height: 1.4 !important;
}

/* 제품 메뉴 그리드 스타일 */
.product-menu-grid {
    display: grid !important;
    min-width: max-content !important;
}
.product-menu-grid > li {
    padding-right: 0.75rem !important; /* pr-3 */
    padding-top: 0.75rem !important; /* pt-3 */
    padding-left: 1.875rem !important; /* pl-30px */
    min-width: 200px !important;
    width: auto !important;
}
.product-menu-grid > li > ul > li > a {
    white-space: nowrap !important;
    padding-top: 0.375rem !important;
    padding-bottom: 0.375rem !important;
    line-height: 1.4 !important;
}
.product-menu-grid > li > ul > li > ul > li > a {
    padding-top: 0.375rem !important;
    padding-bottom: 0.375rem !important;
    line-height: 1.4 !important;
}

/* 그라데이션 배경 클래스 */
.bg-gradient-purple {
    background: linear-gradient(135deg, #fe0000 0%, #00013a 100%);
}
.bg-gradient-icon {
    background: linear-gradient(135deg, #fe0000 0%, #00013a 100%);
    box-shadow: 0 10px 20px rgba(254, 0, 0, 0.3);
}

/* 접근성 개선 */
*:focus-visible {
    outline: 2px solid var(--secondary-color, #fe0000);
    outline-offset: 2px;
}

/* 폼 요소는 기존 focus:border-* 스타일을 사용하므로 outline 중복(빨간 2줄) 방지 */
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: none !important;
    outline-offset: 0 !important;
}

/* ===================================================
 * /contact: 폼 + TinyMCE + 파일첨부 + 개인정보처리방침 모달 (스코프)
 * =================================================== */

/* TinyMCE 도구바 줄 제거 */
.contact-form .tox-toolbar,
.contact-form .tox-toolbar__overflow,
.contact-form .tox-toolbar__primary,
.contact-form .tox .tox-toolbar,
.contact-form .tox .tox-toolbar__overflow,
.contact-form .tox .tox-toolbar__primary {
    border: none !important;
    border-bottom: none !important;
}
.contact-form .tox .tox-edit-area {
    border-top: none !important;
}
.contact-form .tox .tox-toolbar-overlord {
    border-bottom: none !important;
}
.contact-form .tox .tox-toolbar__group,
.contact-form .tox .tox-split-button {
    border-right: none !important;
}

/* TinyMCE 에디터 박스 라운드 제거 */
.contact-form .tox-tinymce,
.contact-form .tox.tox-tinymce,
.contact-form .tox .tox-edit-area__iframe {
    border-radius: 0 !important;
}

/* Contact 폼 입력 박스 스타일 통일(hover/focus) */
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form input[type="file"],
.contact-form textarea,
.contact-form select {
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}
.contact-form input[type="text"]:hover,
.contact-form input[type="email"]:hover,
.contact-form input[type="tel"]:hover,
.contact-form input[type="file"]:hover,
.contact-form textarea:hover,
.contact-form select:hover {
    border-color: var(--border-color-12, #e5e5e5) !important;
}
.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form input[type="tel"]:focus,
.contact-form input[type="file"]:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.08);
}

/* 파일첨부 커스텀 UI */
.contact-file-input__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 0 14px;
    border: 1px solid var(--border-color-12, #e5e5e5);
    background: var(--section-bg-1, #f6f6f6);
    color: var(--heading-color, #111);
    font-size: 14px;
    white-space: nowrap;
}
.contact-file-input__name {
    font-size: 15px;
    color: var(--paragraph-color, #555);
}
.contact-file-input__name.is-empty {
    opacity: 0.7;
}

/* intl-tel-input 스타일 */
.contact-form .iti {
    width: 100%;
}
.contact-form .iti__flag-container {
    z-index: 10;
    display: flex;
    align-items: center;
    height: 100%;
}
.contact-form .iti__selected-country {
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
}
.contact-form .iti__selected-country-primary {
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}
.contact-form .iti__country-list,
.contact-form .iti__dropdown-content {
    z-index: 9999 !important;
}

/* 개인정보처리방침 모달 (/contact 전용) */
.contact-modal-container .modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1000000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 30px 15px;
    overflow-y: auto;
}
.contact-modal-container .modal .modal-content {
    margin: 0 auto;
    transform: translateY(-80px);
    transition: transform 0.5s ease;
}
.contact-modal-container .contact-privacy-modal {
    align-items: center;
    justify-content: center;
}
.contact-modal-container .contact-privacy-modal.modal {
    padding-top: 20px;
    padding-bottom: 20px;
}
.contact-modal-container .contact-privacy-modal .modal-content {
    max-width: 720px;
}
.contact-modal-container .contact-privacy-modal__panel {
    max-height: 70vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.contact-modal-container .contact-privacy-modal__body {
    flex: 1;
    overflow-y: auto;
}
.contact-modal-container .contact-privacy-modal__close-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 10px 18px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    line-height: 1.2 !important;
    color: var(--heading-color, #111) !important;
    background: #fff !important;
    border: 1px solid var(--border-color-9, #e5e5e5) !important;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease !important;
}
.contact-modal-container .contact-privacy-modal__close-btn:hover {
    background: var(--section-bg-1, #f6f6f6) !important;
    border-color: var(--border-color-12, #e5e5e5) !important;
}
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Skip Link */
.skip-link.visually-hidden-focusable:not(:focus):not(:focus-within),
a.skip-link.visually-hidden-focusable:not(:focus):not(:focus-within) {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
    top: -9999px !important;
    left: -9999px !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    display: none !important;
}
.skip-link.visually-hidden-focusable:focus,
.skip-link.visually-hidden-focusable:focus-within,
a.skip-link.visually-hidden-focusable:focus,
a.skip-link.visually-hidden-focusable:focus-within {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: auto !important;
    height: auto !important;
    padding: 0.75rem 1.5rem !important;
    margin: 0 !important;
    overflow: visible !important;
    clip: auto !important;
    white-space: normal !important;
    z-index: 10000 !important;
    background-color: #00013a !important;
    color: #fff !important;
    font-weight: bold !important;
    text-align: center !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    outline: 3px solid #fe0000 !important;
    outline-offset: -3px !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    display: block !important;
}

/* 모바일 터치 영역 확대 (최소 44x44px) */
@media (max-width: 768px) {
    button,
    a,
    input[type="submit"],
    input[type="button"] {
        min-height: 44px;
        min-width: 44px;
    }
}

/* 모바일 애니메이션 최적화 */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Accent 색상 클래스 */
.text-accent {
    color: var(--accent-color, #ff4a2c) !important;
}
.text-secondary-color {
    color: var(--secondary-color, #fe0000) !important;
}
.bg-accent {
    background-color: var(--accent-color, #ff4a2c) !important;
}
.border-accent {
    border-color: var(--accent-color, #ff4a2c) !important;
}
.hover\:text-accent:hover {
    color: var(--accent-color, #ff4a2c) !important;
}

/* 언어 드롭다운 메뉴 스타일 개선 */
.language-menu li a {
    line-height: 1.4;
}
.language-menu li a .bg-accent {
    background-color: var(--accent-color, #ff4a2c) !important;
}

/* 헤더 탑 부분 스타일 */
.bg-section-bg-6 {
    background-color: rgb(11 44 61 / var(--tw-bg-opacity));
}

/* 헤더 탑 아이콘 호버 효과 */
.bg-section-bg-6 .group svg.text-accent {
    opacity: 1;
    transition: opacity 0.3s ease;
}
.bg-section-bg-6 .group:hover svg.text-accent {
    opacity: 1 !important;
}
.bg-section-bg-6 .group:hover {
    color: var(--accent-color, #ff4a2c) !important;
}

/* 히어로 슬라이더 페이지네이션 하단 배치 */
.hero-slider-pagination {
    position: absolute !important;
    bottom: 20px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    top: auto !important;
    width: auto !important;
    display: flex !important;
    gap: 10px !important;
    z-index: 10 !important;
}
.hero-slider-pagination .swiper-pagination-bullet {
    width: 12px !important;
    height: 12px !important;
    background: rgba(255, 255, 255, 0.5) !important;
    opacity: 1 !important;
    margin: 0 !important;
    transition: all 0.3s ease !important;
}
.hero-slider-pagination .swiper-pagination-bullet:hover {
    background: rgba(255, 255, 255, 0.8) !important;
    transform: scale(1.2) !important;
}
.hero-slider-pagination .swiper-pagination-bullet-active {
    background: var(--secondary-color, #fe0000) !important;
    width: 12px !important;
    height: 12px !important;
    margin-bottom: 0 !important;
}

/* 이미지 슬라이드 영역만 슬라이드되도록 */
.hero-slider-container .grid > div:last-child .primary-slider,
.hero-slider-container .grid > div:last-child .primary-slider .swiper-wrapper,
.hero-slider-container .grid > div:last-child .primary-slider .swiper-slide {
    width: 100% !important;
    height: 100% !important;
}
.hero-slider-container .grid > div:last-child .primary-slider .swiper-slide img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
}
.hero-slider-container .grid > div:last-child,
.hero-slider-container .grid > div:last-child > div {
    width: 100% !important;
}

/* 히어로 섹션 컨테이너 더 넓게 */
.hero-slider-container .container {
    max-width: 100% !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
}
@media (min-width: 576px) {
    .hero-slider-container .container { max-width: 100% !important; }
}
@media (min-width: 768px) {
    .hero-slider-container .container { max-width: 100% !important; }
}
@media (min-width: 992px) {
    .hero-slider-container .container { max-width: 90% !important; }
}
@media (min-width: 1200px) {
    .hero-slider-container .container { max-width: 95% !important; }
}
@media (min-width: 1400px) {
    .hero-slider-container .container { max-width: 1400px !important; }
}

/* 텍스트 영역이 제대로 보이도록 */
.hero-slider-container .grid > div:first-child {
    position: relative;
    z-index: 20;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Product Categories 카드 롤오버 */
.category-card:hover {
    background-color: rgba(254, 0, 0, 0.08) !important;
}
.category-card-image {
    width: 100px;
    height: 100px;
}
@media (min-width: 768px) {
    .category-card-image { width: 200px; height: 200px; }
}
@media (min-width: 1280px) {
    .category-card-image { width: 220px; height: 220px; }
}

/* ===================================================
 * 메인: 제품 카테고리 전용 레이아웃 (스코프)
 * - 일부 환경에서 Tailwind 유틸(lg:grid, lg:hidden 등)이 빌드에 포함되지 않아도
 *   메인 '제품 카테고리' 섹션만 정상 동작하도록 전용 클래스에만 적용
 * =================================================== */
.product-categories-section .product-categories-grid-mobile {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 30px;
}
.product-categories-section .product-categories-grid-pc {
    display: none;
}
@media (min-width: 1024px) {
    .product-categories-section .product-categories-grid-mobile {
        display: none;
    }
    .product-categories-section .product-categories-grid-pc {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 30px;
    }
}

/* Our Advantages 이미지 크기 제한 */
.our-advantages-image {
    max-width: 425px;
    width: 100%;
}

/* 제품 카테고리와 카운터 섹션 사이 여백 */
.product-categories-section {
    padding-bottom: 60px !important;
}
.counter-section {
    padding-top: 35px !important;
}

/* 제품 카드: 카테고리 배지 텍스트를 조금 위로(줄간격/패딩 미세 조정) */
.product-category-badge {
    line-height: 1.15 !important;
    padding-top: 6px !important;
    padding-bottom: 5px !important;
}

/* 제품 카드: '제품 보기' 링크 우측 정렬 */
.product-view-link {
    width: 100%;
    display: flex !important;
    justify-content: flex-end !important;
    align-items: center !important;
    gap: 0.5rem !important;
}

/* products 사이드바: 대분류(li) 상단 여백(간격) */
.products-sidebar-top-item:not(:first-child) {
    margin-top: 12px;
}

/* 제품 상세: 이미지 쉐도우 박스를 실제 이미지 크기에 맞춤 */
.product-detail-image-wrap {
    text-align: left;
}
.product-detail-image-box {
    display: inline-block;
    max-width: 100%;
    padding: 12px; /* hover 확대 시 박스 가장자리와 여백 확보 */
}
.product-detail-image-box a {
    display: block;
}
.product-detail-image-box img.product-detail-image {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
}

/* 제품 카드: 1줄 1단(모바일) 구간부터는 가운데 정렬 */
@media (max-width: 767.98px) {
    .properties-slider-container .home-product-title,
    .properties-slider-container .home-product-desc,
    .products-page .home-product-title,
    .products-page .home-product-desc {
        text-align: center !important;
    }

    .properties-slider-container .product-view-link,
    .products-page .product-view-link {
        justify-content: center !important;
    }

    /* 카테고리 배지(이미지 위)도 중앙으로 */
    .product-category-badge {
        left: 50% !important;
        transform: translateX(-50%) !important;
        right: auto !important;
    }
}


/* 카운터 섹션 Material Symbols/Icons 스타일 */
.counter-section .counter-icon {
    font-size: 70px !important;
    line-height: 1;
    font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 48;
}
@media (max-width: 768px) {
    .counter-section .counter-icon { font-size: 50px !important; }
}
@media (min-width: 1280px) {
    .counter-section .counter-icon { font-size: 80px !important; }
}
.counter-section .material-icons {
    font-size: 65px !important;
    font-weight: 300;
    font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
}

/* Footer-top 배너 그라데이션 배경 */
footer .container.w-full > div:first-child {
    background: linear-gradient(135deg, rgba(254, 0, 0, 1) 0%, rgba(255, 90, 60, 0.95) 50%, rgba(254, 0, 0, 1) 100%) !important;
}

/* Footer 로고 흰색 처리 및 크기/투명도 조정 */
footer img[class*="brightness-0"] {
    filter: brightness(0) invert(1) !important;
    opacity: 0.7 !important;
    max-width: 120px !important;
    height: auto !important;
}

/* Product List Swiper 네비게이션 버튼 스타일 */
.properties-swiper-button-next,
.properties-swiper-button-prev {
    width: 50px;
    height: 50px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color-1, #e5e5e5);
    color: var(--primary-color, #222);
}
.properties-swiper-button-next:hover,
.properties-swiper-button-prev:hover {
    background: var(--secondary-color, #fe0000);
    color: white;
    border-color: var(--secondary-color, #fe0000);
}
.properties-slider-container {
    position: relative;
}
.properties-slider-container .properties-swiper-button-next {
    position: absolute;
    right: -70px;
    top: 50%;
    transform: translateY(-50%);
}
.properties-slider-container .properties-swiper-button-prev {
    position: absolute;
    left: -70px;
    top: 50%;
    transform: translateY(-50%);
}
@media (max-width: 1279px) {
    .properties-swiper-button-next,
    .properties-swiper-button-prev {
        display: none !important;
    }
}

/* 제품 상세: 카테고리/제품 안내 include 문서형 레이아웃 (최소 클래스) */
.product-guide {
    color: var(--paragraph-color, #666);
    line-height: 1.8;
}
.product-guide h3 {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--heading-color, #111);
    /*margin: 25px 0 10px 0;*/
}
.product-guide h4 {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--heading-color, #111);
    margin: 15px 0 8px 0;
}
.product-guide p {
    margin: 0 0 12px 0;
}
.product-guide ul {
    /*margin: 0 0 12px 18px;*/
    padding: 0;
}
.product-guide li {
    margin: 6px 0;
}
/*
.product-guide .material-symbols-outlined,
.product-guide .material-icons {
    font-size: 20px;
    line-height: 1;
    vertical-align: -4px;
    margin-right: 6px;
    color: var(--secondary-color, #fe0000);
}*/
.product-guide table {
    width: 100%;
    border-collapse: collapse;
    margin: 10px 0 0 0;
    color: inherit;
}
.product-guide th,
.product-guide td {
    border: 1px solid var(--border-color-1, #e5e5e5);
    padding: 10px 12px;
    vertical-align: top;
}
.product-guide th {
    background: var(--section-bg-1, #f7f7f7);
    color: var(--heading-color, #111);
    font-weight: 600;
}

/* 제품 상세 include 섹션 구분선: 유틸 클래스 누락 환경에서도 확실히 적용 */
hr.product-section-divider {
    margin-top: 0;
    margin-bottom: 80px;
    border: 0;
    border-top: 1px solid var(--border-color-12, #e5e5e5);
    opacity: 0.25;
}


