    /* ===== RESET & BASE ===== */
    .pm2 * { box-sizing: border-box; }
    .pm2 {
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
        color: #1a1a2e;
        line-height: 1.6;
        background: #f4f5f7;
    }

    /* ===== PAGE WRAPPER ===== */
    .pm2-page {
        padding: 100px 0 60px;
        background: #f4f5f7;
    }

    /* ===== BANNER (hero replacement) ===== */
    .pm2-banner {
        background: linear-gradient(135deg, #2c3e6b 0%, #3b5998 50%, #4a7ab5 100%);
        color: #fff;
        padding: 48px 40px 40px;
        border-radius: 0;
        margin-bottom: 0;
        position: relative;
        overflow: hidden;
    }
    .pm2-banner::before {
        content: "";
        position: absolute;
        top: -60px;
        right: -60px;
        width: 260px;
        height: 260px;
        border-radius: 50%;
        background: rgba(230, 76, 37, 0.15);
    }
    .pm2-banner__tag {
        display: inline-block;
        background: rgba(230, 76, 37, 0.2);
        color: #ff9a6c;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        padding: 5px 12px;
        border-radius: 4px;
        margin-bottom: 16px;
    }
    .pm2-banner h1 {
        margin: 0 0 12px;
        font-size: 36px;
        line-height: 1.15;
        font-weight: 800;
        color: #fff;
        max-width: 700px;
    }
    .pm2-banner h1 span {
        color: #ff9a6c;
    }
    .pm2-banner__desc {
        margin: 0 0 24px;
        font-size: 15px;
        color: rgba(255, 255, 255, 0.68);
        max-width: 600px;
        line-height: 1.7;
    }
    .pm2-banner__actions {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 32px;
    }
    .pm2-banner__btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 10px 20px;
        border-radius: 6px;
        font-size: 13px;
        font-weight: 700;
        text-decoration: none;
        transition: background 0.18s ease, transform 0.15s ease;
        cursor: pointer;
        border: none;
    }
    .pm2-banner__btn--primary {
        background: #e64c25;
        color: #fff;
    }
    .pm2-banner__btn--primary:hover {
        background: #d1401e;
        transform: translateY(-1px);
    }
    .pm2-banner__btn--outline {
        background: transparent;
        color: rgba(255, 255, 255, 0.85);
        border: 1px solid rgba(255, 255, 255, 0.25);
    }
    .pm2-banner__btn--outline:hover {
        border-color: rgba(255, 255, 255, 0.5);
        color: #fff;
    }

    /* ===== CONTAINER ===== */
    .pm2-container {
        max-width: 1320px;
        margin: 0 auto;
        padding: 0 15px;
    }

    /* ===== SECTION ===== */
    .pm2-section {
        margin-top: 40px;
    }
    .pm2-section__head {
        display: flex;
        align-items: baseline;
        justify-content: space-between;
        gap: 16px;
        margin-bottom: 24px;
        padding-bottom: 12px;
        border-bottom: 2px solid #1a1a2e;
    }
    .pm2-section__title {
        margin: 0;
        font-size: 24px;
        font-weight: 800;
        color: #1a1a2e;
        line-height: 1.2;
    }
    .pm2-section__note {
        margin: 0;
        font-size: 13px;
        color: #6b7280;
        max-width: 480px;
        line-height: 1.5;
    }

    /* ===== DISCOUNT LADDER ===== */
    .pm2-ladder {
        background: #fff;
        border: 1px solid #e5e7eb;
        border-radius: 8px;
        overflow: hidden;
    }
    .pm2-ladder__row {
        display: flex;
        align-items: stretch;
        border-bottom: 1px solid #e5e7eb;
    }
    .pm2-ladder__row:last-child { border-bottom: none; }
    .pm2-ladder__row--highlight {
        background: #fef3ed;
        border-left: 3px solid #e64c25;
    }
    .pm2-ladder__step {
        display: flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 72px;
        background: #f9fafb;
        font-size: 13px;
        font-weight: 800;
        color: #6b7280;
    }
    .pm2-ladder__row--highlight .pm2-ladder__step {
        background: rgba(230, 76, 37, 0.1);
        color: #e64c25;
    }
    .pm2-ladder__body {
        flex: 1;
        padding: 18px 20px;
    }
    .pm2-ladder__discount {
        font-size: 22px;
        font-weight: 800;
        color: #1a1a2e;
        margin: 0 0 4px;
        line-height: 1.1;
    }
    .pm2-ladder__row--highlight .pm2-ladder__discount { color: #e64c25; }
    .pm2-ladder__text {
        font-size: 13px;
        color: #6b7280;
        margin: 0;
        line-height: 1.55;
    }

    /* ===== QUICK-SCHEMA ===== */
    .pm2-schema {
        display: grid;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 12px;
        margin-top: 16px;
    }
    .pm2-schema__item {
        background: #fff;
        border: 1px solid #e5e7eb;
        border-radius: 8px;
        padding: 16px;
        text-align: center;
    }
    .pm2-schema__icon {
        font-size: 20px;
        margin-bottom: 8px;
    }
    .pm2-schema__title {
        font-size: 14px;
        font-weight: 700;
        color: #1a1a2e;
        margin: 0 0 6px;
        line-height: 1.3;
    }
    .pm2-schema__text {
        font-size: 13px;
        color: #6b7280;
        margin: 0;
        line-height: 1.5;
    }

    /* ===== PRODUCTS: SIDEBAR + LISTING ===== */
    .pm2-products {
        display: flex;
        gap: 20px;
        align-items: flex-start;
    }
    .pm2-products > .pm2-sidebar {
        flex: 0 0 220px;
        width: 220px;
    }
    .pm2-products > .pm2-listing {
        flex: 1 1 auto;
        min-width: 0;
    }

    /* Sidebar filters */
    .pm2-sidebar {
        background: #fff;
        border: 1px solid #e5e7eb;
        border-radius: 8px;
        padding: 0;
        transition: box-shadow 0.15s ease;
    }
    .pm2-sidebar.is-sticky {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    }
    .pm2-sidebar__head {
        padding: 14px 16px;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        color: #6b7280;
        background: #f9fafb;
        border-bottom: 1px solid #e5e7eb;
    }
    .pm2-sidebar__list {
        list-style: none;
        margin: 0;
        padding: 6px 0;
    }
    .pm2-sidebar__btn {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 10px 16px;
        border: none;
        background: none;
        font-size: 13px;
        font-weight: 600;
        color: #374151;
        cursor: pointer;
        text-align: left;
        transition: background 0.15s ease, color 0.15s ease;
    }
    .pm2-sidebar__btn:hover {
        background: #f3f4f6;
    }
    .pm2-sidebar__btn.is-active {
        background: #eff6ff;
        color: #1f5fbf;
        font-weight: 700;
    }
    .pm2-sidebar__count {
        font-size: 11px;
        color: #9ca3af;
        font-weight: 600;
        background: #f3f4f6;
        padding: 1px 7px;
        border-radius: 10px;
    }
    .pm2-sidebar__btn.is-active .pm2-sidebar__count {
        background: rgba(31, 95, 191, 0.12);
        color: #1f5fbf;
    }
    .pm2-sidebar__gift {
        border-top: 1px solid #e5e7eb;
        margin-top: 4px;
        padding-top: 4px;
    }
    .pm2-sidebar__gift .pm2-sidebar__btn {
        color: #e64c25;
    }
    .pm2-sidebar__gift .pm2-sidebar__btn.is-active {
        background: #fef3ed;
        color: #d1401e;
    }
    .pm2-order-panel {
        margin-bottom: 18px;
        background: #fff;
        border: 1px solid #e5e7eb;
        border-radius: 8px;
        overflow: hidden;
    }
    .pm2-order-panel__head {
        display: flex;
        align-items: baseline;
        justify-content: space-between;
        gap: 16px;
        padding: 14px 16px;
        background: #f9fafb;
        border-bottom: 1px solid #e5e7eb;
    }
    .pm2-order-panel__title {
        margin: 0;
        font-size: 16px;
        font-weight: 800;
        color: #1a1a2e;
    }
    .pm2-order-panel__note {
        margin: 0;
        font-size: 12px;
        color: #6b7280;
        line-height: 1.55;
    }
    .pm2-order-panel__body {
        padding: 16px;
    }
    .pm2-order-panel__layout {
        display: grid;
        grid-template-columns: minmax(0, 1.25fr) minmax(280px, 340px);
        gap: 16px;
        align-items: start;
    }
    .pm2-order-panel__summary,
    .pm2-order-panel__form {
        min-width: 0;
    }
    .pm2-cart__note {
        margin: 0;
        padding: 12px;
        background: #f8fafc;
        border: 1px solid #e5e7eb;
        border-radius: 6px;
        font-size: 12px;
        color: #4b5563;
        line-height: 1.55;
    }
    .pm2-cart__empty {
        margin-top: 12px;
        padding: 14px;
        background: #f9fafb;
        border: 1px dashed #d1d5db;
        border-radius: 6px;
        font-size: 12px;
        color: #6b7280;
        line-height: 1.55;
    }
    .pm2-cart__items {
        display: grid;
        gap: 12px;
        margin-top: 12px;
    }
    .pm2-cart__item {
        padding: 12px;
        background: #fff;
        border: 1px solid #e5e7eb;
        border-radius: 8px;
    }
    .pm2-cart__item-top {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 10px;
    }
    .pm2-cart__item-name {
        margin: 0;
        font-size: 13px;
        font-weight: 700;
        color: #1a1a2e;
        line-height: 1.45;
    }
    .pm2-cart__item-meta {
        margin-top: 4px;
        font-size: 11px;
        color: #6b7280;
        line-height: 1.45;
    }
    .pm2-cart__item-remove {
        border: none;
        background: none;
        padding: 0;
        font-size: 12px;
        font-weight: 700;
        color: #d1401e;
        cursor: pointer;
        white-space: nowrap;
    }
    .pm2-cart__item-remove:hover {
        color: #b13217;
    }
    .pm2-cart__item-controls {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        margin-top: 10px;
    }
    .pm2-cart__qty {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 11px;
        font-weight: 700;
        color: #6b7280;
        text-transform: uppercase;
        letter-spacing: 0.04em;
    }
    .pm2-cart__qty input {
        width: 66px;
        min-width: 66px;
        height: 36px;
        padding: 0 10px;
        border: 1px solid #d1d5db;
        border-radius: 6px;
        font-size: 13px;
        font-weight: 700;
        color: #1a1a2e;
        background: #fff;
    }
    .pm2-cart__unit-price {
        font-size: 12px;
        color: #6b7280;
        text-align: right;
    }
    .pm2-cart__lines {
        display: grid;
        gap: 6px;
        margin-top: 10px;
    }
    .pm2-cart__line {
        display: flex;
        align-items: baseline;
        justify-content: space-between;
        gap: 10px;
        font-size: 12px;
        color: #4b5563;
        line-height: 1.5;
    }
    .pm2-cart__line strong {
        color: #1a1a2e;
        font-weight: 800;
        text-align: right;
    }
    .pm2-cart__line--discount strong {
        color: #1f5fbf;
    }
    .pm2-cart__line--final strong {
        color: #0f7a2b;
    }
    .pm2-cart__totals {
        margin-top: 14px;
        padding: 14px;
        background: #f9fafb;
        border: 1px solid #e5e7eb;
        border-radius: 8px;
    }
    .pm2-cart__totals-head {
        margin: 0 0 10px;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        color: #6b7280;
    }
    .pm2-cart__total-row {
        display: flex;
        align-items: baseline;
        justify-content: space-between;
        gap: 12px;
        font-size: 13px;
        color: #4b5563;
        line-height: 1.5;
    }
    .pm2-cart__total-row + .pm2-cart__total-row {
        margin-top: 6px;
    }
    .pm2-cart__total-row strong {
        color: #1a1a2e;
        font-weight: 800;
        text-align: right;
    }
    .pm2-cart__total-row--saving strong {
        color: #1f5fbf;
    }
    .pm2-cart__total-row--final {
        padding-top: 8px;
        margin-top: 8px;
        border-top: 1px solid #e5e7eb;
        font-size: 14px;
        font-weight: 700;
    }
    .pm2-cart__total-row--final strong {
        color: #0f7a2b;
        font-size: 16px;
    }
    .pm2-order-form {
        display: grid;
        gap: 12px;
        padding: 14px;
        background: #f9fafb;
        border: 1px solid #e5e7eb;
        border-radius: 8px;
    }
    .pm2-order-form__hint {
        margin: 0;
        font-size: 12px;
        color: #6b7280;
        line-height: 1.55;
    }
    .pm2-order-form__field {
        display: grid;
        gap: 6px;
    }
    .pm2-order-form__field label {
        font-size: 12px;
        font-weight: 700;
        color: #374151;
    }
    .pm2-order-form__required {
        color: #d62828;
    }
    .pm2-order-form__field input {
        width: 100%;
        height: 42px;
        padding: 0 12px;
        border: 1px solid #d1d5db;
        border-radius: 6px;
        font-size: 14px;
        color: #1a1a2e;
        background: #fff;
    }
    .pm2-order-form__field input:focus {
        outline: none;
        border-color: #3b5998;
        box-shadow: 0 0 0 3px rgba(59, 89, 152, 0.12);
    }
    .pm2-order-form__submit {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        min-height: 46px;
        border: none;
        border-radius: 8px;
        background: linear-gradient(180deg, #5a7bc4 0%, #3b5998 100%);
        color: #fff;
        font-size: 13px;
        font-weight: 800;
        letter-spacing: 0.03em;
        cursor: pointer;
        transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
        box-shadow: 0 2px 8px rgba(59, 89, 152, 0.2);
    }
    .pm2-order-form__submit:hover:not(:disabled) {
        background: linear-gradient(180deg, #6b8bd5 0%, #4a6aa8 100%);
        transform: translateY(-1px);
    }
    .pm2-order-form__submit:disabled {
        cursor: not-allowed;
        opacity: 0.55;
        box-shadow: none;
    }
    .pm2-order-form__status {
        margin: 0;
        font-size: 12px;
        line-height: 1.5;
    }
    .pm2-order-form__status.is-error {
        color: #b91c1c;
    }
    .pm2-order-form__status.is-success {
        color: #0f7a2b;
    }

    /* Product listing */
    .pm2-listing__bar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 14px;
        padding: 10px 16px;
        background: #fff;
        border: 1px solid #e5e7eb;
        border-radius: 8px;
        font-size: 13px;
        color: #6b7280;
        font-weight: 600;
    }
    .pm2-listing__bar span { color: #1a1a2e; font-weight: 800; }

    .pm2-row-card {
        display: grid;
        grid-template-columns: 165px minmax(0, 1fr) 240px;
        gap: 0;
        align-items: stretch;
        background: #fff;
        border: 1px solid #e5e7eb;
        border-radius: 10px;
        overflow: hidden;
        margin-bottom: 8px;
        transition: border-color 0.15s ease, box-shadow 0.15s ease;
    }
    .pm2-row-card:hover {
        border-color: #c8d3e0;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    }
    .pm2-row-card[hidden] { display: none !important; }

    .pm2-row-card__img {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 165px;
        min-height: 100%;
        padding: 18px;
        background: #f8f9fb;
        border-right: 1px solid #eef0f4;
    }
    .pm2-row-card__img img {
        width: 100%;
        height: auto;
        max-height: 130px;
        object-fit: contain;
    }

    .pm2-row-card__info {
        display: flex;
        flex-direction: column;
        gap: 6px;
        min-width: 0;
        padding: 14px 16px 14px 14px;
    }
    .pm2-row-card__tags {
        display: flex;
        flex-wrap: wrap;
        gap: 4px;
    }
    .pm2-row-card__tag {
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 0.03em;
        text-transform: uppercase;
        padding: 3px 8px;
        border-radius: 4px;
        background: #eef4ff;
        color: #2a6bc5;
    }
    .pm2-row-card__tag--gift {
        background: #fff3ec;
        color: #d4622a;
    }
    .pm2-row-card__name {
        margin: 0;
        font-size: 14px;
        font-weight: 700;
        color: #1e293b;
        line-height: 1.35;
    }
    .pm2-row-card__name a {
        color: inherit;
        text-decoration: none;
        transition: color .2s ease;
    }
    .pm2-row-card__name a:hover {
        color: #2a6bc5;
    }
    .pm2-row-card__desc {
        font-size: 12px;
        font-weight: 500;
        color: #64748b;
        line-height: 1.5;
        margin-top: 4px;
        padding-top: 6px;
        border-top: 1px solid #f1f3f6;
    }
    .pm2-row-card__specs {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 4px 12px;
        margin-top: 2px;
    }
    .pm2-row-card__spec {
        display: flex;
        flex-direction: column;
        gap: 1px;
        padding: 4px 0;
        border-bottom: 1px solid #f3f4f6;
    }
    .pm2-row-card__spec:last-child {
        border-bottom: none;
    }
    .pm2-row-card__spec-label {
        font-size: 10px;
        font-weight: 600;
        color: #94a3b8;
        letter-spacing: 0.03em;
        text-transform: uppercase;
        line-height: 1.2;
    }
    .pm2-row-card__spec-value {
        font-size: 12px;
        font-weight: 600;
        color: #334155;
        line-height: 1.35;
    }

    /* Card offer block */
    .pm2-row-card__offer {
        display: flex;
        flex-direction: column;
        gap: 0;
        padding: 14px 16px 14px 12px;
        border-left: 1px solid #eef0f4;
        background: #fafbfc;
        justify-content: center;
    }
    .pm2-row-card__price {
        text-align: center;
        padding-bottom: 10px;
        border-bottom: 1px solid #eef0f4;
        margin-bottom: 10px;
    }
    .pm2-row-card__price-label {
        font-size: 10px;
        font-weight: 600;
        color: #94a3b8;
        letter-spacing: 0.06em;
        text-transform: uppercase;
    }
    .pm2-row-card__price-value {
        font-size: 22px;
        font-weight: 800;
        color: #1e293b;
        line-height: 1.15;
    }
    .pm2-row-card__discounts {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 4px;
        margin-bottom: 12px;
    }
    .pm2-row-card__discount {
        display: grid;
        gap: 2px;
        justify-items: center;
        padding: 5px 4px;
        background: #fff;
        border-radius: 5px;
        border: 1px solid #e8ecf1;
    }
    .pm2-row-card__discount-rate {
        font-size: 11px;
        font-weight: 800;
        color: #2a6bc5;
        letter-spacing: 0;
    }
    .pm2-row-card__discount-price {
        font-size: 11px;
        font-weight: 700;
        color: #1e293b;
        line-height: 1.25;
        text-align: center;
    }
    .pm2-row-card__order {
        display: grid;
        grid-template-columns: 56px 1fr;
        gap: 8px;
        align-items: end;
    }
    .pm2-row-card__qty {
        display: grid;
        gap: 3px;
    }
    .pm2-row-card__qty-label {
        font-size: 9px;
        font-weight: 700;
        color: #94a3b8;
        letter-spacing: 0.06em;
        text-transform: uppercase;
    }
    .pm2-row-card__qty input {
        width: 100%;
        height: 34px;
        padding: 0 6px;
        border: 1px solid #d1d5db;
        border-radius: 6px;
        font-size: 14px;
        font-weight: 700;
        color: #1e293b;
        background: #fff;
        text-align: center;
    }
    .pm2-row-card__qty input:focus {
        outline: none;
        border-color: #3b5998;
        box-shadow: 0 0 0 3px rgba(59, 89, 152, 0.1);
    }
    .pm2-row-card__add {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        min-height: 34px;
        padding: 0 12px;
        border: none;
        border-radius: 7px;
        background: linear-gradient(180deg, #5a7bc4 0%, #3b5998 100%);
        color: #fff;
        font-size: 11px;
        font-weight: 800;
        letter-spacing: 0.02em;
        cursor: pointer;
        transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
        box-shadow: 0 1px 4px rgba(59, 89, 152, 0.2);
    }
    .pm2-row-card__add:hover {
        background: linear-gradient(180deg, #6b8bd5 0%, #4a6aa8 100%);
        transform: translateY(-1px);
        box-shadow: 0 2px 8px rgba(59, 89, 152, 0.28);
    }
    .pm2-row-card__add.is-added {
        background: linear-gradient(180deg, #6b8bd5 0%, #4a6aa8 100%);
        box-shadow: 0 2px 8px rgba(59, 89, 152, 0.25);
    }
    .pm2-row-card__cta {
        display: block;
        margin-top: 8px;
    }
    .pm2-row-card__cta a {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        width: 100%;
        padding: 9px 14px;
        background: linear-gradient(180deg, #5a7bc4 0%, #3b5998 100%);
        color: #fff;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.02em;
        text-decoration: none;
        border-radius: 7px;
        border: none;
        box-shadow: 0 1px 4px rgba(59, 89, 152, 0.18);
        transition: background 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
        white-space: nowrap;
    }
    .pm2-row-card__cta a:hover {
        background: linear-gradient(180deg, #6b8bd5 0%, #4a6aa8 100%);
        box-shadow: 0 2px 8px rgba(59, 89, 152, 0.25);
        transform: translateY(-1px);
    }
    .pm2-row-card__cta-arrow {
        width: 13px;
        height: 9px;
        flex-shrink: 0;
        transition: transform 0.15s ease;
    }
    .pm2-row-card__cta a:hover .pm2-row-card__cta-arrow {
        transform: translateX(2px);
    }

    /* Catalog group */
    .pm2-catalog-group {
        margin-bottom: 32px;
    }
    .pm2-catalog-group:last-child {
        margin-bottom: 0;
    }
    .pm2-catalog-group__head {
        display: flex;
        align-items: baseline;
        justify-content: space-between;
        gap: 12px;
        padding: 0 0 10px;
        border-bottom: 2px solid #1a1a2e;
        margin-bottom: 10px;
    }
    .pm2-catalog-group__title {
        margin: 0;
        font-size: 17px;
        font-weight: 800;
        color: #1a1a2e;
    }
    .pm2-catalog-group__count {
        font-size: 11px;
        font-weight: 700;
        color: #9ca3af;
        letter-spacing: 0.06em;
        text-transform: uppercase;
    }
    .pm2-catalog-group__footer {
        padding-top: 10px;
    }
    .pm2-catalog__more {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        min-height: 38px;
        padding: 0 18px;
        border: none;
        background: linear-gradient(180deg, #5a7bc4 0%, #3b5998 100%);
        color: #fff;
        font-family: inherit;
        font-size: 12px;
        font-weight: 800;
        letter-spacing: 0.04em;
        cursor: pointer;
        border-radius: 7px;
        box-shadow: 0 1px 4px rgba(59, 89, 152, 0.18);
        transition: background 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
    }
    .pm2-catalog__more:hover {
        background: linear-gradient(180deg, #6b8bd5 0%, #4a6aa8 100%);
        box-shadow: 0 2px 8px rgba(59, 89, 152, 0.28);
        transform: translateY(-1px);
    }

    /* ===== DETAILS SECTION ===== */
    .pm2-details {
        display: flex;
        gap: 20px;
        align-items: flex-start;
    }
    .pm2-details > .pm2-nav {
        flex: 0 0 220px;
        width: 220px;
    }
    .pm2-details > .pm2-content {
        flex: 1 1 auto;
        min-width: 0;
    }
    .pm2-nav {
        background: #fff;
        border: 1px solid #e5e7eb;
        border-radius: 8px;
    }
    .pm2-nav__head {
        padding: 14px 16px;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        color: #6b7280;
        background: #f9fafb;
        border-bottom: 1px solid #e5e7eb;
    }
    .pm2-nav__list {
        list-style: none;
        margin: 0;
        padding: 6px 0;
    }
    .pm2-nav__link {
        display: block;
        padding: 9px 16px;
        font-size: 13px;
        font-weight: 600;
        color: #374151;
        text-decoration: none;
        transition: background 0.15s ease;
    }
    .pm2-nav__link:hover {
        background: #f3f4f6;
    }

    .pm2-content {
        display: grid;
        gap: 16px;
    }
    .pm2-block {
        background: #fff;
        border: 1px solid #e5e7eb;
        border-radius: 8px;
        padding: 24px;
    }
    .pm2-block h3 {
        margin: 0 0 12px;
        font-size: 17px;
        font-weight: 700;
        color: #1a1a2e;
    }
    .pm2-block p {
        margin: 0 0 10px;
        font-size: 13px;
        color: #4b5563;
        line-height: 1.65;
    }
    .pm2-block p:last-child { margin-bottom: 0; }
    .pm2-block ul {
        margin: 10px 0 0 18px;
        padding: 0;
    }
    .pm2-block li {
        font-size: 13px;
        color: #4b5563;
        line-height: 1.6;
        margin-bottom: 6px;
    }

    /* ===== EXAMPLES ===== */
    .pm2-examples {
        margin-top: 20px;
    }
    .pm2-examples__title {
        margin: 0 0 8px;
        font-size: 20px;
        font-weight: 800;
        color: #1a1a2e;
    }
    .pm2-examples__note {
        margin: 0 0 16px;
        font-size: 13px;
        color: #6b7280;
        line-height: 1.5;
    }
    .pm2-examples__grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 12px;
    }
    .pm2-example {
        background: #fff;
        border: 1px solid #e5e7eb;
        border-radius: 8px;
        padding: 18px;
    }
    .pm2-example__num {
        display: inline-block;
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: #fff;
        background: linear-gradient(180deg, #5a7bc4 0%, #3b5998 100%);
        padding: 3px 10px;
        border-radius: 3px;
        margin-bottom: 10px;
    }
    .pm2-example h4 {
        margin: 0 0 8px;
        font-size: 14px;
        font-weight: 700;
        color: #1a1a2e;
        line-height: 1.3;
    }
    .pm2-example p {
        margin: 0 0 8px;
        font-size: 12px;
        color: #4b5563;
        line-height: 1.6;
    }
    .pm2-example p:last-child { margin-bottom: 0; }
    .pm2-example__calc {
        margin-top: 10px;
        padding: 10px 12px;
        background: #f9fafb;
        border-radius: 6px;
        font-size: 12px;
        color: #374151;
        line-height: 1.7;
    }

    /* ===== TERMS ===== */
    .pm2-terms-section {
        margin-top: 40px;
        background: #fff;
        border: 1px solid #e5e7eb;
        border-radius: 8px;
        padding: 36px 40px;
        color: #374151;
    }
    .pm2-terms-section .pm2-section__title {
        color: #1a1a2e;
    }
    .pm2-terms-section .pm2-section__note {
        color: #6b7280;
    }
    .pm2-terms-section .pm2-section__head {
        border-bottom-color: #e5e7eb;
    }
    .pm2-terms {
        list-style: none;
        margin: 0;
        padding: 0;
        display: grid;
        gap: 8px;
    }
    .pm2-terms li {
        position: relative;
        padding-left: 20px;
        font-size: 13px;
        line-height: 1.6;
        color: #4b5563;
    }
    .pm2-terms li::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0.7em;
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: #3b5998;
    }

    /* ===== STICKY ORDER PANEL ===== */
    .pm2-sticky-panel {
        position: fixed;
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-12px);
        transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
        pointer-events: none;
    }
    .pm2-sticky-panel.is-visible {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }
    /* Desktop: sticky bar positioned in the content area (right of sidebar) */
    .pm2-sticky-panel--desktop {
        top: calc(var(--ui-v2-header-height, 68px) - var(--ui-v2-content-offset, 8px) - 1px);
        left: 0;
        width: 0;
        display: none;
        pointer-events: none;
    }
    .pm2-sticky-panel--desktop.is-visible {
        display: block;
    }
    .pm2-sticky-panel__inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        width: 100%;
        padding: 8px 14px 8px 10px;
        background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
        border: 1px solid rgba(209, 213, 219, 0.96);
        border-top: none;
        box-shadow: 0 18px 34px rgba(15, 23, 42, 0.16), 0 8px 18px rgba(15, 23, 42, 0.10);
        border-bottom: 2px solid #d7dde6;
        border-radius: 0 0 10px 10px;
        min-height: 46px;
        pointer-events: auto;
    }
    .pm2-sticky-panel__left {
        display: flex;
        align-items: center;
        gap: 10px;
        cursor: pointer;
    }
    .pm2-sticky-panel__icon {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        flex-shrink: 0;
        background: #f3f4f6;
        border-radius: 8px;
    }
    .pm2-sticky-panel__icon svg {
        width: 18px;
        height: 18px;
        color: #1a1a2e;
    }
    .pm2-sticky-panel__badge {
        position: absolute;
        top: -4px;
        right: -6px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 17px;
        height: 17px;
        padding: 0 4px;
        border-radius: 9px;
        background: #e64c25;
        color: #fff;
        font-size: 10px;
        font-weight: 800;
        line-height: 1;
    }
    .pm2-sticky-panel__badge:empty,
    .pm2-sticky-panel__badge[data-count="0"] {
        display: none;
    }
    .pm2-sticky-panel__info {
        display: flex;
        align-items: center;
        gap: 10px;
        min-width: 0;
    }
    .pm2-sticky-panel__items-label {
        font-size: 12px;
        color: #6b7280;
        font-weight: 600;
        white-space: nowrap;
    }
    .pm2-sticky-panel__amount {
        font-size: 13px;
        font-weight: 700;
        color: #1a1a2e;
        white-space: nowrap;
    }
    .pm2-sticky-panel__amount span {
        color: #1f5fbf;
    }
    .pm2-sticky-panel__saving {
        font-size: 13px;
        font-weight: 700;
        color: #1a1a2e;
        white-space: nowrap;
    }
    .pm2-sticky-panel__saving span {
        color: #1f5fbf;
    }
    .pm2-sticky-panel__divider {
        width: 1px;
        height: 18px;
        background: #e5e7eb;
        flex-shrink: 0;
    }
    .pm2-sticky-panel__final {
        font-size: 12px;
        color: #4b5563;
        white-space: nowrap;
    }
    .pm2-sticky-panel__final strong {
        color: #0f7a2b;
        font-weight: 800;
    }
    .pm2-sticky-panel__btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 7px 18px;
        border: none;
        border-radius: 7px;
        background: linear-gradient(180deg, #5a7bc4 0%, #3b5998 100%);
        color: #fff;
        font-size: 12px;
        font-weight: 800;
        letter-spacing: 0.02em;
        cursor: pointer;
        text-decoration: none;
        box-shadow: 0 1px 4px rgba(59, 89, 152, 0.2);
        transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
        white-space: nowrap;
        flex-shrink: 0;
    }
    .pm2-sticky-panel__btn:hover {
        background: linear-gradient(180deg, #6b8bd5 0%, #4a6aa8 100%);
        transform: translateY(-1px);
        box-shadow: 0 2px 8px rgba(59, 89, 152, 0.28);
    }

    /* Mobile: sticky to bottom */
    .pm2-sticky-panel--mobile {
        display: none;
        bottom: 0;
        left: 0;
        right: 0;
    }
    .pm2-sticky-panel--mobile.is-visible {
        display: block;
    }
    .pm2-sticky-panel__inner--mobile {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        padding: 10px 16px;
        padding-bottom: max(10px, env(safe-area-inset-bottom));
        background: rgba(255, 255, 255, 0.96);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        box-shadow: 0 -2px 16px rgba(0, 0, 0, 0.12);
        border-radius: 12px 12px 0 0;
        border-top: 2px solid #e5e7eb;
        min-height: 56px;
    }
    .pm2-sticky-panel__mobile-left {
        display: flex;
        align-items: center;
        gap: 10px;
        flex: 1 1 auto;
        min-width: 0;
        cursor: pointer;
    }
    .pm2-sticky-panel__mobile-info {
        display: flex;
        flex-direction: column;
        gap: 2px;
        min-width: 0;
    }
    .pm2-sticky-panel__mobile-saving {
        font-size: 13px;
        font-weight: 700;
        color: #1a1a2e;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .pm2-sticky-panel__mobile-saving span {
        color: #1f5fbf;
    }
    .pm2-sticky-panel__mobile-items {
        font-size: 11px;
        color: #6b7280;
        font-weight: 600;
        white-space: nowrap;
    }
    .pm2-sticky-panel__btn--mobile {
        flex-shrink: 0;
        padding: 10px 18px;
        font-size: 12px;
    }

    @media (min-width: 1024px) {
        .pm2-sticky-panel--mobile,
        .pm2-sticky-panel--mobile.is-visible {
            display: none !important;
        }
    }

    /* ===== RESPONSIVE: tablets ===== */
    @media (max-width: 1023.98px) {
        .pm2-sticky-panel--desktop,
        .pm2-sticky-panel--desktop.is-visible {
            display: none !important;
        }
        .pm2-banner { padding: 36px 28px 32px; }
        .pm2-banner h1 { font-size: 30px; }

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

        .pm2-products {
            flex-direction: column;
        }
        .pm2-products > .pm2-sidebar {
            border-radius: 8px;
            width: 100%;
            flex: none;
        }
        .pm2-sidebar__list {
            display: flex;
            flex-wrap: wrap;
            padding: 10px;
            gap: 8px;
        }
        .pm2-sidebar__item { flex-shrink: 0; }
        .pm2-sidebar__btn {
            padding: 10px 14px;
            white-space: nowrap;
            border: 1px solid #e5e7eb;
            border-radius: 6px;
        }
        .pm2-sidebar__gift {
            border-top: none;
            margin-top: 0;
            padding-top: 0;
        }

        .pm2-details {
            flex-direction: column;
        }
        .pm2-details > .pm2-nav {
            width: 100%;
            flex: none;
        }
        .pm2-order-panel__layout {
            grid-template-columns: 1fr;
        }

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

    /* ===== RESPONSIVE: mobile ===== */
    @media (max-width: 639.98px) {
        .pm2-page { padding: 80px 0 40px; }

        .pm2-banner { padding: 28px 20px 24px; }
        .pm2-banner h1 { font-size: 24px; }
        .pm2-banner__desc { font-size: 14px; }

        .pm2-container { padding: 0 14px; }

        .pm2-section { margin-top: 32px; }
        .pm2-section__head {
            flex-direction: column;
            align-items: flex-start;
            gap: 6px;
        }
        .pm2-section__title { font-size: 20px; }
        .pm2-section__note { font-size: 12px; }

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

        .pm2-ladder__step { flex: 0 0 56px; font-size: 12px; }
        .pm2-ladder__body { padding: 14px 14px; }
        .pm2-ladder__discount { font-size: 18px; }
        .pm2-ladder__text { font-size: 12px; }

        .pm2-row-card {
            grid-template-columns: 90px minmax(0, 1fr);
            gap: 0;
            padding: 0;
        }
        .pm2-row-card__img {
            width: 90px;
            min-height: auto;
            padding: 12px;
            border-right: 1px solid #eef0f4;
            border-bottom: none;
        }
        .pm2-row-card__img img {
            max-height: 80px;
        }
        .pm2-row-card__info {
            padding: 12px;
        }
        .pm2-row-card__offer {
            grid-column: 1 / -1;
            padding: 12px;
            border-left: none;
            border-top: 1px solid #eef0f4;
            background: #fafbfc;
        }
        .pm2-row-card__discounts {
            grid-template-columns: repeat(3, minmax(0, 1fr));
        }
        .pm2-row-card__price {
            text-align: left;
        }
        .pm2-row-card__cta {
            margin-top: 6px;
        }
        .pm2-cart__item-controls {
            flex-direction: column;
            align-items: stretch;
        }
        .pm2-cart__qty {
            justify-content: space-between;
        }
        .pm2-cart__unit-price {
            text-align: left;
        }
        .pm2-order-panel__head {
            flex-direction: column;
            align-items: flex-start;
        }

        .pm2-schema {
            grid-template-columns: 1fr;
        }

        .pm2-examples__grid {
            grid-template-columns: 1fr;
        }

        .pm2-terms-section { padding: 28px 20px; }
    }
