.pro2-quick-switches {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    min-height: 48px;
    max-width: 100%;
    padding: 0 0 8px;
    margin: 0 0 18px;
}

.pro2-scrollable-area {
    -ms-overflow-style: none;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.pro2-scrollable-area::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}

.pro2-quick-switches,
.pro2-filter-chip-row,
.pro2-sidebar-active-filters,
.pro2-sidebar__scroll,
.pro2-context-sidebar__scroll,
.pro2-drawer__inner,
.pro2-sort-menu,
.pro2-page-size-menu,
.pro2-metrics--workspace,
.pro2-auth-modal,
.pro2-request-modal,
.pro2-overlay__content--scroll,
.pro2-overlay__body--scroll,
.pro2-settings-modal__content,
.pro2-quick-actions__content,
.pro2-price-library-modal__content,
.pro2-lightbox__stage {
    -ms-overflow-style: none;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.pro2-quick-switches::-webkit-scrollbar,
.pro2-filter-chip-row::-webkit-scrollbar,
.pro2-sidebar-active-filters::-webkit-scrollbar,
.pro2-sidebar__scroll::-webkit-scrollbar,
.pro2-context-sidebar__scroll::-webkit-scrollbar,
.pro2-drawer__inner::-webkit-scrollbar,
.pro2-sort-menu::-webkit-scrollbar,
.pro2-page-size-menu::-webkit-scrollbar,
.pro2-metrics--workspace::-webkit-scrollbar,
.pro2-auth-modal::-webkit-scrollbar,
.pro2-request-modal::-webkit-scrollbar,
.pro2-overlay__content--scroll::-webkit-scrollbar,
.pro2-overlay__body--scroll::-webkit-scrollbar,
.pro2-settings-modal__content::-webkit-scrollbar,
.pro2-quick-actions__content::-webkit-scrollbar,
.pro2-price-library-modal__content::-webkit-scrollbar,
.pro2-lightbox__stage::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
    background: transparent;
}

.pro2-quick-switches > * {
    flex: 0 0 auto;
}

.pro2-quick-chip {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    white-space: nowrap;
    padding: 0 16px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--bg-soft);
    color: var(--text);
    font-weight: 700;
    transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.pro2-quick-chip:hover {
    transform: translateY(-1px);
}

.pro2-quick-chip.is-disabled,
.pro2-quick-chip[aria-disabled='true'] {
    opacity: 0.52;
    cursor: not-allowed;
    transform: none;
}

.pro2-quick-chip.is-active {
    background: linear-gradient(135deg, var(--accent), var(--accent-strong));
    color: var(--accent-contrast);
    border-color: transparent;
}

.pro2-quick-chip--toggle {
    gap: 10px;
    cursor: pointer;
}

.pro2-text-wrap {
    min-width: 0;
    overflow-wrap: anywhere;
    word-break: break-word;
    hyphens: auto;
}

.pro2-quick-chip--toggle input {
    width: 18px;
    height: 18px;
    margin: 0;
}

[data-ui-hydrating='1'] .pro2-quick-chip {
    transition: none !important;
}

.pro2-cart-open-button.is-locked,
.pro2-results-cart-stick.is-locked,
.pro2-mobile-cart-button.is-locked {
    opacity: 0.72;
}

.pro2-cart-open-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.pro2-cart-count-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    min-height: 22px;
    padding: 0 7px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent), var(--accent-strong));
    color: var(--accent-contrast);
    font-size: 0.78rem;
    line-height: 1;
}

.pro2-eyebrow,
.pro2-section-title,
.pro2-badge {
    margin: 0 0 10px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--accent-strong);
}

.pro2-badge {
    display: inline-flex;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
}

.pro2-hero__grid,
.pro2-grid {
    display: grid;
    gap: 18px;
}

.pro2-hero__grid {
    grid-template-columns: minmax(0, 1.8fr) minmax(280px, 0.9fr);
}

.pro2-hero__grid--catalog {
    grid-template-columns: minmax(0, 1.5fr) minmax(300px, 0.8fr);
}

.pro2-inline-metrics,
.pro2-status {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 28px;
}

.pro2-inline-metrics > div,
.pro2-status > div {
    padding: 16px;
    border-radius: var(--radius-md);
    background: var(--panel-strong);
    border: 1px solid var(--border);
}

.pro2-inline-metrics strong,
.pro2-status strong {
    display: block;
    margin-bottom: 6px;
    font-size: 1rem;
}

.pro2-inline-metrics span,
.pro2-status span,
.pro2-kv dt {
    color: var(--text-soft);
    font-size: 0.9rem;
}

.pro2-kv {
    display: grid;
    gap: 18px;
    margin: 18px 0 0;
}

.pro2-kv div {
    padding-bottom: 18px;
    border-bottom: 1px solid var(--border);
}

.pro2-kv div:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.pro2-kv dt,
.pro2-kv dd {
    margin: 0;
}

.pro2-kv dd {
    margin-top: 6px;
    font-size: 1.05rem;
    font-weight: 700;
}


.pro2-content {
    display: grid;
    gap: 18px;
}

.pro2-grid--features {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pro2-grid--roadmap {
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.8fr);
}

.pro2-grid--dashboard {
    grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.4fr);
}

