﻿*, *::before, *::after {
    box-sizing: border-box;
}
:root {
    --blue: #264EFF;
    --blue-light: #4A6EFF;
    --blue-dark: #1A3DD9;
    --blue-bg: #EEF1FF;
    --orange: #F7A722;
    --orange-light: #FFB84A;
    --green: #264EFF;
    --green-bg: #ECFDF5;
    --green-dark: #0f172a;
    --ink: #0E1320;
    --ink-light: #1F2937;
    --muted: #6B7280;
    --hint: #9CA3AF;
    --bg: #F3F4FB;
    --bg-light: #FAFBFF;
    --surface: #FFFFFF;
    --line: #E5E7F0;
    --line-light: #F0F2F5;
    --radius-xl: 24px;
    --radius-lg: 18px;
    --radius-md: 12px;
    --radius-sm: 8px;
    --radius-pill: 999px;
    --shadow-xs: 0 1px 3px rgba(15,23,42,.05);
    --shadow-sm: 0 4px 12px rgba(15,23,42,.07);
    --shadow-md: 0 8px 24px rgba(15,23,42,.11);
    --shadow-lg: 0 20px 48px rgba(15,23,42,.14);
    --shadow-blue: 0 8px 24px rgba(38,78,255,.14);
    --shadow-green: 0 8px 24px rgba(16,185,129,.14);
    --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --wrap: 1280px;
}
.mp-page {
    background: linear-gradient(160deg, #F0F4FF 0%, #F8F9FC 40%, var(--bg) 100%);
    font-family: "Cairo", "Inter", sans-serif;
    color: var(--ink);
    min-height: 100vh;
}
.mp-wrap {
    max-width: var(--wrap);
    margin: 0 auto;
    padding: 0 20px 100px;
}
/* ── Scroll Progress ── */
.mp-scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(16,185,129,.12);
    z-index: 1001;
    pointer-events: none;
}
.mp-scroll-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--green), var(--blue));
    width: 0%;
    transition: width 0.1s ease-out;
}
/* ── Announcement Bar ── */
.mp-announce {
    background: var(--ink);
    color: #fff;
    padding: 9px 20px;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.mp-announce-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
    animation: mpPulse 2s infinite;
    flex-shrink: 0;
}
@keyframes mpPulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: .5;
        transform: scale(1.4);
    }
}
.mp-announce a {
    color: var(--orange-light);
    font-weight: 800;
    text-decoration: underline;
}
/* ── Breadcrumb ── */
.mp-breadcrumb-wrap {
    max-width: var(--wrap);
    margin: 14px auto 0;
    padding: 0 20px;
    font-size: 12px;
    color: var(--muted);
}
.mp-breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
}
    .mp-breadcrumb a {
        color: var(--muted);
        font-weight: 600;
        text-decoration: none;
        transition: var(--transition);
    }
        .mp-breadcrumb a:hover {
            color: var(--blue);
        }
/* ── Buttons ── */
.mp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border-radius: var(--radius-pill);
    border: 1.5px solid transparent;
    padding: 11px 22px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    text-decoration: none;
    font-family: inherit;
}
.mp-btn-sm {
    padding: 8px 16px;
    font-size: 13px;
}
.mp-btn-xs {
    padding: 6px 12px;
    font-size: 12px;
}
.mp-btn-primary {
    background: linear-gradient(135deg, var(--blue), var(--blue-light));
    color: #fff;
    border-color: var(--blue);
    box-shadow: 0 4px 14px rgba(38,78,255,.28);
}
    .mp-btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 22px rgba(38,78,255,.38);
        color: #fff;
    }
.mp-btn-green {
    background: linear-gradient(135deg, var(--green), #264eff);
    color: #fff;
    border-color: var(--green);
    box-shadow: 0 4px 14px rgba(16,185,129,.28);
}
    .mp-btn-green:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 22px rgba(16,185,129,.38);
        color: #fff;
    }
.mp-btn-outline {
    background: #fff;
    color: var(--ink);
    border-color: var(--line);
    box-shadow: var(--shadow-xs);
}
    .mp-btn-outline:hover {
        border-color: var(--blue);
        color: var(--blue);
        transform: translateY(-1px);
    }
