﻿/* /iShop/Skin/Products/iPX/css/product_detail.css */

/* =========================================================
   IPX Product Detail
   Clean Industrial Product Page
   Based on original gray/product-focused direction
   ========================================================= */

.ipx-pd {
    --ipx-accent: #00879b;
    --ipx-accent-dark: #006c7c;
    --ipx-accent-soft: rgba(0, 135, 155, 0.08);
    --ipx-text: #1f2328;
    --ipx-text-2: #343a40;
    --ipx-muted: #68707a;
    --ipx-muted-light: #8a929b;
    --ipx-line: #d7dce1;
    --ipx-line-soft: #e4e7eb;
    --ipx-line-strong: #c4cbd2;
    --ipx-bg: #f3f4f5;
    --ipx-bg-2: #eceeef;
    --ipx-bg-3: #f8f9fa;
    --ipx-panel: #efefef;
    --ipx-white: #ffffff;
    --ipx-dark: #1f252b;
    --ipx-dark-soft: #303740;
    --ipx-shadow-soft: 0 8px 24px rgba(0, 0, 0, 0.045);
    --ipx-shadow-medium: 0 16px 44px rgba(0, 0, 0, 0.075);
    max-width: 1600px;
    margin: 10px auto 0;
    color: var(--ipx-text);
    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    background: #ffffff;
}

    .ipx-pd *,
    .ipx-pd *::before,
    .ipx-pd *::after {
        box-sizing: border-box;
    }

    .ipx-pd a {
        color: var(--ipx-accent);
        text-decoration: none;
        transition: color 0.18s ease;
    }

        .ipx-pd a:hover {
            color: var(--ipx-accent-dark);
        }

    .ipx-pd img {
        max-width: 100%;
        display: block;
    }

/* =========================================================
   HERO
   ========================================================= */

.ipx-pd__hero {
    background: #ededed;
    border: 1px solid #dddddd;
    overflow: hidden;
}

.ipx-pd__hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    min-height: 760px;
}

/* LEFT PRODUCT AREA */
.ipx-pd__left {
    position: relative;
    padding: 70px 68px 48px;
    background: linear-gradient(180deg, #f7f7f7 0%, #f1f2f3 100%);
}

/* RIGHT INFO AREA */
.ipx-pd__right {
    padding: 56px 54px 48px;
    background: linear-gradient(180deg, #eeeeee 0%, #e5e7e9 100%);
    border-left: 1px solid #d1d5da;
}

/* =========================================================
   BREADCRUMB / TITLE
   ========================================================= */

.ipx-pd__breadcrumb {
    margin-bottom: 24px;
    text-align: center;
}

    .ipx-pd__breadcrumb a {
        display: inline-flex;
        align-items: center;
        color: #626b75;
        font-size: 13px;
        font-weight: 650;
        letter-spacing: 0.03em;
    }

        .ipx-pd__breadcrumb a::before {
            content: "";
            display: inline-block;
            width: 26px;
            height: 2px;
            margin-right: 10px;
            background: var(--ipx-accent);
        }

        .ipx-pd__breadcrumb a:hover {
            color: var(--ipx-accent-dark);
        }

.ipx-pd__title {
    margin: 0;
    text-align: center;
    color: #252a30;
    font-size: 45px;
    line-height: 1.04;
    letter-spacing: -0.045em;
    font-weight: 720;
}

.ipx-pd__badge-wrap {
    display: flex;
    justify-content: center;
    margin-top: 22px;
}

.ipx-pd__series-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 124px;
    height: 42px;
    padding: 0 18px;
    background: var(--ipx-accent);
    color: #ffffff;
    font-size: 17px;
    font-weight: 700;
}

/* =========================================================
   MAIN PRODUCT VISUAL
   ========================================================= */

.ipx-pd__main-visual {
    position: relative;
    width: 100%;
    min-height: 372px;
    margin-top: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    cursor: zoom-in;
}

    /* subtle product platform */
    .ipx-pd__main-visual::before {
        content: "";
        position: absolute;
        left: 50%;
        bottom: 17px;
        width: 380px;
        height: 86px;
        transform: translateX(-50%);
        background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.095) 0%, rgba(0, 0, 0, 0.045) 45%, rgba(0, 0, 0, 0) 74%);
        filter: blur(4px);
        z-index: 1;
        pointer-events: none;
    }

    /* product shadow */
    .ipx-pd__main-visual::after {
        content: "";
        position: absolute;
        left: 50%;
        bottom: 31px;
        width: 255px;
        height: 32px;
        transform: translateX(-50%);
        background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.105) 42%, rgba(0, 0, 0, 0.035) 72%, rgba(0, 0, 0, 0) 100%);
        filter: blur(7px);
        z-index: 1;
        transition: transform 0.28s ease, opacity 0.28s ease;
        pointer-events: none;
    }

.ipx-pd__main-img {
    position: relative;
    z-index: 2;
    width: 330px;
    max-width: 64%;
    object-fit: contain;
    transform: translateY(0);
    transition: transform 0.28s ease;
    will-change: transform;
    filter: none !important;
    background: transparent !important;
    box-shadow: none !important;
}

.ipx-pd__main-visual:hover .ipx-pd__main-img {
    transform: translateY(-8px);
}

.ipx-pd__main-visual:hover::after {
    transform: translateX(-50%) scale(0.92);
    opacity: 0.72;
}

.ipx-pd__shadow {
    display: none !important;
}

.ipx-pd__note {
    margin-top: 18px;
    text-align: center;
    color: #6d747d;
    font-size: 13px;
}