.pro2-filters {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.pro2-filter {
    display: grid;
    gap: 8px;
    min-width: 240px;
    padding: 0 2px;
}

.pro2-card h3 {
    margin-bottom: 18px;
    font-size: 1.55rem;
    letter-spacing: -0.04em;
}

.pro2-list,
.pro2-steps {
    margin: 0;
    padding-left: 18px;
}

.pro2-list li + li,
.pro2-steps li + li {
    margin-top: 10px;
}

.pro2-steps li strong {
    display: block;
    margin-bottom: 4px;
}

.pro2-card--status {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pro2-workbench {
    display: grid;
    gap: 18px;
}

.pro2-catalog-app {
    display: grid;
    gap: 18px;
    padding-bottom: 56px;
}

.pro2-quick-switches--sidebar {
    margin-bottom: 0;
}

.pro2-sidebar__fixed-controls {
    display: grid;
    gap: 14px;
    min-width: 0;
    margin-top: 0;
    padding: 8px 0 12px;
    border-bottom: 1px solid color-mix(in srgb, var(--border) 86%, transparent);
}

.pro2-sidebar-active-filters {
    display: flex;
    flex-wrap: nowrap;
    gap: 6px;
    margin-top: 0;
    margin-bottom: 2px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 2px;
    -webkit-overflow-scrolling: touch;
}

.pro2-sidebar-active-filters > * {
    flex: 0 0 auto;
}

.pro2-sidebar__active-head {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    margin-top: 0;
    flex-wrap: wrap;
}

.pro2-sidebar__active-head h3 {
    margin: 0;
    color: var(--text-soft);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.pro2-sidebar__active-head [data-reset-filters] {
    flex: 0 0 auto;
}

.pro2-sidebar__active-block {
    min-width: 0;
    padding: 0 0 10px;
    border-bottom: 1px solid color-mix(in srgb, var(--border) 86%, transparent);
    margin-bottom: 6px;
}

.pro2-sidebar__title-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 4px;
}

.pro2-sidebar__title-row .pro2-section-title {
    margin-bottom: 0;
}

.pro2-sidebar__found {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 10px;
    border: 1px solid color-mix(in srgb, var(--accent) 14%, var(--border));
    border-radius: 999px;
    background: color-mix(in srgb, var(--bg-soft) 82%, transparent);
    color: var(--text-soft);
    font-size: 0.76rem;
    font-weight: 700;
    white-space: nowrap;
}

.pro2-sidebar__found.is-loading {
    gap: 8px;
}

.pro2-context-links,
.pro2-context-file-list,
.pro2-context-price-grid {
    display: grid;
    gap: 12px;
}

.pro2-context-card,
.pro2-context-price-card {
    display: grid;
    gap: 14px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 55%),
        var(--panel-strong);
}

.pro2-context-card {
    padding: 18px;
}

.pro2-context-price-card {
    overflow: visible;
}

.pro2-context-card h4,
.pro2-context-price-card h5 {
    margin: 0;
}

.pro2-context-file-group {
    display: grid;
    gap: 12px;
}

.pro2-context-file-group__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.pro2-context-file-group__count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    min-height: 28px;
    padding: 0 8px;
    border-radius: 999px;
    background: color-mix(in srgb, var(--bg-soft) 82%, transparent);
    color: var(--text-soft);
    font-size: 0.8rem;
    font-weight: 800;
}

.pro2-context-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 14px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: color-mix(in srgb, var(--bg-soft) 88%, transparent);
    color: var(--text);
    font-weight: 700;
    transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.pro2-context-link:hover,
.pro2-context-link:focus-visible {
    outline: none;
    transform: translateY(-1px);
    border-color: color-mix(in srgb, var(--accent) 34%, var(--border));
    background: color-mix(in srgb, var(--panel-muted) 96%, transparent);
}

.pro2-context-link--compact {
    min-height: 34px;
    padding: 0 12px;
    font-size: 0.86rem;
}

.pro2-price-library-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px;
}

.pro2-chip-list--price-library-modes {
    gap: 10px;
    justify-content: flex-end;
}

.pro2-price-library-mode {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 14px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: color-mix(in srgb, var(--bg-soft) 88%, transparent);
    color: var(--text);
    font: inherit;
    font-weight: 700;
    cursor: pointer;
    transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.pro2-price-library-mode.is-active {
    background: linear-gradient(135deg, var(--accent), var(--accent-strong));
    color: var(--accent-contrast);
    border-color: transparent;
}

.pro2-price-library-mode:hover,
.pro2-price-library-mode:focus-visible {
    outline: none;
    transform: translateY(-1px);
}

@media (max-width: 720px) {
    .pro2-chip-list--price-library-modes {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        justify-content: stretch;
        width: 100%;
    }

    .pro2-price-library-mode {
        justify-content: center;
        width: 100%;
        min-width: 0;
        text-align: center;
    }

    .pro2-price-library-modal__actions {
        width: 100%;
    }

    .pro2-price-library-modal__actions .pro2-context-price-card__actions {
        width: 100%;
    }

    .pro2-price-library-modal__actions .pro2-context-price-card__primary {
        width: 100%;
        justify-content: center;
    }
}

.pro2-context-price-grid {
    grid-template-columns: minmax(0, 1fr);
}

.pro2-context-price-card__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.pro2-context-price-card__actions {
    position: relative;
    flex: 0 0 auto;
}

.pro2-context-price-card__body {
    display: grid;
    gap: 14px;
    padding: 0 18px 18px;
}

.pro2-context-price-card__preview {
    position: relative;
    display: block;
    aspect-ratio: 1 / 1.22;
    overflow: hidden;
    width: 100%;
    border-radius: 22px 22px 0 0;
    border: 0;
    padding: 0;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0.04)),
        color-mix(in srgb, var(--panel) 92%, transparent);
    cursor: zoom-in;
}