/* ── Hero ── */
.mp-hero {
    padding-top: 32px;
    margin-bottom: 28px;
}
.mp-hero-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 20px;
    align-items: start;
}
/* Left: main hero card */
.mp-hero-main {
    position: relative;
    background: linear-gradient(145deg, #FFFFFF 0%, #F8FAFF 100%);
    border-radius: var(--radius-xl);
    border: 1.5px solid var(--line-light);
    box-shadow: var(--shadow-lg);
    padding: 40px 40px 36px;
    overflow: hidden;
    animation: mpFadeUp 0.6s ease-out;
}
@keyframes mpFadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Decorative corner shapes */
.mp-hero-main::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--green) 0 40%, var(--blue) 40% 80%, var(--orange) 80% 100%);
}
.mp-hero-main::after {
    content: "";
    position: absolute;
    top: -60px;
    right: -60px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 22px solid rgba(16,185,129,.06);
    pointer-events: none;
}
.mp-hero-eyebrow {
    font-size: 11px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--green-dark);
    font-weight: 900;
    margin-bottom: 10px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
}
    .mp-hero-eyebrow::before {
        content: "";
        width: 8px;
        height: 8px;
        border-radius: 2px;
        background: var(--green);
        transform: rotate(45deg);
    }
.mp-hero-title {
    font-size: clamp(26px, 3.8vw, 38px);
    line-height: 1.18;
    letter-spacing: -0.03em;
    margin-bottom: 12px;
    color: var(--ink);
    font-weight: 900;
    position: relative;
    z-index: 1;
}
.mp-hero-desc {
    font-size: 14px;
    color: var(--ink-light);
    line-height: 1.8;
    max-width: 60ch;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}
.mp-hero-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}
/* Right: feature cards stack */
.mp-hero-sidebar {
    display: flex;
    flex-direction: column;
    gap: 12px;
    animation: mpFadeUp 0.8s ease-out;
}
.mp-feature-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    border: 1.5px solid var(--line-light);
    box-shadow: var(--shadow-xs);
    padding: 16px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: var(--transition);
}
    .mp-feature-card:hover {
        border-color: rgba(38,78,255,.2);
        box-shadow: var(--shadow-sm);
        transform: translateX(@(isRtl ? "4px" : "-4px"));
    }
.mp-feature-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}
    .mp-feature-icon.green {
        background: var(--green-bg);
        color: var(--green-dark);
    }
    .mp-feature-icon.blue {
        background: var(--blue-bg);
        color: var(--blue);
    }
    .mp-feature-icon.orange {
        background: #FFF8EB;
        color: #ffb84a;
    }
.mp-feature-title {
    font-size: 13px;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 2px;
}
.mp-feature-sub {
    font-size: 12px;
    color: var(--muted);
    font-weight: 600;
}
/* ── Stats Strip ── */
.mp-stats-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-bottom: 28px;
}
.mp-stat-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    border: 1.5px solid var(--line-light);
    box-shadow: var(--shadow-xs);
    padding: 20px 18px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
    .mp-stat-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
    }
    .mp-stat-card.green::before {
        background: var(--green);
    }
    .mp-stat-card.blue::before {
        background: var(--blue);
    }
    .mp-stat-card.orange::before {
        background: var(--orange);
    }
    .mp-stat-card.ink::before {
        background: var(--ink);
    }
    .mp-stat-card:hover {
        box-shadow: var(--shadow-sm);
        transform: translateY(-2px);
    }
.mp-stat-num {
    display: block;
    font-size: clamp(26px, 3.5vw, 40px);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 5px;
}
.mp-stat-card.green .mp-stat-num {
    color: var(--green-dark);
}
.mp-stat-card.blue .mp-stat-num {
    color: var(--blue);
}
.mp-stat-card.orange .mp-stat-num {
    color: #ffb84a;
}
.mp-stat-card.ink .mp-stat-num {
    color: var(--ink);
}
.mp-stat-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .07em;
}
/* ── Filter Bar ── */
.mp-filter-bar {
    background: var(--surface);
    border: 1.5px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 18px 22px;
    display: flex;
    align-items: flex-end;
    gap: 14px;
    flex-wrap: wrap;
    box-shadow: var(--shadow-sm);
    margin-bottom: 24px;
    position: relative;
}
    /* left accent */
    .mp-filter-bar::before {
        content: "";
        position: absolute;
        top: 16px;
        bottom: 16px;
        left: 0;
        width: 4px;
        border-radius: 0 4px 4px 0;
        background: linear-gradient(180deg, var(--green), var(--blue));
    }