/* optional zoom icon */
.ipx-pd__zoom-trigger {
    position: absolute;
    right: 22px;
    top: 22px;
    z-index: 4;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(31, 35, 40, 0.12);
    background: rgba(255, 255, 255, 0.78);
    color: #2f3439;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    cursor: pointer;
    backdrop-filter: blur(8px);
    transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

    .ipx-pd__zoom-trigger:hover {
        background: var(--ipx-accent);
        border-color: var(--ipx-accent);
        color: #ffffff;
        transform: translateY(-1px);
    }

/* =========================================================
   THUMBNAILS
   ========================================================= */

.ipx-pd__thumbs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    margin-top: 24px;
    padding: 4px 2px;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: thin;
}

    .ipx-pd__thumbs .pd-thumb,
    .pd-thumb {
        position: relative;
        flex: 0 0 auto;
        width: 76px;
        height: 76px;
        padding: 6px;
        border: 1px solid transparent;
        background: transparent;
        cursor: pointer;
        overflow: hidden;
        opacity: 0.84;
        transition: opacity 0.18s ease, border-color 0.18s ease, transform 0.18s ease, background-color 0.18s ease, box-shadow 0.18s ease;
    }

        .ipx-pd__thumbs .pd-thumb img,
        .pd-thumb img {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: contain;
            object-position: center;
            pointer-events: none;
        }

        .ipx-pd__thumbs .pd-thumb:hover,
        .pd-thumb:hover {
            opacity: 1;
            transform: translateY(-2px);
            border-color: #c0c7ce;
            background: rgba(255, 255, 255, 0.35);
        }

        .ipx-pd__thumbs .pd-thumb.is-active,
        .pd-thumb.is-active {
            opacity: 1;
            border-color: #2f3439;
            background: rgba(255, 255, 255, 0.45);
        }

            .ipx-pd__thumbs .pd-thumb.is-active::after,
            .pd-thumb.is-active::after {
                content: "";
                position: absolute;
                left: 9px;
                right: 9px;
                bottom: 5px;
                height: 2px;
                background: var(--ipx-accent);
            }

        .ipx-pd__thumbs .pd-thumb:focus,
        .pd-thumb:focus {
            outline: none;
        }

        .ipx-pd__thumbs .pd-thumb:focus-visible,
        .pd-thumb:focus-visible {
            border-color: #111827;
            box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px rgba(17, 24, 39, 0.28);
        }

    .ipx-pd__thumbs::-webkit-scrollbar {
        height: 6px;
    }

    .ipx-pd__thumbs::-webkit-scrollbar-track {
        background: transparent;
    }

    .ipx-pd__thumbs::-webkit-scrollbar-thumb {
        background: #cbd5e1;
    }

        .ipx-pd__thumbs::-webkit-scrollbar-thumb:hover {
            background: #94a3b8;
        }

/* =========================================================
   RIGHT PANEL CONTENT
   ========================================================= */

.ipx-pd__panel {
    max-width: 100%;
}

.ipx-pd__section-title {
    display: flex;
    align-items: center;
    gap: 11px;
    margin: 0 0 18px;
    color: #4b535c;
    font-size: 14px;
    font-weight: 750;
    letter-spacing: 0.045em;
    text-transform: uppercase;
}

    .ipx-pd__section-title::before {
        content: "";
        width: 28px;
        height: 2px;
        background: var(--ipx-accent);
    }

.ipx-pd__section-title--sm {
    margin-top: 12px;
    margin-bottom: 12px;
}

.ipx-pd__status-box,
.ipx-pd__feature,
.ipx-pd__variant-wrap,
.ipx-pd__actions {
    border-radius: 0 !important;
}

/* FEATURES */
.ipx-pd__feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px 18px;
    margin-bottom: 24px;
}

.ipx-pd__feature {
    display: flex;
    align-items: center;
    gap: 13px;
    min-height: 74px;
    padding: 0;
    background: transparent;
    border: 0;
}

.ipx-pd__feature-icon {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #30363c;
    flex: 0 0 48px;
}

    .ipx-pd__feature-icon svg {
        width: 58px;
        height: 58px;
        stroke-width: 1.65;
    }

.ipx-pd__feature-text {
    min-width: 0;
    color: #3d434b;
    font-size: 14px;
    line-height: 1.52;
}

    .ipx-pd__feature-text > div:first-child {
        color: #2b3035;
        font-weight: 620;
    }

    .ipx-pd__feature-text > div + div {
        margin-top: 2px;
        color: #606975;
        font-weight: 400;
    }

/* VARIANT */
.ipx-pd__variant-wrap {
    margin-top: 12px;
}