.pro2-context-price-card__preview img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    padding: 18px;
}

.pro2-context-price-card__meta {
    display: block;
    margin-top: 6px;
    color: var(--text-soft);
    font-size: 0.84rem;
}

.pro2-context-price-card__primary {
    flex: 0 0 auto;
}

.pro2-price-download-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    z-index: 2;
    display: grid;
    min-width: 168px;
    padding: 8px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 50%),
        color-mix(in srgb, var(--panel-strong) 98%, transparent);
    box-shadow: 0 18px 36px rgba(7, 15, 25, 0.22);
    backdrop-filter: var(--surface-blur);
}

.pro2-price-download-menu[hidden] {
    display: none !important;
}

.pro2-price-download-option {
    appearance: none;
    -webkit-appearance: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    min-height: 40px;
    padding: 0 12px;
    border: 0;
    border-radius: 12px;
    background: transparent;
    color: var(--text);
    font: inherit;
    text-align: left;
    box-shadow: none;
    cursor: pointer;
    transition: background 160ms ease, transform 160ms ease;
}

.pro2-price-download-option:hover,
.pro2-price-download-option:focus-visible {
    outline: none;
    background: color-mix(in srgb, var(--bg-soft) 82%, transparent);
    transform: translateY(-1px);
}

.pro2-price-download-option__label {
    font-weight: 700;
}

.pro2-price-download-option__meta {
    color: var(--text-soft);
    font-size: 0.8rem;
    white-space: nowrap;
}

.pro2-install-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 16px;
}

.pro2-install-toolbar {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 2px;
}

.pro2-install-view-menu {
    min-width: 160px;
}

.pro2-install-panel[hidden] {
    display: none !important;
}

.pro2-install-map-wrap {
    position: relative;
}

.pro2-install-map {
    width: 100%;
    height: 520px;
    min-height: 520px;
    border: 1px solid var(--border);
    border-radius: 24px;
    overflow: hidden;
    display: block;
    position: relative;
    background:
        radial-gradient(circle at top, color-mix(in srgb, var(--accent) 14%, transparent), transparent 40%),
        color-mix(in srgb, var(--panel-muted) 94%, transparent);
}

.pro2-install-map > ymaps3.ymaps3--map-container,
.pro2-install-map > ymaps3.ymaps3--map-container > ymaps3.ymaps3--map,
.pro2-install-map > ymaps3.ymaps3--map-container > ymaps3.ymaps3--map > ymaps3.ymaps3--main-engine-container,
.pro2-install-map > ymaps3.ymaps3--map-container > ymaps3.ymaps3--map > ymaps3.ymaps3--top-engine-container {
    width: 100%;
    height: 100%;
}

.pro2-install-map > ymaps3.ymaps3--map-container > ymaps3.ymaps3--map > ymaps3.ymaps3--main-engine-container .ymaps3--tile-layer,
.pro2-install-map > ymaps3.ymaps3--map-container > ymaps3.ymaps3--map > ymaps3.ymaps3--top-engine-container .ymaps3--marker-layer {
    opacity: 1 !important;
    filter: none !important;
}

.pro2-install-map-balloon {
    display: grid;
    gap: 8px;
    min-width: 220px;
}

.pro2-install-map-balloon strong {
    font-size: 0.95rem;
    line-height: 1.35;
}

.pro2-install-map-balloon small {
    color: #6f7785;
    line-height: 1.4;
}

.pro2-install-map-balloon span {
    font-weight: 700;
}

.pro2-install-map-balloon p {
    margin: 0;
    line-height: 1.45;
}

.pro2-install-map-balloon__photos {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
}

.pro2-install-map-balloon__photos button,
.pro2-install-card__photos button {
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    border-radius: 10px;
    overflow: hidden;
    cursor: zoom-in;
}

.pro2-install-map-balloon__photos img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.pro2-map-cluster {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    min-height: 34px;
}

.pro2-map-cluster__circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(93, 179, 184, 0.96), rgba(46, 143, 149, 0.92));
    color: var(--accent-contrast);
    box-shadow: 0 10px 22px rgba(14, 22, 28, 0.22);
}

.pro2-map-cluster__count {
    font-size: 0.82rem;
    font-weight: 800;
    line-height: 1;
}

.pro2-map-marker {
    display: flex;
    align-items: center;
    justify-content: center;
}

.pro2-map-marker__pin {
    width: 16px;
    height: 16px;
    border-radius: 999px 999px 999px 0;
    transform: rotate(-45deg);
    background: linear-gradient(135deg, rgba(93, 179, 184, 0.98), rgba(46, 143, 149, 0.94));
    box-shadow: 0 8px 18px rgba(14, 22, 28, 0.24);
}

.pro2-install-card {
    display: grid;
    gap: 16px;
    padding: 20px;
    border: 1px solid var(--border);
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 42%),
        color-mix(in srgb, var(--panel) 96%, transparent);
    box-shadow: 0 18px 34px rgba(7, 15, 25, 0.08);
}

.pro2-install-card__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.pro2-install-card__head h4 {
    margin: 4px 0 0;
    font-size: 1rem;
    line-height: 1.35;
}