[dir="rtl"] .mp-filter-bar::before {
    left: auto;
    right: 0;
    border-radius: 4px 0 0 4px;
}
.mp-filter-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1 1 170px;
    min-width: 150px;
}
.mp-filter-label {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 5px;
}
    .mp-filter-label i {
        font-size: 11px;
        color: var(--green);
    }
.mp-filter-select {
    height: 44px;
    border: 1.5px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--bg-light);
    padding: 0 14px;
    font-size: 13px;
    font-weight: 600;
    color: var(--ink);
    font-family: inherit;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236B7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 32px;
}
[dir="rtl"] .mp-filter-select {
    background-position: left 12px center;
    padding-right: 14px;
    padding-left: 32px;
}
.mp-filter-select:hover {
    border-color: var(--green);
    background-color: #fff;
}
.mp-filter-select:focus {
    outline: none;
    border-color: var(--green);
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(16,185,129,.12);
}
.mp-filter-apply {
    height: 44px;
    padding: 0 22px;
    border: none;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--green), #264eff);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 7px;
    box-shadow: 0 4px 12px rgba(16,185,129,.28);
    transition: var(--transition);
    white-space: nowrap;
    font-family: inherit;
    flex-shrink: 0;
}
    .mp-filter-apply:hover {
        transform: translateY(-1px);
        box-shadow: 0 6px 18px rgba(16,185,129,.38);
    }
/* ── Toolbar ── */
.mp-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 22px;
    gap: 12px;
    flex-wrap: wrap;
    padding: 14px 18px;
    background: var(--surface);
    border-radius: var(--radius-md);
    border: 1.5px solid var(--line);
    box-shadow: var(--shadow-xs);
}
.mp-results-count {
    font-size: 14px;
    font-weight: 700;
    color: var(--ink);
    display: flex;
    align-items: center;
    gap: 7px;
}
    .mp-results-count strong {
        font-size: 24px;
        color: var(--green-dark);
        font-weight: 900;
    }
    .mp-results-count i {
        color: var(--green);
        font-size: 15px;
    }
/* ── Product Grid ── */
.mp-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}
/* ── Product Card ── */
.mp-product-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1.5px solid var(--line-light);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
    cursor: pointer;
    opacity: 0;
    transform: translateY(18px);
}
    .mp-product-card.visible {
        opacity: 1;
        transform: translateY(0);
        transition: opacity 0.45s ease-out, transform 0.45s ease-out, box-shadow 0.25s ease, border-color 0.25s ease;
    }
    .mp-product-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-lg), var(--shadow-green);
        border-color: rgba(16,185,129,.25);
    }
    /* Top accent — green for products */
    .mp-product-card::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--green), #264eff);
        opacity: 0;
        transition: opacity .25s ease;
        z-index: 2;
    }
    .mp-product-card:hover::after {
        opacity: 1;
    }
/* Image area */
.mp-product-image {
    height: 230px;
    background: linear-gradient(135deg, #F0FDF4, #F8FAFC);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}
    .mp-product-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.55s ease;
    }
.mp-product-card:hover .mp-product-image img {
    transform: scale(1.06);
}
/* Overlay gradient */
.mp-product-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,.05));
    z-index: 1;
    pointer-events: none;
}
.mp-product-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--hint);
    background: linear-gradient(135deg, #F0FDF4, #F8FAFC);
}
    .mp-product-placeholder i {
        font-size: 36px;
        opacity: .35;
    }
    .mp-product-placeholder span {
        font-size: 12px;
        font-weight: 600;
    }
/* Service type tag */
.mp-service-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(8px);
    color: var(--ink);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .06em;
    padding: 4px 10px;
    border-radius: var(--radius-pill);
    border: 1px solid var(--line-light);
    box-shadow: var(--shadow-xs);
    z-index: 3;
    max-width: 140px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