.ipx-pd__select {
    width: 100%;
    height: 58px;
    padding: 0 50px 0 16px;
    border: 1px solid #d3d8dd;
    background-color: #ffffff;
    color: #20252a;
    font-size: 16px;
    font-weight: 500;
    outline: none;
    appearance: none;
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
    background-image: linear-gradient(45deg, transparent 50%, #6a7178 50%), linear-gradient(135deg, #6a7178 50%, transparent 50%);
    background-position: calc(100% - 26px) calc(50% - 3px), calc(100% - 18px) calc(50% - 3px);
    background-size: 8px 8px, 8px 8px;
    background-repeat: no-repeat;
    border-radius: 0;
}

    .ipx-pd__select:focus {
        border-color: var(--ipx-accent);
        box-shadow: inset 0 0 0 1px var(--ipx-accent);
    }

/* ACTIONS */
.ipx-pd__actions {
    margin-top: 46px;
}

.ipx-pd__btn {
    width: 100%;
    min-height: 52px;
    border: 0;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 620;
    transition: background-color 0.18s ease, transform 0.18s ease;
    margin-bottom: 16px;
    padding: 14px 16px;
    position: relative;
}

    .ipx-pd__btn:hover {
        transform: translateY(-1px);
    }

.ipx-pd__btn--primary {
    background: #007f92;
    color: #ffffff !important;
}

    .ipx-pd__btn--primary:hover {
        background: #006f80;
    }

.ipx-pd__btn--secondary {
    background: #0b8da1;
    color: #ffffff !important;
}

    .ipx-pd__btn--secondary:hover {
        background: #0a7f91;
    }

.ipx-pd__btn-icon {
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

    .ipx-pd__btn-icon svg {
        width: 22px;
        height: 22px;
    }

.ipx-pd__btn-info {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    border: 1px solid rgba(255, 255, 255, 0.78);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    line-height: 1;
    border-radius: 50%;
}

.ipx-pd__link-action {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #007f92 !important;
    font-size: 16px;
    font-weight: 560;
    margin-top: 14px;
}

    .ipx-pd__link-action:hover {
        color: #005d6b !important;
    }

.ipx-pd__link-icon {
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

    .ipx-pd__link-icon svg {
        width: 24px;
        height: 24px;
    }

/* =========================================================
   TABS
   ========================================================= */

.ipx-pd__tabs-wrap {
    border-bottom: 1px solid var(--ipx-line);
    background: #ffffff;
    margin-top: 18px;
    padding: 0 34px;
}

.ipx-pd__tabs {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    max-width: 1400px;
    margin: 0 auto;
}

.ipx-pd__tab {
    position: relative;
    border: 0;
    background: transparent;
    color: #515a64;
    font-size: 15px;
    font-weight: 500;
    padding: 24px 10px 18px;
    white-space: nowrap;
    cursor: pointer;
    transition: color 0.18s ease, font-weight 0.18s ease;
    border-radius: 0;
}

    .ipx-pd__tab::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: -1px;
        height: 3px;
        background: transparent;
        transition: background-color 0.18s ease;
    }

    .ipx-pd__tab:hover {
        color: var(--ipx-accent);
    }

    .ipx-pd__tab.is-active {
        color: var(--ipx-accent);
        font-weight: 650;
    }

        .ipx-pd__tab.is-active::after {
            background: var(--ipx-accent);
        }

/* =========================================================
   CONTENT
   ========================================================= */

.ipx-pd__content {
    padding: 36px 34px 84px;
    background: #ffffff;
}

.ipx-pd__panel-content {
    display: none;
    max-width: 1400px;
    margin: 0 auto;
}

    .ipx-pd__panel-content.is-active {
        display: block;
    }

    .ipx-pd__panel-content > div,
    .ipx-pd__editor {
        color: #3d444c;
        font-size: 17px;
        line-height: 1.9;
    }

        .ipx-pd__editor h1,
        .ipx-pd__editor h2,
        .ipx-pd__editor h3,
        .ipx-pd__editor h4,
        .ipx-pd__panel-content h1,
        .ipx-pd__panel-content h2,
        .ipx-pd__panel-content h3,
        .ipx-pd__panel-content h4 {
            color: #22272d;
            font-weight: 620;
            letter-spacing: -0.02em;
        }

        .ipx-pd__editor p:first-child {
            margin-top: 0;
        }

        .ipx-pd__editor img {
            border-radius: 0;
            box-shadow: none;
        }

        /* CONTENT TABLE FROM EDITOR */
        .ipx-pd__panel-content table,
        .ipx-pd__editor table {
            width: 100%;
            border-collapse: collapse;
            margin: 18px 0 28px;
        }

            .ipx-pd__panel-content table th,
            .ipx-pd__panel-content table td,
            .ipx-pd__editor table th,
            .ipx-pd__editor table td {
                padding: 18px 20px;
                border: 1px solid var(--ipx-line);
                color: #3d444c;
                font-size: 16px;
                line-height: 1.82;
                font-weight: 400;
                text-align: left;
                vertical-align: top;
            }

            .ipx-pd__panel-content table th,
            .ipx-pd__editor table th {
                font-weight: 400;
                background: #ffffff;
            }

            .ipx-pd__panel-content table p,
            .ipx-pd__editor table p,
            table tbody tr th p {
                font-weight: 400;
                margin-top: 0;
                margin-right: 20px;
            }

/* =========================================================
   SPEC TABLE
   ========================================================= */

.ipx-spec {
    margin-top: 28px;
    border-top: 1px solid var(--ipx-line);
}

.ipx-spec__row {
    display: grid;
    grid-template-columns: 360px 1fr;
    border-bottom: 1px solid var(--ipx-line);
    min-height: 70px;
}

.ipx-spec__label,
.ipx-spec__value {
    padding: 18px;
    display: flex;
    align-items: center;
    min-width: 0;
}

.ipx-spec__label {
    color: #2f363d;
    background: #fafafa;
    font-size: 15px;
    font-weight: 620;
}

.ipx-spec__value {
    color: #535c66;
    background: #ffffff;
    font-size: 15px;
    line-height: 1.75;
    word-break: break-word;
}

    .ipx-spec__value a {
        color: var(--ipx-accent);
        font-weight: 600;
    }

.ipx-spec__label--with-icon {
    display: flex;
    align-items: center;
    gap: 10px;
}

    .ipx-spec__label--with-icon i {
        width: 18px;
        text-align: center;
        font-size: 14px;
        flex: 0 0 18px;
    }

    .ipx-spec__label--with-icon span {
        line-height: 1.55;
        word-break: break-word;
    }

/* =========================================================
   OPTIONAL INFO BOX
   ========================================================= */

.ipx-pd__status,
.ipx-pd__info-box,
.ipx-pd__alert-box {
    border: 1px solid #8ec4dd;
    background: #edf7fb;
    padding: 18px 20px;
    color: #34414d;
    border-radius: 0;
}

/* =========================================================
   LIGHTBOX / IMAGE ZOOM
   ========================================================= */

.ipx-pd__lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
}

    .ipx-pd__lightbox.is-open {
        display: block;
    }

.ipx-pd__lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(18, 23, 28, 0.78);
    backdrop-filter: blur(5px);
}

.ipx-pd__lightbox-dialog {
    position: relative;
    z-index: 2;
    width: min(1420px, calc(100vw - 44px));
    height: min(900px, calc(100vh - 44px));
    margin: 22px auto;
    display: grid;
    grid-template-rows: 62px minmax(0, 1fr) 108px;
    overflow: hidden;
    background: #f5f6f7;
    border: 1px solid rgba(255, 255, 255, 0.26);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.30);
}

.ipx-pd__lightbox-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 18px;
    background: #ffffff;
    border-bottom: 1px solid #d7dce1;
}

.ipx-pd__lightbox-counter {
    color: #3c454f;
    font-size: 13px;
    font-weight: 720;
    letter-spacing: 0.06em;
}

.ipx-pd__lightbox-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ipx-pd__lightbox-btn {
    width: 40px;
    height: 40px;
    border: 1px solid #d2d8de;
    background: #ffffff;
    color: #2b3239;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

    .ipx-pd__lightbox-btn:hover {
        background: var(--ipx-accent);
        border-color: var(--ipx-accent);
        /*color: #ffffff;*/
        transform: translateY(-1px);
    }

.ipx-pd__lightbox-btn--close:hover {
    background: #b94343;
    border-color: #b94343;
    color: #ffffff;
}

.ipx-pd__lightbox-body {
    min-height: 0;
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr) 72px;
    align-items: stretch;
    background: #eceeef;
}

.ipx-pd__lightbox-nav {
    border: 0;
    background: transparent;
    color: rgba(34, 39, 45, 0.58);
    font-size: 25px;
    cursor: pointer;
    transition: background-color 0.18s ease, color 0.18s ease;
}

    .ipx-pd__lightbox-nav:hover {
        background: rgba(255, 255, 255, 0.48);
        color: #1f2328;
    }

.ipx-pd__lightbox-stage {
    position: relative;
    min-width: 0;
    min-height: 0;
    overflow: hidden;
    cursor: grab;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.035) 1px, transparent 1px), linear-gradient(rgba(0, 0, 0, 0.035) 1px, transparent 1px), #f7f8f9;
    background-size: 32px 32px, 32px 32px, auto;
}

    .ipx-pd__lightbox-stage.is-dragging {
        cursor: grabbing;
    }

.ipx-pd__lightbox-canvas {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(1);
    transform-origin: center center;
    will-change: transform;
}

.ipx-pd__lightbox-img {
    display: block;
    max-width: min(78vw, 1040px);
    max-height: min(68vh, 700px);
    object-fit: contain;
    user-select: none;
    -webkit-user-drag: none;
    pointer-events: none;
}

.ipx-pd__lightbox-thumbs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 18px;
    background: #ffffff;
    border-top: 1px solid #d7dce1;
    overflow-x: auto;
}

.ipx-pd__lightbox-thumb {
    width: 72px;
    height: 72px;
    padding: 6px;
    border: 1px solid #d4dae0;
    background: #ffffff;
    cursor: pointer;
    flex: 0 0 auto;
    transition: border-color 0.18s ease, transform 0.18s ease, background-color 0.18s ease;
}

    .ipx-pd__lightbox-thumb:hover,
    .ipx-pd__lightbox-thumb.is-active {
        border-color: var(--ipx-accent);
        background: #f7fbfc;
        transform: translateY(-2px);
    }

    .ipx-pd__lightbox-thumb img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

