/* ================= GLOBAL ================= */
:root {
    --main-font: "SF Pro Display", -apple-system, BlinkMacSystemFont, sans-serif;
    --fw-medium: 500;   /* Matching Image: Medium (500) */
    --fw-semibold: 600; /* Matching Image: Semi Bold (600) */
}

body {
    background: #000;
    color: #fff;
    font-family: var(--main-font); /* Global font application */
}

.pm-testimonials-heading, .rev-verified-block { display: none !important; }

/* ================= PMX HERO ================= */
.pmx-hero {
    background: url('/wp-content/uploads/2026/02/banner-shop.png') center / cover no-repeat;
    min-height: 75vh;
    display: flex;
    align-items: center;
    position: relative;
}

.pmx-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,.8), rgba(0,0,0,.35));
}

.pmx-hero-inner {
    width: 100%;
    max-width: 1350px;
    margin: auto;
    padding: 70px 20px;
    position: relative;
    z-index: 2;
}

.pmx-hero-content h1 {
    color: #fff;
    /* Matching Image: Headlines 48-64px Semi Bold */
    font-size: clamp(48px, 5.5vw, 64px); 
    font-weight: var(--fw-semibold) !important;
    line-height: 1.0;
    text-transform: uppercase;
    margin-bottom: 16px;
    font-family: var(--main-font) !important;
    font-style: italic;
}

.pmx-hero-content p {
    max-width: 420px;
    margin-bottom: 32px;
    opacity: .9;
    /* Matching Image: Body 14-16px Medium */
    font-size: 16px;
    font-weight: var(--fw-medium) !important;
    font-family: var(--main-font) !important;
}

.pmx-btn-primary {
    display: inline-block;
    background: #fff;
    color: #000;
    padding: 14px 36px;
    border-radius: 40px;
    /* Matching Image: Button 14-16px Semi Bold */
    font-size: 16px;
    font-weight: var(--fw-semibold) !important;
    text-decoration: none;
    transition: all .25s ease;
    font-family: var(--main-font) !important;
}

.pmx-btn-primary:hover {
    background: #C8FF00;
}

/* ================= PRODUCTS ================= */
.pmx-shop-products {
    padding: 20px 20px;
    display: flex;
    justify-content: center;
}

.pmx-shop-products > * {
    width: 100%;
    max-width: 1200px;
}

/* ================= WHY BAR ================= */
.pmx-why-bar {
    background: #000;
    padding: 36px 20px;
    border-top: 1px solid rgba(255,255,255,.15);
    border-bottom: 1px solid rgba(255,255,255,.15);
}