[dir="rtl"] .mp-service-tag {
    left: auto;
    right: 10px;
}
/* Price badge */
.mp-price-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: linear-gradient(135deg, var(--green), #264eff);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: var(--radius-pill);
    box-shadow: 0 4px 10px rgba(16,185,129,.3);
    z-index: 3;
}
[dir="rtl"] .mp-price-badge {
    right: auto;
    left: 10px;
}
/* Card body */
.mp-product-body {
    padding: 18px 18px 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.mp-product-name {
    font-size: 16px;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 6px;
    line-height: 1.3;
    letter-spacing: -0.01em;
}
.mp-product-desc {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}
/* Specs grid */
.mp-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    margin-bottom: 14px;
}
.mp-spec-item {
    background: var(--bg-light);
    border: 1px solid var(--line-light);
    border-radius: var(--radius-sm);
    padding: 7px 10px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.mp-spec-key {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: var(--hint);
}
.mp-spec-val {
    font-size: 13px;
    font-weight: 700;
    color: var(--ink-light);
}
    .mp-spec-val.price {
        color: var(--green-dark);
        font-size: 14px;
        font-weight: 800;
    }
/* Color dots */
.mp-colors {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 14px;
}
.mp-color-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--hint);
    text-transform: uppercase;
    letter-spacing: .05em;
    margin- @(isRtl ? "left" : "right"): 4px;
}
.mp-color-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 1.5px solid rgba(0,0,0,.1);
    flex-shrink: 0;
}
/* Footer */
.mp-product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding-top: 14px;
    border-top: 1px solid var(--line-light);
}
.mp-card-cta {
    height: 36px;
    padding: 0 16px;
    background: linear-gradient(135deg, var(--green), #264eff);
    color: #fff;
    border: none;
    border-radius: var(--radius-pill);
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
    font-family: inherit;
    text-decoration: none;
    flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(16,185,129,.22);
}
    .mp-card-cta:hover {
        transform: translateY(-1px);
        box-shadow: 0 5px 14px rgba(16,185,129,.35);
        color: #fff;
    }
.mp-card-wishlist {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-light);
    border: 1.5px solid var(--line-light);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
}
    .mp-card-wishlist i {
        font-size: 14px;
        color: var(--hint);
        transition: var(--transition);
    }
    .mp-card-wishlist:hover {
        border-color: #EF4444;
        background: #FEF2F2;
    }
        .mp-card-wishlist:hover i {
            color: #EF4444;
        }
/* ── Empty State ── */
.mp-empty {
    padding: 70px 20px;
    text-align: center;
    background: var(--surface);
    border-radius: var(--radius-xl);
    border: 1.5px solid var(--line-light);
    box-shadow: var(--shadow-sm);
}
.mp-empty-icon {
    width: 80px;
    height: 80px;
    background: var(--green-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
    .mp-empty-icon i {
        font-size: 34px;
        color: var(--green-dark);
    }
.mp-empty h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 8px;
}
.mp-empty p {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 22px;
}
/* ── Pagination ── */
.mp-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 48px;
}
.mp-page-btn {
    min-width: 42px;
    height: 42px;
    border-radius: var(--radius-sm);
    border: 1.5px solid var(--line);
    background: var(--surface);
    color: var(--ink);
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: inherit;
}
    .mp-page-btn:hover:not(:disabled) {
        border-color: var(--green);
        color: var(--green-dark);
        transform: translateY(-1px);
    }
    .mp-page-btn.active {
        background: linear-gradient(135deg, var(--green), #264eff);
        color: #fff;
        border-color: var(--green);
        box-shadow: 0 4px 12px rgba(16,185,129,.28);
    }
    .mp-page-btn:disabled {
        opacity: .4;
        cursor: not-allowed;
    }
/* ── FAQ ── */
.mp-faq-section {
    margin-top: 52px;
}
.mp-faq-heading {
    font-size: 20px;
    font-weight: 900;
    color: var(--ink);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}
    .mp-faq-heading i {
        color: var(--green);
    }
.mp-faq-item {
    background: var(--surface);
    border: 1.5px solid var(--line-light);
    border-radius: var(--radius-md);
    margin-bottom: 10px;
    overflow: hidden;
    transition: var(--transition);
}
    .mp-faq-item:hover {
        border-color: rgba(16,185,129,.25);
    }
.mp-faq-trigger {
    width: 100%;
    text-align: @(isRtl ? "right" : "left");
    padding: 16px 20px;
    font-size: 14px;
    font-weight: 700;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--ink);
    font-family: inherit;
    transition: var(--transition);
    gap: 12px;
}
    .mp-faq-trigger:hover {
        background: var(--green-bg);
        color: var(--green-dark);
    }