body.ipx-lightbox-open {
    overflow: hidden;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1400px) {
    .ipx-pd__hero-inner {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    }

    .ipx-pd__title {
        font-size: 50px;
    }

    .ipx-spec__row {
        grid-template-columns: 320px 1fr;
    }
}

@media (max-width: 1199.98px) {
    .ipx-pd__hero-inner {
        grid-template-columns: 1fr;
    }

    .ipx-pd__right {
        border-left: 0;
        border-top: 1px solid #d3d3d3;
        padding: 42px 44px 42px;
    }

    .ipx-pd__feature-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 991.98px) {
    .ipx-pd__left,
    .ipx-pd__right {
        padding: 32px 22px;
    }

    .ipx-pd__title {
        font-size: 36px;
    }

    .ipx-pd__main-img {
        max-width: 74%;
    }

    .ipx-pd__feature-grid {
        grid-template-columns: 1fr;
    }

    .ipx-spec__row {
        grid-template-columns: 1fr;
    }

    .ipx-spec__label {
        padding-bottom: 6px;
    }

    .ipx-spec__value {
        padding-top: 0;
    }

    .ipx-pd__content,
    .ipx-pd__tabs-wrap {
        padding-left: 18px;
        padding-right: 18px;
    }

    .ipx-pd__lightbox-dialog {
        width: calc(100vw - 16px);
        height: calc(100vh - 16px);
        margin: 8px auto;
        grid-template-rows: 56px minmax(0, 1fr) 96px;
    }

    .ipx-pd__lightbox-body {
        grid-template-columns: 54px minmax(0, 1fr) 54px;
    }

    .ipx-pd__lightbox-thumb {
        width: 60px;
        height: 60px;
    }

    .ipx-pd__zoom-trigger {
        right: 12px;
        top: 12px;
        width: 38px;
        height: 38px;
    }
}

@media (max-width: 768px) {
    .ipx-pd__thumbs {
        justify-content: flex-start;
        gap: 10px;
        margin-top: 18px;
        padding-bottom: 8px;
    }

        .ipx-pd__thumbs .pd-thumb,
        .pd-thumb {
            width: 66px;
            height: 66px;
            padding: 5px;
        }
}

@media (max-width: 640px) {
    .ipx-pd__title {
        font-size: 28px;
    }

    .ipx-pd__series-badge {
        min-width: 96px;
        height: 38px;
        font-size: 16px;
    }

    .ipx-pd__main-visual {
        min-height: 300px;
    }

    .ipx-pd__main-img {
        max-width: 82%;
    }

    .ipx-pd__select {
        height: 52px;
        font-size: 15px;
    }

    .ipx-pd__btn {
        font-size: 14px;
    }

    .ipx-pd__tab {
        font-size: 13px;
        padding-top: 20px;
    }

    .ipx-pd__editor,
    .ipx-spec__label,
    .ipx-spec__value {
        font-size: 14px;
    }
}

.ipx-pd__right {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 68px 54px 54px;
    background: linear-gradient(180deg, #eeeeee 0%, #e4e6e8 100%);
    border-left: 1px solid #d1d5da;
}

.ipx-pd__panel {
    width: 80%;
    max-width: 620px;
    margin: 0 auto;
}

/* section title */
.ipx-pd__section-title {
    margin: 0 0 26px;
    color: #424951;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.055em;
    text-transform: none;
}

    .ipx-pd__section-title::before {
        width: 30px;
        height: 2px;
        background: var(--ipx-accent);
    }

.ipx-pd__section-title--sm {
    margin-top: 38px;
    margin-bottom: 18px;
}

/* =========================================================
   FEATURES - 넓은 50% 안에서 모여 보이게
   ========================================================= */

.ipx-pd__feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 36px;
    row-gap: 34px;
    margin-bottom: 34px;
}

.ipx-pd__feature {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 16px;
    align-items: center;
    min-height: 68px;
    padding: 0;
    background: transparent;
    border: 0;
}