.pro2-install-card__price {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 14px;
    border: 1px solid color-mix(in srgb, var(--accent) 24%, var(--border));
    border-radius: 999px;
    background: color-mix(in srgb, var(--accent) 10%, transparent);
    color: var(--text);
    font-size: 0.95rem;
    white-space: nowrap;
}

.pro2-install-card__meta {
    display: block;
    margin-top: 6px;
    color: var(--text-soft);
    font-size: 0.84rem;
}

.pro2-install-card__body {
    display: grid;
    gap: 10px;
    color: var(--text-soft);
}

.pro2-install-card__body p {
    margin: 0;
    line-height: 1.5;
}

.pro2-install-card__body strong {
    color: var(--text);
}

.pro2-install-card__photos {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 4px;
}

.pro2-install-card__photos button {
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    background: color-mix(in srgb, var(--panel-muted) 92%, transparent);
}

.pro2-install-card__photos img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.pro2-install-card__actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.pro2-install-mobile-sheet {
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 4;
    display: block;
    width: min(440px, calc(100% - 24px));
    max-height: calc(100% - 24px);
    overflow: auto;
    pointer-events: auto;
}

.pro2-install-card--mobile-sheet {
    position: relative;
    gap: 12px;
    padding: 16px;
    border-radius: 22px;
    box-shadow: 0 22px 42px rgba(7, 15, 25, 0.18);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 36%),
        color-mix(in srgb, var(--glass-surface-strong) 72%, var(--panel-strong) 28%);
    -webkit-backdrop-filter: var(--surface-blur);
    backdrop-filter: var(--surface-blur);
}

