.mpc-product-page {
    --navy: #132F47;
    --navy-deep: #0B2235;
    --dark: #29383D;
    --dark-soft: #1d3238;
    --white: #FFFFFF;
    --gray-light: #F2F5F7;
    --steel: #7A8792;
    --steel-light: #D9E0E5;
    --accent: #1E78B4;
    --accent-dark: #155E8F;

    font-family: 'Inter', -apple-system, sans-serif;
    color: var(--navy-deep);
}

.mpc-product-page * { box-sizing: border-box; }
.mpc-product-page { scroll-behavior: smooth; }

.mpc-mono {
    font-family: 'IBM Plex Mono', monospace;
}

/* ----- Breadcrumb ----- */
.mpc-breadcrumb {
    padding: 18px 5%;
    background: #203a42;
}

.mpc-breadcrumb-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    color: #b9c9ce;
}

.mpc-breadcrumb-inner a {
    color: #b9c9ce;
    text-decoration: none;
}

.mpc-breadcrumb-inner a:hover {
    color: var(--accent);
}

.mpc-crumb-sep {
    color: #5c7078;
}

.mpc-crumb-current {
    color: #48aeea;
    font-weight: 600;
}

/* ----- Hero ----- */
.mpc-hero {
    background: var(--dark);
    padding: 35px 5%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.mpc-hero-media {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mpc-hero-visual {
    background: #29383D;
    border-radius: 10px;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: start;
    overflow: hidden;
}

.mpc-hero-visual img {
    max-width: 100%;
    max-height:530px;
    height: 100%;
    display: block;
}

.mpc-hero-visual-placeholder {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 13px;
    color: #8f9a9d;
}

.mpc-hero-thumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.mpc-hero-thumb {
    width: 150px!!important;
    height: 150px!important;
    padding: 0px;
    border-radius: 8px;
    border: 2px solid transparent;
    background: #29383D;
    overflow: hidden;
    cursor: pointer;
    flex-shrink: 0;
    transition: border-color 0.15s ease, opacity 0.15s ease;
    opacity: 0.7;
}

.mpc-hero-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mpc-hero-thumb:hover {
    opacity: 1!important;
	background: #29383D!important; 
}

.mpc-hero-thumb.is-active {
		background: #29383D!important; 
    border-color: var(--accent)!important;
    opacity: 1!important;
}

.mpc-hero-thumb:focus-visible {
    outline: 2px solid var(--accent)!important;
    outline-offset: 2px!important;
}

.mpc-hero-badge {
    display: inline-block;
    border: 1px solid #1685c5;
    color: #57bdf2;
    border-radius: 5px;
    padding: 7px 16px;
    font-size: 11px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 600;
}

.mpc-hero-title {
    font-size: clamp(28px, 3.6vw, 42px);
    line-height: 1.12;
    font-weight: 800;
    color: var(--white);
    margin: 18px 0 14px;
}

.mpc-hero-excerpt {
    font-size: 15.5px;
    line-height: 1.75;
    color: #d7e2e5;
    max-width: 620px;
    margin: 0 0 8px;
}

.mpc-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    font-size: 12.5px;
    color: #8ea0af;
    margin: 10px 0 0;
}

.mpc-hero-meta a {
    color: #57bdf2;
    text-decoration: none;
}

.mpc-quick-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin: 28px 0 26px;
}

.mpc-qf-item {
    border-left: 1px solid #56666c;
    padding-left: 16px;
}

.mpc-qf-item b {
    display: block;
    font-size: 13px;
    color: var(--white);
    margin-bottom: 4px;
}

.mpc-qf-item span {
    font-size: 11.5px;
    color: #b9c5c9;
    line-height: 1.4;
}

.mpc-hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.mpc-btn {
    display: inline-block;
    text-align: center;
    background: var(--accent);
    color: var(--white);
    padding: 14px 24px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.02em;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.15s ease;
}

.mpc-btn:hover {
    background: var(--accent-dark);
    color: var(--white);
}

.mpc-btn-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--accent);
}

.mpc-btn-outline:hover {
    background: rgba(30, 120, 180, 0.12);
    color: var(--white);
}

/* ----- Tabs ----- */
.mpc-tabs {
    display: flex;
    gap: 34px;
    border-bottom: 1px solid var(--steel-light);
    padding: 18px 5% 0;
    font-size: 13px;
    font-weight: 700;
    overflow-x: auto;
    white-space: nowrap;
}

.mpc-tabs a {
    color: var(--steel);
    text-decoration: none;
    padding-bottom: 18px;
    border-bottom: 2px solid transparent;
}

.mpc-tabs a:hover {
    color: var(--navy);
}

.mpc-tabs a.is-active {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

/* ----- Content grid ----- */
.mpc-content-grid {
    max-width: 1180px;
    margin: 0 auto;
    padding: 45px 24px 80px;
    display: grid;
    grid-template-columns: 1fr 330px;
    gap: 55px;
}

.mpc-content-main h2 {
    font-size: 22px;
    color: var(--navy);
    margin: 0 0 16px;
}

.mpc-content {
    font-size: 14px;
    line-height: 1.8;
    color: #52666f;
}

.mpc-content p { margin: 0 0 14px; }

/* ----- Benefits ----- */
.mpc-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid var(--steel-light);
    border-radius: 5px;
    margin-top: 35px;
}

.mpc-benefit {
    padding: 22px;
    border-right: 1px solid var(--steel-light);
}

.mpc-benefit:last-child {
    border-right: 0;
}

.mpc-benefit b {
    display: block;
    font-size: 13px;
    color: var(--navy);
    margin-bottom: 6px;
}

.mpc-benefit p {
    font-size: 11.5px;
    line-height: 1.55;
    color: var(--steel);
    margin: 0;
}

/* ----- Video ----- */
.mpc-video-wrap {
    margin-top: 35px;
    background: var(--dark);
    border-radius: 10px;
    overflow: hidden;
}

.mpc-video-embed {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
}

.mpc-video-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.mpc-video-fallback {
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mpc-play-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 2px solid #49b4ec;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

/* ----- Specs sidebar ----- */
.mpc-specs-box {
    background: var(--white);
    border: 1px solid var(--steel-light);
    border-radius: 10px;
    overflow: hidden;
    align-self: start;
}

.mpc-specs-row {
    padding: 18px;
    border-bottom: 1px solid var(--steel-light);
}

.mpc-specs-row:last-child {
    border-bottom: 0;
}

.mpc-specs-row b {
    display: block;
    font-size: 13px;
    color: var(--navy);
    margin-bottom: 5px;
}

.mpc-specs-row span {
    font-size: 12px;
    color: var(--steel);
}

.mpc-product-page a:focus-visible,
.mpc-hero-thumb:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

/* ----- Responsive ----- */
@media (max-width: 850px) {
    .mpc-hero,
    .mpc-content-grid {
        grid-template-columns: 1fr;
    }
    .mpc-quick-features,
    .mpc-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .mpc-benefit {
        border-right: 0;
        border-bottom: 1px solid var(--steel-light);
    }
    .mpc-benefit:last-child { border-bottom: 0; }
}

@media (max-width: 520px) {
    .mpc-quick-features,
    .mpc-benefits-grid {
        grid-template-columns: 1fr;
    }
    .mpc-hero-title { font-size: 30px; }
}

/* ----- Reduced motion ----- */
@media (prefers-reduced-motion: reduce) {
    .mpc-product-page { scroll-behavior: auto; }
    .mpc-hero-thumb, .mpc-btn { transition: none !important; }
}