.ipx-pd__feature-icon {
    width: 58px;
    height: 58px;
    flex: 0 0 58px;
    color: #383e45;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

    .ipx-pd__feature-icon svg {
        width: 72px;
        height: 72px;
        stroke-width: 1.65;
    }

.ipx-pd__feature-text {
    min-width: 0;
    color: #3d434b;
    font-size: 15px;
    line-height: 1.48;
}

    .ipx-pd__feature-text > div:first-child {
        color: #252a30;
        font-size: 15px;
        font-weight: 650;
    }

    .ipx-pd__feature-text > div + div {
        margin-top: 4px;
        color: #5f6872;
        font-size: 15px;
        font-weight: 400;
    }

/* =========================================================
   VARIANTS - 중앙 컨텐츠 폭 유지
   ========================================================= */

.ipx-pd__variant-wrap {
    width: 100%;
    margin-top: 4px;
    margin-bottom: 0;
}

.ipx-pd__select {
    width: 100%;
    height: 58px;
    padding: 0 52px 0 18px;
    border: 1px solid #d2d7dc;
    background-color: #ffffff;
    color: #20252a;
    font-size: 16px;
    font-weight: 500;
    box-shadow: none;
}

    .ipx-pd__select:focus {
        border-color: var(--ipx-accent);
        box-shadow: inset 0 0 0 1px var(--ipx-accent);
    }

/* =========================================================
   ACTIONS - 너무 아래로 떨어지지 않게 정리
   ========================================================= */

.ipx-pd__actions {
    margin-top: 34px;
}

.ipx-pd__link-action {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: #007f92 !important;
    font-size: 17px;
    font-weight: 560;
    margin-top: 0;
}

    .ipx-pd__link-action:hover {
        color: #005d6b !important;
    }

.ipx-pd__link-icon {
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

    .ipx-pd__link-icon svg {
        width: 28px;
        height: 28px;
        stroke-width: 1.8;
    }

/* 만약 버튼형 action을 추가로 쓰는 경우 */
.ipx-pd__btn {
    width: 100%;
    min-height: 56px;
    margin-bottom: 14px;
    font-size: 16px;
    font-weight: 620;
}

/* =========================================================
   RIGHT PANEL BALANCE
   오른쪽 내용 전체가 위에 몰리지 않고 안정적으로 보이게
   ========================================================= */

.ipx-pd__right .ipx-pd__panel > *:first-child {
    margin-top: 0;
}

.ipx-pd__right .ipx-pd__panel > *:last-child {
    margin-bottom: 0;
}

/* =========================================================
   RESPONSIVE OVERRIDES
   ========================================================= */

@media (max-width: 1400px) {
    .ipx-pd__right {
        padding: 62px 42px 50px;
    }

    .ipx-pd__panel {
        max-width: 580px;
    }

    .ipx-pd__feature-grid {
        column-gap: 28px;
        row-gap: 30px;
    }

    .ipx-pd__feature {
        grid-template-columns: 54px minmax(0, 1fr);
        gap: 14px;
    }

    .ipx-pd__feature-icon {
        width: 54px;
        height: 54px;
        flex-basis: 54px;
    }

        .ipx-pd__feature-icon svg {
            width: 39px;
            height: 39px;
        }
}

@media (max-width: 1199.98px) {
    .ipx-pd__right {
        border-left: 0;
        border-top: 1px solid #d3d3d3;
        padding: 44px 34px 44px;
    }

    .ipx-pd__panel {
        max-width: 720px;
    }

    .ipx-pd__feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 38px;
    }
}

@media (max-width: 767.98px) {
    .ipx-pd__right {
        padding: 34px 22px;
    }

    .ipx-pd__panel {
        max-width: 100%;
    }

    .ipx-pd__feature-grid {
        grid-template-columns: 1fr;
        row-gap: 22px;
        margin-bottom: 30px;
    }

    .ipx-pd__feature {
        grid-template-columns: 54px minmax(0, 1fr);
    }

    .ipx-pd__section-title--sm {
        margin-top: 30px;
    }
}

/* =========================================================
   MOBILE HORIZONTAL OVERFLOW FIX
   ========================================================= */
html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

.ipx-pd {
    width: 100%;
    max-width: 1600px;
    overflow-x: hidden;
}

.ipx-pd__hero,
.ipx-pd__hero-inner,
.ipx-pd__left,
.ipx-pd__right,
.ipx-pd__content,
.ipx-pd__tabs-wrap,
.ipx-pd__panel,
.ipx-pd__main-visual {
    max-width: 100%;
    min-width: 0;
}

/* title 긴 제품명 overflow 방지 */
.ipx-pd__title {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: keep-all;
}

/* 썸네일이 body 전체를 밀지 않게 */
.ipx-pd__thumbs {
    max-width: 100%;
    min-width: 0;
    overscroll-behavior-x: contain;
}

/* tab도 body를 밀지 않게 */
.ipx-pd__tabs {
    max-width: 100%;
    min-width: 0;
    /*overflow-x: auto;*/
    overscroll-behavior-x: contain;
}

/* lightbox도 모바일에서 viewport 밖으로 안 나가게 */
.ipx-pd__lightbox-dialog {
    max-width: calc(100vw - 16px);
}

/* =========================================================
   MOBILE ONLY
   ========================================================= */
@media (max-width: 768px) {
    .ipx-pd {
        margin-top: 0;
        border-left: 0;
        border-right: 0;
    }

    .ipx-pd__hero {
        border-left: 0;
        border-right: 0;
    }

    .ipx-pd__hero-inner {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        width: 100%;
        min-height: auto;
    }

    .ipx-pd__left {
        width: 100%;
        min-width: 0;
        padding: 54px 18px 38px;
        overflow: hidden;
    }

    .ipx-pd__right {
        width: 100%;
        min-width: 0;
        padding: 38px 22px 42px;
        overflow: hidden;
    }

    .ipx-pd__panel {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    /* 기존 380px pseudo shadow가 모바일에서 화면을 밀 수 있어서 줄임 */
    .ipx-pd__main-visual {
        width: 100%;
        min-width: 0;
        min-height: 300px;
        margin-top: 34px;
        overflow: hidden;
    }

        .ipx-pd__main-visual::before {
            width: min(280px, 82vw);
            height: 64px;
        }

        .ipx-pd__main-visual::after {
            width: min(210px, 70vw);
            height: 28px;
        }

    .ipx-pd__main-img {
        width: auto;
        max-width: 84%;
        max-height: 300px;
    }

    /* 썸네일은 내부 스크롤만 되고 페이지 전체는 안 밀리게 */
    .ipx-pd__thumbs {
        justify-content: flex-start;
        flex-wrap: nowrap;
        width: 100%;
        max-width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
        padding-left: 0;
        padding-right: 0;
    }

        .ipx-pd__thumbs .pd-thumb,
        .pd-thumb {
            flex: 0 0 66px;
            width: 66px;
            height: 66px;
            min-width: 66px;
        }

    /* 탭도 내부 스크롤만 */
    .ipx-pd__tabs-wrap {
        width: 100%;
        padding-left: 0;
        padding-right: 0;
        overflow: hidden;
    }

    .ipx-pd__tabs {
        justify-content: flex-start;
        gap: 0;
        width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
        padding-left: 14px;
        padding-right: 14px;
    }

    .ipx-pd__tab {
        flex: 0 0 auto;
    }

    .ipx-pd__content {
        width: 100%;
        padding-left: 18px;
        padding-right: 18px;
        overflow: hidden;
    }

    /* 오른쪽 Features 모바일 안정화 */
    .ipx-pd__feature-grid {
        grid-template-columns: minmax(0, 1fr);
        width: 100%;
        max-width: 100%;
    }

    .ipx-pd__feature {
        grid-template-columns: 58px minmax(0, 1fr);
        width: 100%;
        min-width: 0;
    }

    .ipx-pd__feature-text {
        min-width: 0;
        overflow-wrap: anywhere;
    }

    .ipx-pd__select {
        width: 100%;
        max-width: 100%;
    }

    .ipx-spec {
        max-width: 100%;
        overflow-x: hidden;
    }

    .ipx-spec__row {
        grid-template-columns: minmax(0, 1fr);
    }

    .ipx-spec__label,
    .ipx-spec__value {
        min-width: 0;
        overflow-wrap: anywhere;
    }
}

@media (max-width: 768px) {
    .ipx-pd__panel-content table,
    .ipx-pd__editor table {
        display: block;
        width: 100%;
        max-width: 100%;
        border-collapse: separate;
        border-spacing: 0;
        overflow: visible;
    }

        .ipx-pd__panel-content table colgroup,
        .ipx-pd__editor table colgroup {
            display: none;
        }

        .ipx-pd__panel-content table tbody,
        .ipx-pd__panel-content table tr,
        .ipx-pd__panel-content table th,
        .ipx-pd__panel-content table td,
        .ipx-pd__editor table tbody,
        .ipx-pd__editor table tr,
        .ipx-pd__editor table th,
        .ipx-pd__editor table td {
            display: block;
            width: 100% !important;
            max-width: 100%;
        }

        .ipx-pd__panel-content table tr,
        .ipx-pd__editor table tr {
            border: 0;
        }

        .ipx-pd__panel-content table th,
        .ipx-pd__panel-content table td,
        .ipx-pd__editor table th,
        .ipx-pd__editor table td {
            padding: 22px 20px;
            border: 1px solid var(--ipx-line);
            border-bottom: 0;
            font-size: 16px;
            line-height: 1.75;
            font-weight: 400;
            text-align: left;
            vertical-align: top;
            word-break: normal;
            overflow-wrap: break-word;
        }

            .ipx-pd__panel-content table th:last-child,
            .ipx-pd__panel-content table td:last-child,
            .ipx-pd__editor table th:last-child,
            .ipx-pd__editor table td:last-child {
                border-bottom: 1px solid var(--ipx-line);
            }

        .ipx-pd__panel-content table p,
        .ipx-pd__editor table p,
        table tbody tr th p {
            margin: 0 0 14px;
            margin-right: 0;
            font-weight: 400;
            line-height: 1.75;
            word-break: normal;
            overflow-wrap: break-word;
        }

            .ipx-pd__panel-content table p:last-child,
            .ipx-pd__editor table p:last-child,
            table tbody tr th p:last-child {
                margin-bottom: 0;
            }
}


.ipx-pd__feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 46px;
    row-gap: 36px;
    margin-bottom: 36px;
}

.ipx-pd__feature {
    position: relative;
    display: grid;
    grid-template-columns: 74px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    min-height: 82px;
    padding: 8px 0;
    background: transparent;
    border: 0;
    overflow: hidden;
}

    /* 왼쪽 작은 스캐너 라인 */
    .ipx-pd__feature::before {
        content: "";
        position: absolute;
        left: 0;
        top: 18px;
        bottom: 18px;
        width: 2px;
        background: linear-gradient( 180deg, transparent 0%, rgba(0, 135, 155, 0.15) 20%, rgba(0, 135, 155, 0.95) 50%, rgba(0, 135, 155, 0.15) 80%, transparent 100% );
        opacity: 0.75;
        animation: ipxFeatureSidePulse 3.8s ease-in-out infinite;
    }

/* 아이콘 */
.ipx-pd__feature-icon {
    position: relative;
    width: 74px;
    height: 74px;
    flex: 0 0 74px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #343b43;
}

    /* 아이콘 뒤 은은한 빛 */
    .ipx-pd__feature-icon::before {
        content: "";
        position: absolute;
        inset: 11px;
        background: radial-gradient( circle, rgba(0, 135, 155, 0.18) 0%, rgba(0, 135, 155, 0.07) 42%, transparent 72% );
        opacity: 0;
        transform: scale(0.86);
        animation: ipxFeatureGlow 4.4s ease-in-out infinite;
    }

    .ipx-pd__feature-icon svg {
        position: relative;
        z-index: 1;
        width: 54px;
        height: 54px;
        stroke-width: 1.5;
        color: #343b43;
        animation: ipxFeatureIconColor 4.4s ease-in-out infinite;
    }

/* 텍스트 */
.ipx-pd__feature-text {
    min-width: 0;
    color: #3d434b;
    font-size: 15px;
    line-height: 1.48;
}

    .ipx-pd__feature-text > div:first-child {
        position: relative;
        display: inline-block;
        color: #1f252b;
        font-size: 16px;
        font-weight: 720;
        letter-spacing: -0.01em;
        overflow: hidden;
        animation: ipxFeatureTitleColor 4.4s ease-in-out infinite;
    }

        /* 글자 위로 지나가는 KITT scanner 빛 */
        .ipx-pd__feature-text > div:first-child::after {
            content: "";
            position: absolute;
            top: 0;
            bottom: 0;
            left: -80%;
            width: 60%;
            background: linear-gradient( 90deg, transparent 0%, rgba(0, 135, 155, 0.08) 20%, rgba(0, 135, 155, 0.55) 50%, rgba(0, 135, 155, 0.08) 80%, transparent 100% );
            transform: skewX(-18deg);
            animation: ipxFeatureTextSweep 4.4s ease-in-out infinite;
            pointer-events: none;
        }

    .ipx-pd__feature-text > div + div {
        margin-top: 6px;
        color: #616b75;
        font-size: 15px;
        font-weight: 400;
        animation: ipxFeatureSubColor 4.4s ease-in-out infinite;
    }

/* 각 feature가 동시에 움직이지 않게 delay */
.ipx-pd__feature:nth-child(1)::before,
.ipx-pd__feature:nth-child(1) .ipx-pd__feature-icon::before,
.ipx-pd__feature:nth-child(1) .ipx-pd__feature-icon svg,
.ipx-pd__feature:nth-child(1) .ipx-pd__feature-text > div:first-child,
.ipx-pd__feature:nth-child(1) .ipx-pd__feature-text > div:first-child::after,
.ipx-pd__feature:nth-child(1) .ipx-pd__feature-text > div + div {
    animation-delay: 0s;
}

.ipx-pd__feature:nth-child(2)::before,
.ipx-pd__feature:nth-child(2) .ipx-pd__feature-icon::before,
.ipx-pd__feature:nth-child(2) .ipx-pd__feature-icon svg,
.ipx-pd__feature:nth-child(2) .ipx-pd__feature-text > div:first-child,
.ipx-pd__feature:nth-child(2) .ipx-pd__feature-text > div:first-child::after,
.ipx-pd__feature:nth-child(2) .ipx-pd__feature-text > div + div {
    animation-delay: 0.75s;
}

.ipx-pd__feature:nth-child(3)::before,
.ipx-pd__feature:nth-child(3) .ipx-pd__feature-icon::before,
.ipx-pd__feature:nth-child(3) .ipx-pd__feature-icon svg,
.ipx-pd__feature:nth-child(3) .ipx-pd__feature-text > div:first-child,
.ipx-pd__feature:nth-child(3) .ipx-pd__feature-text > div:first-child::after,
.ipx-pd__feature:nth-child(3) .ipx-pd__feature-text > div + div {
    animation-delay: 1.5s;
}

.ipx-pd__feature:nth-child(4)::before,
.ipx-pd__feature:nth-child(4) .ipx-pd__feature-icon::before,
.ipx-pd__feature:nth-child(4) .ipx-pd__feature-icon svg,
.ipx-pd__feature:nth-child(4) .ipx-pd__feature-text > div:first-child,
.ipx-pd__feature:nth-child(4) .ipx-pd__feature-text > div:first-child::after,
.ipx-pd__feature:nth-child(4) .ipx-pd__feature-text > div + div {
    animation-delay: 2.25s;
}

/* 왼쪽 스캐너 라인 */
@keyframes ipxFeatureSidePulse {
    0%, 100% {
        opacity: 0.18;
        transform: scaleY(0.55);
    }

    45%, 55% {
        opacity: 1;
        transform: scaleY(1);
    }
}

/* 아이콘 뒤 glow */
@keyframes ipxFeatureGlow {
    0%, 100% {
        opacity: 0;
        transform: scale(0.82);
    }

    38%, 58% {
        opacity: 1;
        transform: scale(1.08);
    }
}

/* 아이콘 색상 변화 */
@keyframes ipxFeatureIconColor {
    0%, 100% {
        color: #343b43;
        transform: scale(1);
        filter: none;
    }

    42%, 55% {
        color: #00879b;
        transform: scale(1.045);
        filter: drop-shadow(0 0 8px rgba(0, 135, 155, 0.35));
    }
}

/* 메인 글자 색상 변화 */
@keyframes ipxFeatureTitleColor {
    0%, 100% {
        color: #1f252b;
        text-shadow: none;
    }

    42%, 55% {
        color: #006c7c;
        text-shadow: 0 0 10px rgba(0, 135, 155, 0.18);
    }
}

/* 서브 글자 색상 변화 */
@keyframes ipxFeatureSubColor {
    0%, 100% {
        color: #616b75;
    }

    42%, 55% {
        color: #42515b;
    }
}

/* KITT scanner sweep */
@keyframes ipxFeatureTextSweep {
    0%, 18% {
        left: -85%;
        opacity: 0;
    }

    28% {
        opacity: 1;
    }

    48% {
        left: 120%;
        opacity: 1;
    }

    60%, 100% {
        left: 120%;
        opacity: 0;
    }
}

/* 모바일 */
@media (max-width: 767.98px) {
    .ipx-pd__feature-grid {
        grid-template-columns: 1fr;
        row-gap: 22px;
    }

    .ipx-pd__feature {
        grid-template-columns: 66px minmax(0, 1fr);
        min-height: 76px;
        gap: 16px;
    }

    .ipx-pd__feature-icon {
        width: 66px;
        height: 66px;
        flex-basis: 66px;
    }

        .ipx-pd__feature-icon svg {
            width: 48px;
            height: 48px;
        }

    .ipx-pd__feature-text > div:first-child {
        font-size: 15px;
    }

    .ipx-pd__feature-text > div + div {
        font-size: 14px;
    }
}

/* 모션 줄이기 설정 */
@media (prefers-reduced-motion: reduce) {
    .ipx-pd__feature::before,
    .ipx-pd__feature-icon::before,
    .ipx-pd__feature-icon svg,
    .ipx-pd__feature-text > div:first-child,
    .ipx-pd__feature-text > div:first-child::after,
    .ipx-pd__feature-text > div + div {
        animation: none !important;
    }
}

/* =========================================================
   Product Detail Breadcrumb - Minimal Industrial Style
   ========================================================= */

.cf-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 28px;
    padding: 0 0 12px;
    border-bottom: 1px solid rgba(20, 35, 45, 0.10);
    color: #7b858c;
    font-size: 12px;
    line-height: 1;
    font-weight: 600;
    letter-spacing: 0.02em;
    width:300px;
}

    .cf-breadcrumb a {
        color: #007f91;
        text-decoration: none;
        transition: color 0.18s ease;
    }

        .cf-breadcrumb a:hover {
            color: #003c46;
        }

    .cf-breadcrumb span {
        color: #9aa3a8;
    }

        .cf-breadcrumb span:last-child {
            color: #3c454b;
            font-weight: 700;
        }