@media (max-width: 720px) {
    .pro2-price-library-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .pro2-context-price-card {
        gap: 10px;
        border-radius: 18px;
    }

    .pro2-context-price-card__body {
        gap: 8px;
        padding: 0 10px 10px;
    }

    .pro2-context-price-card__head {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .pro2-context-price-card__preview img {
        padding: 6px;
    }

    .pro2-context-price-card__preview {
        border-radius: 18px 18px 0 0;
        aspect-ratio: 1 / 1.34;
    }

    .pro2-context-price-card h5 {
        font-size: 1rem;
        line-height: 1.15;
    }

    .pro2-context-price-card__meta {
        margin-top: 4px;
        font-size: 0.72rem;
        line-height: 1.35;
    }

    .pro2-context-price-card__actions,
    .pro2-context-price-card__primary {
        width: 100%;
    }

    .pro2-context-price-card__primary {
        justify-content: center;
    }

    .pro2-price-download-menu {
        left: 0;
        right: auto;
        min-width: calc(100% + 8px);
    }

    .pro2-install-list {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .pro2-install-toolbar {
        justify-content: stretch;
    }

    .pro2-install-card {
        gap: 12px;
        padding: 16px;
        border-radius: 20px;
    }

    .pro2-install-card__head {
        flex-direction: column;
    }

    .pro2-install-card__price {
        align-self: flex-start;
    }

    .pro2-install-card__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .pro2-install-card__actions .pro2-button {
        width: 100%;
        justify-content: center;
    }

    .pro2-install-map {
        min-height: 420px;
        border-radius: 20px;
    }

    .pro2-install-map-wrap {
        padding-bottom: 0;
    }

    .pro2-install-mobile-sheet[hidden] {
        display: none !important;
    }

    .pro2-install-mobile-sheet__close {
        position: absolute;
        top: 12px;
        right: 12px;
        width: 36px;
        height: 36px;
        z-index: 2;
    }

    .pro2-install-card--mobile-sheet .pro2-install-card__head {
        padding-right: 44px;
    }

    .pro2-install-card--mobile-sheet .pro2-install-card__photos {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.pro2-sidebar__found-skeleton {
    display: inline-block;
    width: 3.4ch;
    height: 0.95em;
    border-radius: 999px;
    vertical-align: middle;
}

.pro2-sidebar-active-filters .pro2-store-chip {
    white-space: nowrap;
    font-size: 0.78rem;
    padding: 5px 9px;
}

.pro2-active-filter-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.pro2-active-filter-remove {
    width: 18px;
    height: 18px;
    border: 0;
    border-radius: 999px;
    background: rgba(4, 10, 18, 0.12);
    color: inherit;
    font: inherit;
    font-size: 0.88rem;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
}

.pro2-active-filter-remove:hover {
    background: rgba(4, 10, 18, 0.2);
}

.pro2-mobile-sidebar-backdrop {
    position: fixed;
    inset: 0;
    border: 0;
    background: rgba(4, 10, 18, 0.42);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease;
    z-index: 54;
}

.pro2-mobile-sidebar-backdrop.is-open {
    opacity: 1;
    pointer-events: auto;
}

@keyframes pro2-skeleton {
    100% {
        transform: translateX(100%);
    }
}

.pro2-cart-workspace {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
    align-items: start;
}

.pro2-cart-shell {
    gap: 20px;
}

.pro2-cart-drawer-head {
    display: grid;
    gap: 12px;
}

.pro2-cart-drawer-head__top {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
}

.pro2-cart-drawer-head__top .pro2-section-title {
    margin: 0;
}

.pro2-cart-drawer-head h3 {
    margin: 0;
}

.pro2-cart-drawer-head__actions {
    display: inline-flex;
    flex: 0 0 auto;
}

.pro2-cart-shell__head {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 16px;
}

.pro2-cart-shell__summary {
    display: grid;
    gap: 6px;
}

.pro2-cart-shell__summary h4 {
    margin: 0;
}

.pro2-cart-shell__summary .pro2-muted {
    margin: 0;
}

.pro2-cart-shell__actions {
    flex: 0 0 auto;
}

.pro2-cart-list,
.pro2-selection-list {
    display: grid;
    gap: 16px;
}

.pro2-cart-product-card,
.pro2-selection-product-card {
    cursor: pointer;
    padding: 18px 20px;
    position: relative;
}

.pro2-cart-product-card .pro2-product-item__main,
.pro2-selection-product-card .pro2-product-item__main {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 16px;
}

.pro2-cart-product-card .pro2-product-item__thumb,
.pro2-selection-product-card .pro2-product-item__thumb {
    width: 72px;
    height: 72px;
    border-radius: 16px;
}

.pro2-cart-product-card--table .pro2-product-item__body,
.pro2-selection-product-card--table .pro2-product-item__body {
    grid-template-columns: minmax(0, 1fr) 196px;
    grid-template-areas:
        "title actions"
        "meta actions"
        "badges actions"
        "prices actions";
    align-items: start;
    gap: 10px 16px;
}

.pro2-cart-product-card .pro2-product-item__title strong a,
.pro2-selection-product-card .pro2-product-item__title strong a {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.pro2-cart-product-card--table .pro2-product-item__meta,
.pro2-selection-product-card--table .pro2-product-item__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 14px;
    align-items: baseline;
    padding-top: 0;
    font-size: 0.92rem;
}

.pro2-cart-product-card--table .pro2-product-item__article,
.pro2-selection-product-card--table .pro2-product-item__article {
    display: inline-flex;
    grid-template-columns: none;
    align-items: baseline;
    gap: 6px;
    width: auto;
    max-width: 100%;
    padding-right: 0;
    text-align: left;
}

.pro2-cart-product-card--table .pro2-product-item__article-label,
.pro2-selection-product-card--table .pro2-product-item__article-label {
    color: var(--text-soft);
}

.pro2-cart-product-card--table .pro2-product-item__prices,
.pro2-selection-product-card--table .pro2-product-item__prices {
    align-self: start;
    justify-content: flex-start;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pro2-cart-product-card--table .pro2-price-chip,
.pro2-selection-product-card--table .pro2-price-chip {
    width: auto;
    min-width: 188px;
}

.pro2-cart-product-card--table .pro2-product-item__actions,
.pro2-selection-product-card--table .pro2-product-item__actions {
    align-self: stretch;
    align-items: stretch;
    gap: 10px;
    width: 220px;
    justify-self: end;
    padding-top: 0;
}

.pro2-cart-product-card--table .pro2-cart-item__qty-control {
    justify-self: stretch;
    width: 100%;
}

.pro2-cart-product-card--table .pro2-cart-item__line-total {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    padding: 0 6px;
    color: var(--text-soft);
    font-size: 0.8rem;
    line-height: 1.1;
}

.pro2-cart-product-card--table .pro2-cart-item__line-total strong {
    color: var(--text);
    font-size: 0.95rem;
    font-weight: 800;
    white-space: nowrap;
}

.pro2-cart-product-card--table .pro2-product-item__actions .pro2-button,
.pro2-selection-product-card--table .pro2-product-item__actions .pro2-button {
    width: 100%;
    justify-content: center;
}

.pro2-selection-product-card--table .pro2-product-item__actions {
    align-items: flex-end;
}

.pro2-selection-product-card--table .pro2-selection-remove-button {
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
}

.pro2-selection-product-card--table .pro2-product-item__badges {
    grid-area: badges;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: flex-start;
}

.pro2-selection-product-card--table .pro2-inline-badge--stock {
    width: auto;
    justify-content: flex-start;
    gap: 6px;
    padding-right: 12px;
}

.pro2-selection-product-card--table .pro2-inline-badge__label-text {
    white-space: nowrap;
}

.pro2-selection-product-card--table .pro2-inline-badge__value {
    white-space: nowrap;
}

.pro2-selection-drawer-head {
    display: grid;
    gap: 12px;
}

.pro2-selection-drawer-head__top {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
}

.pro2-selection-drawer-head__top .pro2-section-title {
    margin: 0;
}

.pro2-selection-drawer-head h3 {
    margin: 0;
}

.pro2-selection-drawer-head__actions {
    display: inline-flex;
    flex: 0 0 auto;
}

.pro2-selection-shell {
    display: grid;
    gap: 16px;
}

.pro2-compare-modal {
    display: grid;
    gap: 18px;
}

.pro2-compare-modal__tools {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.pro2-compare-modal__tools .pro2-button {
    margin-left: auto;
}

.pro2-compare-modal__legend {
    color: var(--text-soft);
    font-size: 0.82rem;
    line-height: 1.35;
}

.pro2-compare-mobile-cards {
    display: none;
}

.pro2-compare-table__product-head {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    min-width: 0;
}

.pro2-compare-table__product-media {
    position: relative;
    display: grid;
    grid-template-columns: 64px 42px;
    gap: 8px;
    align-items: start;
    min-width: 0;
}

.pro2-compare-table__product-copy {
    display: grid;
    gap: 6px;
    min-width: 0;
}

.pro2-compare-table__product-thumb {
    position: relative;
    display: grid;
    place-items: center;
    width: 64px;
    height: 64px;
    overflow: hidden;
    border: 1px solid rgba(127, 145, 164, 0.14);
    border-radius: 16px;
    background: var(--surface);
    color: var(--text-soft);
    font-weight: 800;
    text-decoration: none;
}

.pro2-compare-table__product-thumb:hover,
.pro2-compare-table__product-thumb:focus-visible,
.pro2-compare-mobile-card__thumb:hover,
.pro2-compare-mobile-card__thumb:focus-visible,
.pro2-compare-table__product-title:hover,
.pro2-compare-table__product-title:focus-visible,
.pro2-compare-mobile-card__title:hover,
.pro2-compare-mobile-card__title:focus-visible {
    outline: none;
    text-decoration: none;
}

.pro2-compare-table__product-thumb .pro2-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.pro2-compare-table__product-thumb--fallback {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)), var(--surface);
}

.pro2-compare-table {
    display: grid;
    grid-template-columns: minmax(170px, 170px) minmax(0, 1fr);
    overflow: auto;
    isolation: isolate;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.02);
}

.pro2-compare-table__side {
    min-width: 0;
}

.pro2-compare-table__side--labels {
    overflow: hidden;
    border-right: 1px solid rgba(127, 145, 164, 0.14);
    background: var(--panel-strong);
}

.pro2-compare-table__side--values {
    min-width: 0;
    overflow-x: auto;
    overflow-y: hidden;
}

.pro2-compare-table__scroll {
    min-width: max-content;
}

.pro2-compare-table__row {
    display: grid;
    width: 100%;
    border-top: 1px solid rgba(127, 145, 164, 0.14);
}

.pro2-compare-table__row:first-child {
    border-top: 0;
}

.pro2-compare-table__row--head {
    position: sticky;
    top: 0;
    z-index: 5;
    background: var(--panel-strong);
}

.pro2-compare-table__side--labels .pro2-compare-table__row,
.pro2-compare-table__side--labels .pro2-compare-table__row--head {
    grid-template-columns: minmax(170px, 170px);
}

.pro2-compare-table__side--values .pro2-compare-table__row,
.pro2-compare-table__side--values .pro2-compare-table__row--head {
    grid-template-columns: repeat(var(--pro2-compare-columns, 2), minmax(220px, 220px));
    width: max-content;
}

.pro2-compare-table__cell {
    min-width: 0;
    padding: 12px 14px;
    border-left: 1px solid rgba(127, 145, 164, 0.14);
    color: var(--text);
    line-height: 1.35;
}

.pro2-compare-table__cell:first-child {
    border-left: 0;
}

.pro2-compare-table__feature {
    background: var(--panel-strong);
    color: var(--text-soft);
    font-weight: 800;
}

.pro2-compare-table__product {
  display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 12px;
    min-height: 232px;
    font-weight: 800;
}

.pro2-compare-table__product-body {
    display: grid;
    gap: 8px;
    min-width: 0;
}

.pro2-compare-table__product > .pro2-compare-table__product-thumb {
    width: 88px;
    height: 88px;
}

.pro2-compare-table__product-title {
    display: -webkit-box;
    min-height: calc(1.25em * 3);
    font-weight: 800;
    line-height: 1.25;
    color: var(--text);
    text-decoration: none;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.pro2-compare-table__product-meta {
    min-height: 1.2em;
    color: var(--text-soft);
    font-size: 0.82rem;
    font-weight: 500;
}

.pro2-compare-table__product-prices {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.pro2-compare-table__product-prices .pro2-price-chip {
    width: auto;
    min-width: 0;
    padding: 6px 10px;
    font-size: 0.78rem;
}

.pro2-compare-table__product-actions {
    display: none;
    margin-top: auto;
}

.pro2-compare-table__product-actions .pro2-button {
    width: auto;
    justify-content: center;
}

.pro2-compare-remove-button {
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
}

.pro2-compare-remove-button svg {
    width: 18px;
    height: 18px;
}

.pro2-compare-table__row.is-different .pro2-compare-table__feature,
.pro2-compare-table__cell.is-different {
    background: color-mix(in srgb, var(--accent) 10%, rgba(255, 255, 255, 0.02));
}

.pro2-compare-table__legend,
.pro2-compare-mobile-card__legend {
    color: var(--text-soft);
    font-size: 0.82rem;
    line-height: 1.35;
}

.pro2-compare-table__legend {
    padding: 0 4px;
}

.pro2-compare-table__legend::before,
.pro2-compare-mobile-card__legend::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-right: 8px;
    border-radius: 999px;
    background: var(--accent);
    vertical-align: middle;
}

.pro2-cart-item__qty-control {
    min-height: 48px;
}

.pro2-cart-item__qty {
    min-width: 2ch;
    text-align: center;
    font-weight: 700;
    cursor: default;
}

.pro2-cart-item__qty:hover,
.pro2-cart-item__qty:focus-visible {
    background: transparent;
    color: var(--text);
}

.pro2-cart-item__remove {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 48px;
    padding: 0 18px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 60%),
        var(--glass-control-surface);
    color: var(--text-soft);
    font: inherit;
    font-weight: 700;
    cursor: pointer;
    transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.pro2-cart-item__remove:hover,
.pro2-cart-item__remove:focus-visible {
    outline: none;
    transform: translateY(-1px);
    border-color: rgba(232, 102, 120, 0.34);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 60%),
        rgba(232, 102, 120, 0.08);
    color: #ffb1bc;
}

.pro2-cart-item__remove.is-loading {
    cursor: default;
}

.pro2-cart-item__remove.is-loading::before {
    content: '';
    width: 14px;
    height: 14px;
    margin-right: 0;
    border-radius: 999px;
    border: 2px solid currentColor;
    border-right-color: transparent;
    animation: pro2-button-spin 0.7s linear infinite;
}

.pro2-cart-summary {
    position: static;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
    grid-template-areas:
        "head actions"
        "meta actions";
    gap: 14px 24px;
    width: 100%;
    justify-self: stretch;
    align-items: start;
    padding: 20px;
    border: 1px solid var(--border);
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 24%),
        color-mix(in srgb, var(--panel) 94%, transparent);
}

.pro2-cart-summary__head {
    grid-area: head;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
}

.pro2-cart-summary__head span {
    color: var(--text-soft);
}

.pro2-cart-summary__head strong {
    font-size: 1.35rem;
}

.pro2-cart-summary__meta {
    grid-area: meta;
    color: var(--text-soft);
    margin: 0;
}

.pro2-cart-summary__actions {
    grid-area: actions;
    display: grid;
    gap: 12px;
}

.pro2-cart-summary__actions .pro2-button {
    width: 100%;
    justify-content: center;
}

.pro2-cart-step {
    display: grid;
    gap: 18px;
}

.pro2-cart-form {
    display: grid;
    gap: 18px;
}

.pro2-cart-form__field {
    display: grid;
    gap: 8px;
}

.pro2-cart-form__field[hidden] {
    display: none;
}

.pro2-cart-form__field span {
    color: var(--text-soft);
}

.pro2-cart-form__switch {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.03);
    cursor: pointer;
}

.pro2-cart-form__switch-copy {
    color: var(--text);
    font-weight: 600;
}

.pro2-segmented,
.pro2-cart-segmented {
    display: inline-grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    padding: 6px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.03);
}

