.probe-store-container {
        display: grid;
        grid-template-columns: 280px minmax(0, 1fr);
        gap: 28px;
        max-width: 1440px;
        margin: 0 auto;
        padding: 44px 0 56px;
        color: #111827;
        font-family: Pretendard, sans-serif;
    }

    .probe-toolbar {
        grid-column: 1 / -1;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 24px;
        margin-bottom: 4px;
        flex-wrap: nowrap;
    }

    .search-box {
        position: relative;
        flex: 1 1 auto;
        max-width: 720px;
    }

    .search-box input {
        width: 100%;
        height: 52px;
        padding: 0 52px 0 18px;
        border: 1px solid #d7dce3;
        border-radius: 3px;
        color: #111827;
        font-size: 15px;
        line-height: 1.4;
        transition: border-color 0.2s ease, box-shadow 0.2s ease;
    }

    .search-box input:focus {
        border-color: #111827;
        box-shadow: 0 0 0 3px rgba(17, 24, 39, 0.08);
        outline: none;
    }

    .search-box input::placeholder {
        color: #737b88;
    }

    .search-box button {
        position: absolute;
        right: 14px;
        top: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 28px;
        height: 28px;
        padding: 0;
        transform: translateY(-50%);
        background: none;
        border: none;
        cursor: pointer;
    }

    .search-box button img {
        width: 18px;
        height: 18px;
        opacity: 0.78;
    }

    .probe-actions {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 12px;
        flex: 0 0 auto;
    }

    .btn-probe-guide,
    .btn-my-cart {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
        min-width: 148px;
        height: 44px;
        padding: 0 20px;
        border-radius: 3px;
        font-size: 14px;
        line-height: 1;
        white-space: nowrap;
        cursor: pointer;
        transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, opacity 0.2s ease;
    }

    .btn-probe-guide {
        gap: 8px;
        background: #050505;
        border: 1px solid #050505;
        font-weight: 600;
        color: #fff;
        text-decoration: none;
    }

    .btn-probe-guide:before {
        content: '';
        display: inline-block;
        width: 14px;
        height: 14px;
        border: 1.5px solid currentColor;
        border-radius: 2px;
        box-sizing: border-box;
    }

    .btn-probe-guide:hover {
        color: #fff;
        opacity: 0.85;
    }

    .btn-my-cart {
        gap: 8px;
        background: #f2f3f5;
        border: 1px solid #d7dce3;
        font-weight: 600;
        color: #111827;
        position: relative;
    }

    .btn-my-cart:hover {
        background: #fff;
        border-color: #111827;
        color: #111827;
    }

    .cart-icon,
    .filter-icon {
        width: 18px;
        height: 18px;
        fill: none;
        stroke: currentColor;
        stroke-width: 1.8;
        stroke-linecap: round;
        stroke-linejoin: round;
        flex: 0 0 auto;
    }

    .cart-badge {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 18px;
        height: 18px;
        padding: 0 5px;
        border-radius: 999px;
        background: #00AEE6;
        color: #fff;
        font-size: 11px;
        line-height: 1;
    }

    .mobile-filter-bar {
        display: none;
        grid-column: 1 / -1;
        margin-bottom: 20px;
    }

    .filter-backdrop {
        display: none;
    }

    .probe-sidebar {
        align-self: start;
        padding: 22px 20px 0;
        border: 1px solid #e4e7ec;
        border-radius: 4px;
        background: #fff;
        box-shadow: 0 8px 18px rgba(17, 24, 39, 0.06);
    }

    .sidebar-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 14px;
        padding-bottom: 14px;
        border-bottom: 2px solid #111827;
    }

    .sidebar-header h3 {
        margin: 0;
        font-size: 17px;
        font-weight: 600;
        letter-spacing: 0;
    }

    .btn-reset-text {
        background: none;
        border: none;
        color: #69707d;
        text-decoration: underline;
        text-underline-offset: 2px;
        cursor: pointer;
        font-size: 12px;
    }

    .btn-close-sidebar,
    .sidebar-footer-mobile {
        display: none;
    }

    .filter-group {
        margin-bottom: 0;
        padding: 16px 0;
        border-bottom: 1px solid #edf0f3;
    }

    .filter-title {
        display: flex;
        justify-content: space-between;
        margin-bottom: 0;
        color: #242b36;
        font-size: 14px;
        font-weight: 700;
        cursor: pointer;
    }

    .filter-title:after {
        content: '+';
        color: #69707d;
        font-size: 13px;
        font-weight: normal;
    }

    .filter-group.active .filter-title {
        margin-bottom: 12px;
    }

    .filter-group.active .filter-title:after {
        content: '-';
    }

    .filter-options {
        display: none;
        max-height: 220px;
        overflow-y: auto;
        padding-right: 2px;
    }

    .filter-group.active .filter-options {
        display: block;
    }

    .filter-option {
        display: flex;
        align-items: center;
        min-height: 24px;
        margin-bottom: 7px;
        color: #4b5563;
        font-size: 13px;
        line-height: 1.35;
        cursor: pointer;
    }

    .filter-option input {
        flex: 0 0 auto;
        width: 15px;
        height: 15px;
        margin: 0 8px 0 0;
        accent-color: var(--global-color-primary);
    }

    .filter-option:hover {
        color: var(--global-color-primary);
    }

    .count-badge {
        margin-left: 4px;
        color: #9299a5;
        font-size: 12px;
    }

    .probe-content {
        min-width: 0;
        min-height: 600px;
    }

    .probe-list-heading {
        display: flex;
        align-items: baseline;
        justify-content: space-between;
        gap: 16px;
        margin: 10px 0 24px;
    }

    .probe-list-heading h2 {
        margin: 0;
        color: #111827;
        font-size: 24px;
        font-weight: 800;
        line-height: 1.2;
    }

    .probe-result-count {
        color: #8b93a0;
        font-size: 13px;
        font-weight: 500;
        white-space: nowrap;
    }

    .active-filters-area {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 10px;
        margin: -8px 0 22px;
        padding: 12px 14px;
        border: 1px solid #e5e8ee;
        border-radius: 4px;
        background: #f7f9fb;
    }

    .active-label {
        font-size: 13px;
        font-weight: 600;
        color: #666;
    }

    .chip-container {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }

    .filter-chip {
        background: #fff;
        border: 1px solid #cfd6df;
        padding: 4px 10px;
        border-radius: 999px;
        font-size: 13px;
        display: flex;
        align-items: center;
        gap: 5px;
        color: #116d9f;
        font-weight: 500;
    }

    .filter-chip .remove {
        cursor: pointer;
        font-weight: bold;
        color: #999;
    }

    .filter-chip .remove:hover {
        color: #f00;
    }

    .btn-clear-all {
        background: none;
        border: none;
        font-size: 12px;
        text-decoration: underline;
        cursor: pointer;
        color: #666;
    }

    .product-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 28px;
    }

    .probestore-list-items {
        display: flex;
        flex-direction: column;
        height: 100%;
        min-height: 244px;
        overflow: visible;
        border: 1px solid #dfe3e8;
        border-radius: 3px;
        background: #fff;
        box-shadow: 0 5px 12px rgba(17, 24, 39, 0.14);
        text-align: left;
        transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
    }

    .probestore-list-items:hover {
        border-color: #c8d0da;
        box-shadow: 0 10px 22px rgba(17, 24, 39, 0.16);
        transform: translateY(-2px);
    }

    .probestore-element {
        flex: 1;
        display: flex;
        flex-direction: column;
        min-height: 244px;
        padding: 20px 22px 22px;
    }

    .probestore-element-title h4 {
        margin: 0 0 30px;
        color: #111827;
        font-size: 24px;
        font-weight: 700;
        line-height: 1.15;
        overflow-wrap: anywhere;
    }

    .probe-spec-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0;
        margin-bottom: 22px;
        border-top: 1px solid #dfe3e8;
    }

    .probe-spec {
        min-width: 0;
        padding: 14px 10px 12px 0;
    }

    .probe-spec:nth-child(2n) {
        padding-right: 0;
        padding-left: 18px;
    }

    .probe-spec:nth-child(n + 3) {
        border-top: 1px solid #dfe3e8;
    }

    .probe-spec-value {
        display: block;
        color: #111827;
        font-size: 18px;
        font-weight: 600;
        line-height: 1.2;
        overflow-wrap: anywhere;
    }

    .probe-spec-unit {
        margin-left: 3px;
        color: #111827;
        font-size: 12px;
        font-weight: 500;
    }

    .probe-spec-label {
        display: block;
        margin-top: 5px;
        color: #8a929e;
        font-size: 12px;
        line-height: 1.25;
    }

    .probestore-element-btn {
        margin-top: auto;
    }

    .probestore-element-btn button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 38px;
        padding: 0 14px;
        background: #00AEE6;
        color: #FFFFFF;
        border: none;
        border-radius: 3px;
        cursor: pointer;
        font-weight: 500;
        font-size: 14px;
        line-height: 1;
        transition: background-color 0.2s ease, transform 0.2s ease;
    }

    .probestore-element-btn button:hover {
        background: #2fb8ef;
        transform: translateY(-1px);
    }

    .cart-modal-row {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 16px;
        align-items: start;
        padding: 14px 4px;
        border-bottom: 1px solid #eee;
        color: #111;
        font-size: 14px;
    }

    .cart-modal-row strong {
        display: block;
        margin-bottom: 5px;
        font-size: 15px;
        line-height: 1.35;
        word-break: break-word;
    }

    .cart-modal-row span {
        display: block;
        color: #666;
        font-size: 13px;
        line-height: 1.5;
    }

    .cart-modal-delete {
        border: 0;
        background: transparent;
        color: #111;
        cursor: pointer;
        font-size: 20px;
        font-weight: 700;
        line-height: 1;
    }

    .empty-state {
        text-align: center;
        padding: 60px 20px;
        margin-top: 20px;
        border: 1px solid #e4e7ec;
        border-radius: 4px;
        background: #f8fafc;
    }

    .empty-state img {
        max-width: 80px;
        margin-bottom: 20px;
        opacity: 0.5;
    }

    .btn-reset-search {
        margin-top: 15px;
        padding: 8px 20px;
        border: 1px solid #ccc;
        background: #fff;
        cursor: pointer;
    }

    .pagination-wrapper {
        display: flex;
        justify-content: center;
        margin-top: 42px;
    }

    .Pagination {
        display: flex;
        list-style: none;
        padding: 0;
        gap: 5px;
    }

    .page-item .page-link {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 36px;
        height: 36px;
        padding: 0 10px;
        border: 1px solid #dce1e8;
        border-radius: 3px;
        color: #333;
        text-decoration: none;
        font-size: 13px;
        cursor: pointer;
    }

    .page-item.active .page-link {
        background: var(--global-color-primary);
        color: #fff;
        border-color: var(--global-color-primary);
    }

    .btn-load-more {
        display: none;
        width: 100%;
        height: 44px;
        border: 1px solid #d7dce3;
        border-radius: 3px;
        background: #fff;
        color: #737b88;
        cursor: pointer;
        font-size: 14px;
        font-weight: 500;
    }

    .btn-load-more:hover {
        border-color: #111827;
        color: #111827;
    }

    .btn-scroll-top {
        display: none;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        margin-left: auto;
        border: 1px solid #d7dce3;
        border-radius: 50%;
        background: #fff;
        color: #111827;
        cursor: pointer;
        font-size: 24px;
        line-height: 1;
    }

    .mobile-result-progress {
        display: none;
        color: #111827;
        font-size: 14px;
        font-weight: 500;
        line-height: 1.4;
        text-align: center;
    }

    @media (max-width: 1200px) {
        .probe-store-container {
            grid-template-columns: 260px minmax(0, 1fr);
            gap: 24px;
        }

        .product-grid {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }
    }

    @media (max-width: 992px) {
        .probe-store-container {
            grid-template-columns: minmax(0, 1fr) auto;
            column-gap: 12px;
            row-gap: 12px;
            padding-top: 28px;
        }

        .probe-toolbar {
            display: contents;
        }

        .probe-actions {
            display: contents;
        }

        .search-box {
            grid-column: 1 / -1;
            order: 1;
            max-width: none;
        }

        .mobile-filter-bar {
            display: block;
            grid-column: 1;
            order: 2;
            margin-bottom: 0;
        }

        .btn-my-cart {
            grid-column: 2;
            order: 3;
            width: auto;
            min-width: 130px;
            height: 44px;
            padding: 0 14px;
            background: #fff;
            border-color: #d7dce3;
        }

        .btn-probe-guide {
            grid-column: 1 / -1;
            order: 4;
            width: 100%;
            margin-top: 2px;
        }

        .probe-content {
            grid-column: 1 / -1;
            order: 5;
        }

        .btn-mobile-filter {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            gap: 8px;
            width: 100%;
            max-width: 130px;
            height: 44px;
            padding: 0 14px;
            border-radius: 3px;
            background: #fff;
            color: #111827;
            border: 1px solid #d7dce3;
            cursor: pointer;
            font-weight: 600;
        }

        .btn-mobile-filter:hover {
            border-color: #111827;
        }

        .btn-my-cart .cart-icon {
            width: 18px;
            height: 18px;
        }

        .btn-my-cart .cart-badge {
            margin-left: auto;
        }

        .mobile-filter-count {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 18px;
            height: 18px;
            padding: 0 5px;
            border-radius: 999px;
            background: #00AEE6;
            color: #fff;
            font-size: 11px;
            line-height: 1;
        }

        .filter-backdrop {
            position: fixed;
            inset: 0;
            z-index: 999;
            display: block;
            padding: 0;
            border: 0;
            background: rgba(17, 24, 39, 0.42);
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transition: opacity 0.2s ease, visibility 0.2s ease;
        }

        .filter-backdrop.active {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
        }

        .probe-sidebar {
            position: fixed;
            top: 0;
            left: -324px;
            width: 300px;
            max-width: 86vw;
            height: 100dvh;
            max-height: 100dvh;
            z-index: 1000;
            padding: 20px;
            border: 0;
            border-radius: 0;
            box-shadow: 8px 0 24px rgba(17, 24, 39, 0.18);
            box-sizing: border-box;
            transition: left 0.3s ease;
            display: flex;
            flex-direction: column;
            overflow: hidden;
        }

        .probe-sidebar.active {
            left: 0;
        }

        .btn-close-sidebar {
            display: block;
            font-size: 24px;
            background: none;
            border: none;
            cursor: pointer;
        }

        .sidebar-content {
            flex: 1;
            min-height: 0;
            overflow-y: auto;
            padding-bottom: 24px;
            overscroll-behavior: contain;
        }

        .filter-options {
            max-height: none;
            overflow: visible;
        }

        .sidebar-footer-mobile {
            display: block;
            margin: 0 -20px -20px;
            padding: 14px 20px 20px;
            border-top: 1px solid #eee;
            background: #fff;
        }

        .btn-apply-mobile {
            width: 100%;
            padding: 12px;
            background: var(--global-color-primary);
            color: #fff;
            border: none;
            font-weight: bold;
            border-radius: 4px;
        }

        .active-filters-area {
            flex-wrap: nowrap;
            overflow-x: auto;
            padding: 10px;
        }

        .active-label,
        .filter-chip {
            flex: 0 0 auto;
        }

        .chip-container {
            flex-wrap: nowrap;
        }

        .pagination-wrapper.mobile-load-more {
            flex-direction: column;
            align-items: stretch;
            justify-content: stretch;
            gap: 16px;
            margin-top: 28px;
        }

        .pagination-wrapper.mobile-load-more .Pagination {
            display: none;
        }

        .pagination-wrapper.mobile-load-more .btn-scroll-top {
            display: inline-flex;
            align-self: flex-end;
        }

        .pagination-wrapper.mobile-load-more .mobile-result-progress {
            display: block;
        }

        .probe-list-heading {
            margin-top: 4px;
        }
    }

    @media (max-width: 768px) {
        .product-grid {
            grid-template-columns: 1fr;
            gap: 18px;
        }
    }

    @media (max-width: 520px) {
        .probe-store-container {
            padding: 22px 16px 44px;
        }

        .search-box input {
            height: 48px;
            font-size: 14px;
        }

        .probe-actions {
            flex-direction: column;
        }

        .btn-probe-guide {
            width: 100%;
        }

        .btn-my-cart {
            width: auto;
            min-width: 130px;
            padding: 0 14px;
        }

        .probe-list-heading h2 {
            font-size: 22px;
        }

        .probestore-element {
            padding: 18px;
        }

        .probe-spec-value {
            font-size: 16px;
        }
    }