@media (max-width: 575.98px) {
    .cf-breadcrumb {
        margin-bottom: 20px;
        padding-bottom: 10px;
        font-size: 11px;
        gap: 6px;
    }
}

/* =========================================================
   IPX Robot Guide - Question CTA
   Put this at the VERY BOTTOM of product_detail.css
   ========================================================= */

.ipx-pd__actions--robot {
    position: relative;
    min-height: 190px;
    margin-top: 38px !important;
    padding: 0 170px 0 0;
}

.ipx-pd__link-action--question {
    position: relative;
    z-index: 3;
    display: inline-flex !important;
    align-items: center;
    gap: 14px;
    min-height: 44px;
    padding: 0;
    color: #007f92 !important;
    font-size: 17px;
    font-weight: 650;
    letter-spacing: -0.01em;
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
}

    .ipx-pd__link-action--question::after {
        content: "";
        position: absolute;
        left: 42px;
        right: -18px;
        bottom: -8px;
        height: 1px;
        background: linear-gradient( 90deg, rgba(0, 135, 155, 0.45) 0%, rgba(0, 135, 155, 0.12) 62%, rgba(0, 135, 155, 0.00) 100% );
    }

    .ipx-pd__link-action--question:hover {
        color: #005d6b !important;
        transform: translateX(2px);
    }

    .ipx-pd__link-action--question .ipx-pd__link-icon {
        position: relative;
        width: 34px;
        height: 34px;
        flex: 0 0 34px;
        color: #00879b;
    }

        .ipx-pd__link-action--question .ipx-pd__link-icon::before {
            content: "";
            position: absolute;
            inset: -4px;
            border: 1px solid rgba(0, 135, 155, 0.18);
            background: rgba(0, 135, 155, 0.045);
        }

        .ipx-pd__link-action--question .ipx-pd__link-icon svg {
            position: relative;
            z-index: 1;
            width: 25px;
            height: 25px;
            stroke-width: 1.85;
        }