.pro2-segmented__option,
.pro2-cart-segmented__option {
    position: relative;
    display: flex;
    min-width: 0;
}

.pro2-segmented__option input,
.pro2-cart-segmented__option input {
    position: absolute;
    inset: 0;
    opacity: 0;
    margin: 0;
    cursor: pointer;
}

.pro2-segmented__option span,
.pro2-cart-segmented__option span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 12px;
    color: var(--text-soft);
    font-weight: 700;
    transition: background 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.pro2-segmented__option input:checked + span,
.pro2-cart-segmented__option input:checked + span {
    background: linear-gradient(135deg, var(--accent), var(--accent-strong));
    color: var(--accent-contrast);
    box-shadow: 0 10px 24px rgba(88, 209, 201, 0.22);
}

.pro2-segmented__option input:focus-visible + span,
.pro2-cart-segmented__option input:focus-visible + span {
    outline: 2px solid rgba(88, 209, 201, 0.45);
    outline-offset: 2px;
}

.pro2-cart-form__field input,
.pro2-cart-form__field textarea {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.03);
    color: var(--text);
    font: inherit;
    padding: 14px 16px;
}

.pro2-cart-form__field textarea {
    min-height: 180px;
    resize: vertical;
}

.pro2-cart-form__status {
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: 16px;
    color: var(--text-soft);
    background: rgba(255, 255, 255, 0.03);
}