.mp-faq-icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--green-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--green-dark);
    font-weight: 900;
    transition: var(--transition);
    flex-shrink: 0;
}
.mp-faq-trigger[aria-expanded="true"] .mp-faq-icon {
    background: var(--green);
    color: #fff;
    transform: rotate(45deg);
}
.mp-faq-panel {
    display: none;
    padding: 0 20px 18px;
    font-size: 14px;
    color: var(--ink-light);
    line-height: 1.8;
    border-top: 1px solid var(--line-light);
}
    .mp-faq-panel.open {
        display: block;
    }
/* ── CTA Banner ── */
.mp-cta-banner {
    margin-top: 40px;
    background: var(--ink);
    border-radius: var(--radius-xl);
    padding: 44px 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    flex-wrap: wrap;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-lg);
}
    .mp-cta-banner::before {
        content: "";
        position: absolute;
        top: -60px;
        right: -60px;
        width: 200px;
        height: 200px;
        border-radius: 50%;
        border: 36px solid rgba(255,255,255,.04);
        pointer-events: none;
    }
    .mp-cta-banner::after {
        content: "";
        position: absolute;
        bottom: -40px;
        left: -40px;
        width: 140px;
        height: 140px;
        border-radius: 50%;
        background: rgba(16,185,129,.08);
        pointer-events: none;
    }
.mp-cta-text {
    position: relative;
    z-index: 1;
}
    .mp-cta-text h2 {
        font-size: clamp(20px, 2.8vw, 28px);
        font-weight: 900;
        color: #fff;
        margin-bottom: 8px;
    }
    .mp-cta-text p {
        font-size: 14px;
        color: rgba(255,255,255,.7);
        max-width: 55ch;
    }
.mp-cta-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}
/* ── Footer SEO desc ── */
.mp-footer-desc {
    margin-top: 32px;
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: 28px 36px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--line-light);
    font-size: 14px;
    color: var(--muted);
    line-height: 1.9;
}
/* ── Sticky CTA ── */
.mp-sticky {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    background: linear-gradient(135deg, var(--green-dark), #065F46);
    color: #fff;
    padding: 12px 52px 12px 20px;
    box-shadow: 0 -8px 32px rgba(0,0,0,.25);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    transition: transform .2s ease-out, opacity .2s ease-out;
}
    .mp-sticky.is-hidden {
        transform: translateY(110%);
        opacity: 0;
        pointer-events: none;
    }
.mp-sticky-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255,255,255,.15);
    border: 1.5px solid rgba(255,255,255,.3);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    transition: var(--transition);
}
    .mp-sticky-close:hover {
        background: rgba(255,255,255,.25);
    }
.mp-sticky-text {
    font-size: 13px;
}
    .mp-sticky-text strong {
        color: #6EE7B7;
    }
/* ── Responsive ── */
@media (max-width: 1024px) {
    .mp-hero-layout {
        grid-template-columns: 1fr;
    }
    .mp-hero-sidebar {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }
    .mp-stats-strip {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .mp-hero-main {
        padding: 24px 20px;
    }
    .mp-product-grid {
        grid-template-columns: 1fr;
    }
    .mp-filter-bar {
        flex-direction: column;
        padding-left: 28px;
    }
    .mp-filter-field {
        flex: 1 1 100%;
    }
    .mp-filter-apply {
        width: 100%;
        justify-content: center;
    }
    .mp-hero-sidebar {
        grid-template-columns: 1fr;
    }
    .mp-cta-banner {
        text-align: center;
        justify-content: center;
    }
    .mp-footer-desc {
        padding: 22px 18px;
    }
    .mp-specs {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 480px) {
    .mp-stats-strip {
        grid-template-columns: repeat(2, 1fr);
    }
}