/* Robot position */
.ipx-pd__robot-guide {
    position: absolute;
    right: -8px;
    bottom: -12px;
    z-index: 2;
    width: 155px;
    height: 175px;
    pointer-events: none;
}

    .ipx-pd__robot-guide::before {
        content: "";
        position: absolute;
        left: 26px;
        right: 18px;
        bottom: 4px;
        height: 20px;
        background: radial-gradient( ellipse at center, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.08) 44%, rgba(0, 0, 0, 0.00) 74% );
        filter: blur(5px);
        opacity: 0.65;
    }

.ipx-pd__robot-img {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform-origin: 70% 100%;
    animation: ipxRobotFloat 3.8s ease-in-out infinite;
    filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.12)) drop-shadow(0 0 10px rgba(0, 135, 155, 0.10));
}

/* Small cyan pointer line from robot toward question link */
.ipx-pd__robot-guide::after {
    content: "";
    position: absolute;
    left: -58px;
    top: 62px;
    width: 72px;
    height: 2px;
    background: linear-gradient( 90deg, rgba(0, 135, 155, 0.00) 0%, rgba(0, 135, 155, 0.75) 100% );
    transform: rotate(-18deg);
    transform-origin: right center;
    opacity: 0.55;
    animation: ipxRobotPointerPulse 2.4s ease-in-out infinite;
}

/* 오른쪽 패널 안에서 너무 튀지 않게 */
.ipx-pd__right .ipx-pd__actions--robot {
    max-width: 100%;
}

/* Tablet */
@media (max-width: 1199.98px) {
    .ipx-pd__actions--robot {
        min-height: 170px;
        padding-right: 145px;
    }

    .ipx-pd__robot-guide {
        width: 135px;
        height: 155px;
        right: 0;
        bottom: -8px;
    }

        .ipx-pd__robot-guide::after {
            left: -48px;
            top: 56px;
            width: 60px;
        }
}