.pro2-cart-form__status.is-error {
    color: var(--error-text);
    border-color: var(--error-border);
    background: var(--error-bg);
}

.pro2-cart-form__status.is-success {
    color: var(--success-text, var(--text));
    border-color: color-mix(in srgb, var(--accent) 45%, transparent);
    background: color-mix(in srgb, var(--accent) 12%, transparent);
}

.pro2-cart-form__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.pro2-cart-promo-table {
    display: grid;
    gap: 12px;
}

.pro2-cart-promo-table__head,
.pro2-cart-promo-row {
    display: grid;
    grid-template-columns: minmax(0, 2fr) 150px minmax(220px, 1fr);
    gap: 12px;
    align-items: start;
}

.pro2-cart-promo-table__head {
    padding: 0 4px;
    color: var(--text-soft);
    font-size: 0.9rem;
}

.pro2-cart-promo-row {
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.03);
}

.pro2-cart-promo-row__title {
    font-weight: 600;
    line-height: 1.35;
}

.pro2-cart-promo-row__price {
    font-weight: 700;
}

.pro2-cart-promo-row__input {
    display: grid;
    gap: 10px;
}

.pro2-cart-promo-row__input input {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.03);
    color: var(--text);
    font: inherit;
    padding: 12px 14px;
}

.pro2-cart-result {
    display: grid;
    gap: 16px;
}

.pro2-cart-result__qr img {
    display: block;
    width: 180px;
    max-width: 100%;
    padding: 10px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.04);
}

@media (max-width: 1100px) {
    .pro2-cart-summary {
        grid-template-columns: 1fr;
        grid-template-areas:
            "head"
            "meta"
            "actions";
        gap: 16px;
    }
}