.pmx-why-bar-inner {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.pmx-why-bar-title {
    /* Matching Image: Headlines Semi Bold */
    font-size: 32px;
    font-weight: var(--fw-semibold) !important;
    text-transform: uppercase;
    color: #fff;
    text-align: left;
    font-family: var(--main-font) !important;
}

.pmx-why-bar-items {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.pmx-why-bar-item {
    display: flex;
    align-items: center;
    gap: 14px;
    /* Matching Image: Body 14-16px Semi Bold */
    font-size: 15px;
    font-weight: var(--fw-semibold) !important;
    text-transform: uppercase;
    white-space: nowrap;
    color: #fff;
    font-family: var(--main-font) !important;
}

.pmx-why-bar-item img {
    width: 60px;
    height: 60px;
    filter: brightness(0) invert(1);
    opacity: .95;
}

/* ================= COMPARE (DITTO MATCH) ================= */
.pmx-compare {
    background: #000;
    color: #fff;
    padding: 60px 20px;
    font-family: var(--main-font), -apple-system, BlinkMacSystemFont, sans-serif !important;
}

.pmx-compare-title {
    text-align: center;
    font-size: 42px;
    color: #fff;
    margin-bottom: 8px;
    /* FIX APPLIED HERE */
    font-family: var(--main-font) !important;
    font-weight: var(--fw-semibold) !important; 
}

.pmx-compare-sub {
    text-align: center;
    font-size: 18px;
    color: #fff;
    margin-bottom: 24px;
    font-family: var(--main-font) !important;
    font-weight: var(--fw-medium) !important;
}

.neon { color: #C8FF00 !important; }

/* ---------------- TABLE ---------------- */
.pmx-compare-table {
    max-width: 1400px;
    margin: auto;
    position: relative;
    overflow: visible; 
    border: 1px solid #333;
    border-radius: 12px;
    background: #000;
}

.pmx-compare-subtitle {
    text-align: center;
    font-size: 32px;
    margin: 30px 0 45px;
    color: #fff;
    /* FIX APPLIED HERE */
    font-family: var(--main-font) !important;
    font-weight: var(--fw-semibold) !important;
}

.pmx-compare-table::before {
    content: "";
    position: absolute;
    left: 33.33%; 
    width: 33.33%;
    top: 122px; 
    bottom: 0;
    border: 1.5px solid #C8FF00;
    border-radius: 14px;
    box-shadow: 
        0 0 15px rgba(200, 255, 0, 0.5), 
        inset 0 0 10px rgba(200, 255, 0, 0.2),
        0 0 30px rgba(200, 255, 0, 0.1);
    pointer-events: none;
    z-index: 10;
}

/* ---------------- ROWS ---------------- */
.pmx-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    background: #1A1A1A; 
    padding: 4px 0; 
    align-items: center;
    position: relative;
    text-align: center;
    border-bottom: 1px solid #222;
}

.pmx-row:last-child { border-bottom: none; border-radius:0px 0px 12px 12px;}

.pmx-row > div:first-child {
    text-align: left;
    padding-left: 25px;
    text-transform: uppercase;
    font-size: 15px;
    font-family: var(--main-font) !important;
    font-weight: var(--fw-semibold) !important;
}

.pmx-head {
    padding: 15px 0;
    border-bottom: 1px solid #333;
}

.pmx-head > div {
    font-size: 22px !important;
    font-family: var(--main-font) !important;
    font-weight: var(--fw-semibold) !important;
}

.pmx-center-head {
    color: #C8FF00 !important;
    font-weight: var(--fw-semibold) !important;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pmx-header-rel {
    position: relative;
    display: inline-block;
}

.pmx-speed-value {
    position: absolute;
    top: 4px;
    right: -96px; 
    /* Matching Image: Body Medium */
    font-size: 15px;
    color: #666;
    font-weight: var(--fw-medium) !important;
}

.pmx-center {
    color: #C8FF00;
    /* Matching Image: Body Semi Bold */
    font-weight: var(--fw-semibold) !important;
    font-size: 15px;
}

.pmx-competitor {
    color: #888;
    /* Matching Image: Body Medium */
    font-size: 15px;
    font-weight: var(--fw-medium) !important;
}

.pmx-price-row { padding: 20px 0; justify-content:space-around;}

.pmx-price-row .pmx-center {
    /* Matching Image: Hero Size font weight logic */
    font-size: 24px;
    font-weight: var(--fw-semibold) !important;
}

/* ---------------- FOOTER ---------------- */
.pmx-trust {
    text-align: center;
    margin: 30px 0;
    /* Matching Image: Body 14-16px Medium */
    font-size: 14px;
    color: #fff;
    font-weight: var(--fw-medium) !important;
}

.pmx-stars {
    color: #C8FF00;
    margin-right: 5px;
}

.pmx-cta-bar {
    background: #C8FF00;
    color: #000;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 18px;
    border-radius: 12px;
    /* Matching Image: Button Semi Bold */
    font-size: 18px;
    font-weight: var(--fw-semibold) !important;
    cursor: pointer;
    font-family: var(--main-font) !important;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
    .pmx-why-bar-title { font-size: 24px; text-align: center; }
    .pmx-why-bar-items { flex-direction: column; align-items: center; gap: 18px; }
    .pmx-why-bar-item { font-size: 14px; }
    .pmx-head > div { font-size: 11px !important; }
    .pmx-speed-value { top: -14px; right: -3px; font-size: 10px; }
    .pmx-row > div:first-child, .pmx-competitor, .pmx-center { font-size: 12px; }
    .pmx-compare-table::before { top: 168px; }
    .pmx-hero { min-height: 60vh; }
	.pmx-shop-products{padding:30px 20px !important;}
	.pmx-compare-title{font-size:32px;line-height:1.2em;}
	.pmx-compare-subtitle{font-size:26px;margin:16px 0 30px;}
	.pmx-price-row{margin-top:0px !important;justify-content:center !important;}
}