/* Mobile */
@media (max-width: 767.98px) {
    .ipx-pd__actions--robot {
        min-height: 132px;
        padding-right: 106px;
        margin-top: 30px !important;
    }

    .ipx-pd__link-action--question {
        max-width: calc(100% - 4px);
        font-size: 15px;
        line-height: 1.35;
        align-items: flex-start;
    }

        .ipx-pd__link-action--question .ipx-pd__link-icon {
            width: 30px;
            height: 30px;
            flex-basis: 30px;
        }

            .ipx-pd__link-action--question .ipx-pd__link-icon svg {
                width: 22px;
                height: 22px;
            }

    .ipx-pd__robot-guide {
        width: 100px;
        height: 118px;
        right: 0;
        bottom: -4px;
    }

        .ipx-pd__robot-guide::after {
            left: -34px;
            top: 44px;
            width: 42px;
            opacity: 0.45;
        }
}

/* Very small mobile */
@media (max-width: 420px) {
    .ipx-pd__actions--robot {
        min-height: 118px;
        padding-right: 88px;
    }

    .ipx-pd__link-action--question {
        font-size: 14px;
        gap: 10px;
    }

    .ipx-pd__robot-guide {
        width: 84px;
        height: 102px;
    }

        .ipx-pd__robot-guide::after {
            display: none;
        }
}

.ipx-pd__robot-guide {
    position: absolute;
    right: -8px;
    bottom: -12px;
    z-index: 2;
    width: 155px;
    height: 175px;
    pointer-events: none;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
}

    .ipx-pd__robot-guide::before,
    .ipx-pd__robot-guide::after {
        display: none !important;
    }

.ipx-pd__robot-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    mix-blend-mode: normal;
    filter: none !important;
}

.separation {
    margin:25px;
}

/* Inquire About Product */
.ipx-product-inquiry-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
}

    .ipx-product-inquiry-modal.is-open {
        display: block;
    }

.ipx-product-inquiry-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.62);
    backdrop-filter: blur(3px);
}

.ipx-product-inquiry-panel {
    position: absolute;
    left: 50%;
    top: 50%;
    width: min(92vw, 860px);
    max-height: 92vh;
    overflow-y: auto;
    transform: translate(-50%, -50%);
    background: #fff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 28px 80px rgba(15, 23, 42, 0.28);
}

.ipx-product-inquiry-head {
    position: sticky;
    top: 0;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    padding: 28px 30px 22px;
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
}

.ipx-product-inquiry-title {
    margin: 0 0 8px;
    font-size: 28px;
    line-height: 1.15;
    font-weight: 800;
    color: #111827;
    letter-spacing: -0.03em;
}

.ipx-product-inquiry-desc {
    margin: 0;
    font-size: 15px;
    line-height: 1.55;
    color: #6b7280;
}

.ipx-product-inquiry-close {
    flex: 0 0 auto;
    width: 38px;
    height: 38px;
    border: 1px solid #d1d5db;
    background: #fff;
    color: #111827;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}

    .ipx-product-inquiry-close:hover {
        background: #111827;
        color: #fff;
        border-color: #111827;
    }

.ipx-product-inquiry-body {
    padding: 26px 30px 30px;
    background: #f8fafc;
}

.ipx-product-inquiry-alert {
    display: none;
    margin-bottom: 18px;
    padding: 14px 16px;
    border: 1px solid transparent;
    font-size: 14px;
    font-weight: 700;
}

    .ipx-product-inquiry-alert.success {
        display: block;
        border-color: #b7ebc6;
        background: #effcf3;
        color: #166534;
    }

    .ipx-product-inquiry-alert.error {
        display: block;
        border-color: #fecaca;
        background: #fff1f2;
        color: #b91c1c;
    }

.ipx-product-inquiry-form {
    background: #fff;
    border: 1px solid #e5e7eb;
    padding: 24px;
}

.ipx-product-inquiry-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.ipx-product-inquiry-field label {
    display: block;
    margin-bottom: 8px;
    color: #111827;
    font-size: 13px;
    font-weight: 800;
}

.ipx-product-inquiry-field .form-control {
    width: 100%;
    height: 46px;
    border: 1px solid #d1d5db;
    padding: 0 13px;
    font-size: 14px;
    color: #111827;
    box-sizing: border-box;
    outline: none;
    background: #fff;
}

    .ipx-product-inquiry-field .form-control:focus {
        border-color: #111827;
        box-shadow: 0 0 0 3px rgba(17, 24, 39, 0.08);
    }

.ipx-product-inquiry-field textarea.form-control {
    height: auto;
    min-height: 190px;
    padding: 13px;
    resize: vertical;
    line-height: 1.6;
}

.ipx-product-inquiry-col-2 {
    grid-column: span 2;
}

.ipx-product-inquiry-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 20px;
}

.ipx-product-inquiry-btn {
    height: 46px;
    padding: 0 22px;
    border: 1px solid #111827;
    background: #111827;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
}

    .ipx-product-inquiry-btn:hover {
        background: #000;
        border-color: #000;
    }

    .ipx-product-inquiry-btn:disabled {
        opacity: .65;
        cursor: not-allowed;
    }

.ipx-product-inquiry-btn-cancel {
    background: #fff;
    color: #111827;
    border-color: #d1d5db;
}

    .ipx-product-inquiry-btn-cancel:hover {
        background: #f3f4f6;
        color: #111827;
        border-color: #9ca3af;
    }

body.ipx-product-inquiry-lock {
    overflow: hidden;
}

@media (max-width: 768px) {
    .ipx-product-inquiry-panel {
        width: calc(100vw - 24px);
        max-height: calc(100vh - 24px);
    }

    .ipx-product-inquiry-head {
        padding: 22px 20px 18px;
    }

    .ipx-product-inquiry-body {
        padding: 20px;
    }

    .ipx-product-inquiry-form {
        padding: 18px;
    }

    .ipx-product-inquiry-grid {
        grid-template-columns: 1fr;
    }

    .ipx-product-inquiry-col-2 {
        grid-column: span 1;
    }

    .ipx-product-inquiry-title {
        font-size: 24px;
    }

    .ipx-product-inquiry-actions {
        flex-direction: column-reverse;
    }

    .ipx-product-inquiry-btn {
        width: 100%;
    }
}

#ipxInquiryCategory {
    background-image: linear-gradient(45deg, transparent 50%, #374151 50%), linear-gradient(135deg, #374151 50%, transparent 50%), linear-gradient(to bottom, #e5e7eb, #e5e7eb);
    background-position: calc(100% - 20px) 18px, calc(100% - 14px) 18px, calc(100% - 36px) 10px;
    background-size: 6px 6px, 6px 6px, 1px 24px;
    background-repeat: no-repeat;
}