@media (max-width: 720px) {
    .pro2-cart-drawer-head {
        gap: 10px;
    }

    .pro2-cart-drawer-head__top {
        align-items: center;
    }

    .pro2-cart-drawer-head__actions .pro2-button {
        width: auto;
    }

    .pro2-cart-shell__head {
        flex-direction: column;
        align-items: stretch;
    }

    .pro2-cart-shell__actions .pro2-button {
        width: 100%;
        justify-content: center;
    }

    .pro2-cart-product-card .pro2-product-item__main,
    .pro2-selection-product-card .pro2-product-item__main {
        grid-template-columns: 88px minmax(0, 1fr);
        gap: 12px;
        align-items: start;
    }

    .pro2-cart-product-card .pro2-product-item__thumb,
    .pro2-selection-product-card .pro2-product-item__thumb {
        width: 88px;
        height: 88px;
    }

    .pro2-cart-product-card--table .pro2-product-item__body,
    .pro2-cart-product-card .pro2-product-item__body,
    .pro2-selection-product-card--table .pro2-product-item__body,
    .pro2-selection-product-card .pro2-product-item__body {
        grid-template-columns: 1fr;
        grid-template-areas:
            "title"
            "meta"
            "badges"
            "prices"
            "actions";
        gap: 8px;
    }

    .pro2-cart-product-card--table .pro2-product-item__meta,
    .pro2-selection-product-card--table .pro2-product-item__meta {
        justify-content: flex-start;
        gap: 6px 10px;
        font-size: 0.86rem;
    }

    .pro2-cart-product-card--table .pro2-product-item__article,
    .pro2-selection-product-card--table .pro2-product-item__article {
        width: auto;
    }

    .pro2-cart-product-card--table .pro2-product-item__prices,
    .pro2-selection-product-card--table .pro2-product-item__prices {
        gap: 6px;
    }

    .pro2-selection-product-card--table .pro2-product-item__badges {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
    }

    .pro2-cart-product-card--table .pro2-price-chip,
    .pro2-selection-product-card--table .pro2-price-chip {
        min-width: 0;
    }

    .pro2-cart-product-card--table .pro2-product-item__actions,
    .pro2-selection-product-card--table .pro2-product-item__actions {
        width: 100%;
        justify-self: stretch;
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
        padding-top: 0;
    }

    .pro2-compare-table {
        display: none;
    }

.pro2-compare-mobile-cards {
    display: grid;
    grid-auto-flow: column;
        grid-auto-columns: minmax(240px, 78vw);
        gap: 12px;
        overflow-x: auto;
        overflow-y: hidden;
        padding-bottom: 2px;
        -webkit-overflow-scrolling: touch;
        scrollbar-gutter: stable both-edges;
    }

    .pro2-compare-mobile-card {
        display: flex;
        flex-direction: column;
        gap: 14px;
        padding: 14px;
        border: 1px solid rgba(127, 145, 164, 0.16);
        border-radius: 22px;
        background: color-mix(in srgb, var(--panel) 94%, rgba(255, 255, 255, 0.04));
        min-height: 100%;
    }

.pro2-compare-mobile-card__head {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-height: 196px;
}

.pro2-compare-mobile-card__thumbRow {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 88px;
}

.pro2-compare-mobile-card__thumb {
    position: relative;
    display: grid;
    place-items: center;
    width: 88px;
    height: 88px;
    overflow: hidden;
    border: 1px solid rgba(127, 145, 164, 0.14);
    border-radius: 16px;
    background: var(--surface);
    color: var(--text-soft);
    font-weight: 800;
    text-decoration: none;
}

.pro2-compare-mobile-card__thumb .pro2-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.pro2-compare-mobile-card__thumb--fallback {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)), var(--surface);
}

.pro2-compare-mobile-card__title {
    display: -webkit-box;
    min-height: calc(1.25em * 3);
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.25;
    color: var(--text);
    text-decoration: none;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

    .pro2-compare-mobile-card__meta {
        min-height: 1.2em;
        font-size: 0.82rem;
        color: var(--text-soft);
    }

    .pro2-compare-mobile-card__price {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
        min-height: 108px;
        align-content: flex-start;
    }

    .pro2-compare-mobile-card__price .pro2-price-chip {
        min-width: 0;
        width: auto;
        padding: 6px 10px;
        font-size: 0.78rem;
    }

    .pro2-compare-mobile-card__body {
        display: grid;
        gap: 10px;
    }

    .pro2-compare-mobile-card__item {
        display: grid;
        gap: 4px;
        padding: 10px 0;
        border-top: 1px solid rgba(127, 145, 164, 0.12);
    }

    .pro2-compare-mobile-card__item.is-different .pro2-compare-mobile-card__value {
        color: var(--text);
        background: color-mix(in srgb, var(--accent) 10%, rgba(255, 255, 255, 0.02));
        border-radius: 12px;
        padding: 8px 10px;
        margin: 0 -10px;
    }

    .pro2-compare-mobile-card__item:first-child {
        border-top: 0;
        padding-top: 0;
    }

    .pro2-compare-mobile-card__label {
        color: var(--text-soft);
        font-size: 0.74rem;
        line-height: 1.2;
        font-weight: 700;
        text-transform: none;
    }

    .pro2-compare-mobile-card__value {
        color: var(--text);
        font-weight: 700;
        line-height: 1.35;
    }

.pro2-compare-mobile-card__actions {
    display: none;
}

.pro2-compare-mobile-card__thumbRow .pro2-compare-remove-button {
    position: absolute;
    right: 0;
    top: 0;
}

    .pro2-cart-item__qty-control {
        width: 100%;
    }

    .pro2-cart-item__remove {
        width: 100%;
    }

    .pro2-cart-promo-table__head {
        display: none;
    }

    .pro2-cart-promo-row {
        grid-template-columns: 1fr;
    }

    .pro2-cart-form__actions .pro2-button,
    .pro2-cart-form__actions a.pro2-button {
        width: 100%;
        justify-content: center;
    }
}
