/* single-site.css - Stile dedicato al template Recensioni Piattaforme (pm_site) */

/* Hero Banner */
.pm-site-hero {
    position: relative;
    width: 100%;
    height: 450px; /* Altezza massima forzata come richiesto */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center; /* Centratura verticale perfetta */
    justify-content: center;
    padding: 0 20px;
}

.pm-site-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle 500px at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(0,0,0,0.1) 0%,
        rgba(0,0,0,0.6) 40%,
        rgba(0,0,0,0.85) 100%
    );
    z-index: 1;
    pointer-events: none;
    transition: background 0.1s ease-out;
}

.pm-hero-inner-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Breadcrumbs SEO nel banner */
.pm-single-breadcrumbs-container {
    position: absolute;
    top: -45px;
    left: 0;
    width: auto;
    text-align: left;
    z-index: 10;
}

.pm-single-breadcrumbs-container .pm-breadcrumbs-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    color: rgba(255, 255, 255, 0.45);
    font-size: 11px;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.pm-single-breadcrumbs-container .pm-breadcrumbs-list li {
    display: inline-flex;
    align-items: center;
    margin: 0;
}

.pm-single-breadcrumbs-container .pm-breadcrumbs-list a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: color 0.3s ease;
}

.pm-single-breadcrumbs-container .pm-breadcrumbs-list a:hover {
    color: var(--pm-header-accent, #E82956);
}

.pm-single-breadcrumbs-container .pm-bc-current a {
    color: rgba(255, 255, 255, 0.85);
    pointer-events: none;
}

.pm-single-breadcrumbs-container .pm-bc-sep {
    margin: 0 6px;
    color: rgba(255, 255, 255, 0.25);
    font-size: 10px;
}

.pm-site-hero-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 60px;
}

/* Colonna Sinistra (Immagine / Logo) */
.pm-site-hero-left {
    position: relative;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pm-site-hero-avatar-wrapper {
    display: block;
    position: relative;
    width: 320px;
    height: 180px; /* Rapporto 16:9 per lo screenshot */
    border-radius: 16px;
    border: 4px solid rgba(255, 255, 255, 1);
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    background: #111;
    z-index: 3;
    overflow: hidden;
}

.pm-site-hero-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Logo Badge Piattaforma */
.pm-site-hero-platform-badge {
    position: absolute;
    bottom: -25px; /* Posizionato in basso in modo dinamico a prescindere dall'altezza */
    left: 50%;
    transform: translateX(-50%);
    background: transparent;
    padding: 0;
    border-radius: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.4);
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pm-site-platform-logo-img {
    height: 50px;
    width: auto;
    display: block;
    object-fit: contain;
    border-radius: 40px;
}

/* Colonna Destra (Tutto il contenuto testuale, rating e bottone) */
.pm-site-hero-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.pm-site-hero-title {
    color: #FFFFFF;
    font-size: 48px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -1px;
    margin: 0 0 10px 0;
    line-height: 1.1;
    text-shadow: 0 4px 10px rgba(0,0,0,0.6);
}

.pm-site-hero-excerpt {
    color: #CCCCCC;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    display: block;
    text-shadow: 0 2px 5px rgba(0,0,0,0.6);
    max-width: 600px;
}

/* Badges */
.pm-site-hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 30px;
}

.pm-site-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 1);
    color: #111;
    font-weight: 800;
    font-size: 10px;
    padding: 4px 10px;
    border-radius: 6px;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    letter-spacing: 0.5px;
}

/* Stelle Proporzionali */
.pm-site-hero-stars-container {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    padding: 0;
    margin-bottom: 0;
    margin-top: 35px; /* Spazio per compensare il logo sovrapposto */
}

.pm-stars-wrapper {
    position: relative;
    display: inline-block;
    width: 130px;
    height: 26px;
}

.pm-stars-bg, .pm-stars-fill-inner {
    display: flex;
    width: 130px;
    justify-content: space-between;
}

.pm-stars-bg {
    position: absolute;
    top: 0; left: 0;
}

.pm-stars-fill {
    position: absolute;
    top: 0; left: 0;
    height: 100%;
    overflow: hidden;
}

.pm-star-icon {
    width: 26px;
    height: 26px;
    fill: #FBBF24;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}

.pm-stars-bg .pm-star-icon {
    fill: rgba(255, 255, 255, 0.2);
    filter: none;
}

.pm-stars-score-text {
    color: #FFF;
    font-weight: 800;
    font-size: 18px;
    margin-left: 5px;
}

/* Pulsante CTA */
.pm-site-hero-cta .pm-site-btn {
    display: inline-block;
    background: var(--pm-header-accent, #E82956);
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 800;
    padding: 14px 40px;
    border-radius: 10px;
    text-decoration: none;
    text-transform: uppercase;
    box-shadow: 0 6px 20px rgba(232, 41, 86, 0.5);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.pm-site-hero-cta .pm-site-btn:hover {
    background: #D1204A;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(232, 41, 86, 0.7);
}

.pm-site-btn-pulse {
    animation: pm-site-pulse 2s infinite;
}

@keyframes pm-site-pulse {
    0% { box-shadow: 0 0 0 0 rgba(232, 41, 86, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(232, 41, 86, 0); }
    100% { box-shadow: 0 0 0 0 rgba(232, 41, 86, 0); }
}

/* Body & Layout */
.pm-site-body {
    padding: 60px 0;
    background: var(--pm-bg-color, #F4F5F7);
}

.pm-site-layout {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

/* Sidebar Stile Modella */
.pm-site-sidebar {
    width: 320px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: var(--pm-space-md);
}

.pm-sticky-sidebar {
    align-self: stretch;
    overflow: visible;
    padding-right: 4px;
}

@media (min-width: 1025px) {
    .pm-site-sidebar > *:last-child {
        position: sticky;
        top: calc(var(--pm-header-height) + 24px);
    }
}

.pm-sidebar-box {
    background: #FFFFFF;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08); /* Ombra flat elegante */
}

/* Sidebar Header & Avatar */
.pm-sidebar-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: -25px -25px 20px -25px;
    padding: 0 25px;
    height: 110px;
    box-sizing: border-box;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    background-size: cover;
    background-position: center;
    position: relative;
    border-bottom: none;
    z-index: 1;
}

.pm-sidebar-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.8) 0%, rgba(15, 23, 42, 0.45) 60%, rgba(15, 23, 42, 0.2) 100%); /* Premium gradient overlay */
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    z-index: -1;
}

.pm-sidebar-avatar {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    object-fit: contain; /* Per le icone dei siti è meglio contain, o cover se quadrate perfette */
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    background: #ffffff;
    padding: 6px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 2;
}

.pm-sidebar-header-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
    min-width: 0; /* Prevents overflow */
}

.pm-sidebar-title {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 0;
    line-height: 1.15;
    color: #FFFFFF;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.5px;
}

/* Sidebar Data List */
.pm-sidebar-data-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.pm-sidebar-data-list li {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 8px 0;
    border-bottom: 1px solid #E5E7EB;
    font-size: 14px;
}

.pm-sidebar-data-list li:last-child {
    border-bottom: none;
}

.pm-data-label {
    color: #6B7280;
    font-weight: 600;
    margin-right: 15px;
}

.pm-data-value {
    color: #111;
    font-weight: 700;
    text-align: right;
}

.pm-highlight-offer {
    color: #10B981;
    font-weight: 800 !important;
}

/* Pros and Cons Modern Grid */
.pm-site-pros-cons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
    width: 100%; /* Forza il 100% dello spazio disponibile */
}

/* Main Content Wrapper (Ora trasparente) */
.pm-site-main-content {
    flex: 1;
    min-width: 0;
    background: transparent;
    padding: 0;
    box-shadow: none;
    border-radius: 0;
}

/* White Box generico per blocchi nel main content (Gallery, Recensione, ecc.) */
.pm-white-box {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    margin-bottom: 40px;
}

.pm-pros-box {
    background-color: rgba(16, 185, 129, 0.05);
    border: none;
    border-radius: 20px;
    padding: 25px 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.pm-cons-box {
    background-color: rgba(239, 68, 68, 0.05);
    border: none;
    border-radius: 20px;
    padding: 25px 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.pm-pros-title {
    color: #10B981;
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    display: block;
}

.pm-cons-title {
    color: #EF4444;
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    display: block;
}

.pm-icon-pro { color: #10B981; }
.pm-icon-con { color: #EF4444; }

.pm-pros-box ul, .pm-cons-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pm-pros-box ul li, .pm-cons-box ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-size: 15px;
    line-height: 1.5;
    color: #4B5563;
    font-weight: 500;
}

.pm-pros-box ul li:last-child, .pm-cons-box ul li:last-child {
    margin-bottom: 0;
}

.pm-pros-box ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 2px;
    color: #10B981;
    font-weight: 900;
    font-size: 16px;
}

.pm-cons-box ul li::before {
    content: '✕';
    position: absolute;
    left: 0;
    top: 2px;
    color: #EF4444;
    font-weight: 900;
    font-size: 16px;
}

@media (max-width: 768px) {
    .pm-site-pros-cons-grid {
        grid-template-columns: 1fr;
    }
}

/* Sidebar Button CTA (Ripristinato) */
.pm-btn-sidebar {
    display: block;
    width: 100%;
    background: var(--pm-header-accent, #E82956);
    color: #FFF;
    text-align: center;
    padding: 16px;
    font-size: 16px;
    font-weight: 800;
    border-radius: 12px;
    text-decoration: none;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(232, 41, 86, 0.4);
    transition: all 0.3s ease;
    margin-top: 20px;
}

.pm-btn-sidebar:hover {
    background: #D1204A;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(232, 41, 86, 0.6);
    color: #FFF;
}

/* Gallery */
.pm-site-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 50px;
}

.pm-gallery-item {
    display: block;
    border-radius: 12px;
    overflow: hidden;
    height: 150px;
}

.pm-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.pm-gallery-item:hover img {
    transform: scale(1.05);
}

/* Review Content */
.pm-site-review-content {
    font-size: 18px;
    line-height: 1.8;
    color: #4B5563;
}
.pm-site-review-content h2,
.pm-site-review-content h3 {
    color: #111;
    margin-top: 30px;
    margin-bottom: 15px;
}

/* Alternatives */
.pm-site-alternatives {
    padding: 60px 0;
    background: #FFF;
}

.pm-alternatives-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 30px;
}

/* Responsive */
@media (max-width: 1200px) {
    .pm-alternatives-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .pm-site-layout {
        flex-direction: column;
    }
    .pm-site-sidebar {
        width: 100%;
        position: static;
    }
}

@media (max-width: 768px) {
    .pm-alternatives-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .pm-alternatives-grid {
        grid-template-columns: 1fr;
    }
}

/* MARQUEE MIGLIORI CAMGIRL */
.pm-site-marquee-section {
    width: 100%;
    background: linear-gradient(90deg, #0a0a0f 0%, #16161e 50%, #0a0a0f 100%);
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 15px 0;
    position: relative;
    z-index: 5;
    overflow: hidden;
}

.pm-marquee-container {
    display: flex;
    align-items: center;
}

.pm-marquee-title {
    flex-shrink: 0;
    margin-right: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
}

.pm-marquee-title-group {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.2;
}

.pm-marquee-title-top {
    font-size: 11px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pm-marquee-title-bottom {
    font-size: 15px;
    font-weight: 800;
    color: var(--pm-header-accent, #E82956);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pm-marquee-dot {
    width: 8px;
    height: 8px;
    background: #00E676; /* Verde acceso */
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 230, 118, 0.8); /* Glow verde */
    animation: pm-blink 1.5s infinite;
}

@keyframes pm-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.pm-marquee-overflow {
    flex: 1;
    overflow: hidden;
    position: relative;
    /* Effetto sfumato ai bordi per nascondere la comparsa/scomparsa */
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.pm-marquee-track {
    display: flex;
    width: max-content;
    animation: pm-marquee-scroll 35s linear infinite;
}

.pm-marquee-track:hover {
    animation-play-state: paused;
}

.pm-marquee-content {
    display: flex;
    align-items: center;
    gap: 40px;
    padding-right: 40px; /* Spazio essenziale prima del blocco clonato */
}

@keyframes pm-marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } /* Si sposta esattamente della lunghezza di un blocco content */
}

.pm-marquee-item {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.pm-marquee-item:hover {
    transform: translateY(-2px);
}

.pm-marquee-avatar {
    width: 44px;
    height: 44px;
    border-radius: 6px;
    object-fit: cover;
    border: 2px solid rgba(255,255,255,0.1);
    transition: border-color 0.3s ease;
}

.pm-marquee-item:hover .pm-marquee-avatar {
    border-color: var(--pm-header-accent, #E82956);
}

.pm-marquee-name {
    font-size: 14px;
    font-weight: 700;
    color: #9ca3af;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.pm-marquee-item:hover .pm-marquee-name {
    color: #FFFFFF;
}

/* Responsive Hero */
@media (max-width: 768px) {
    .pm-site-hero-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 35px;
    }

    .pm-site-hero-right {
        align-items: center;
        text-align: center;
    }

    .pm-site-hero-badges {
        justify-content: center;
    }

    .pm-site-hero {
        min-height: 400px;
        padding: 0 15px 40px 15px;
    }
    
    .pm-site-hero-avatar-wrapper {
        width: 240px;
        height: 135px;
        border-radius: 12px;
    }
    
    .pm-site-hero-platform-badge {
        bottom: -22px;
    }
    
    .pm-site-platform-logo-img {
        height: 44px;
    }
    
    .pm-site-hero-nickname {
        font-size: 14px;
    }

    .pm-site-hero-title {
        font-size: 38px;
    }
    
    .pm-site-badge {
        font-size: 11px;
        padding: 6px 14px;
    }
    
    .pm-site-hero-cta .pm-site-btn {
        font-size: 15px;
        padding: 14px 30px;
        width: 100%;
        max-width: 350px;
    }
    
    .pm-site-pros-cons {
        flex-direction: column;
    }
    .pm-site-main-content {
        padding: 20px;
    }
}



@media (min-width: 992px) {
    .single-pm_site .pm-site-body .pm-container {
        max-width: 80% !important;
    }
}

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */
.pm-site-faq-section {
    margin-top: 50px;
    margin-bottom: 50px;
}

.pm-faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 25px;
}

.pm-faq-item {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.pm-faq-item:hover {
    border-color: #CBD5E1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.pm-faq-item.active {
    border-color: var(--pm-header-accent, #E82956);
    box-shadow: 0 12px 30px rgba(232, 41, 86, 0.06), 0 2px 4px rgba(232, 41, 86, 0.02);
}

.pm-faq-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 28px;
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    transition: background-color 0.25s ease;
    outline: none;
    box-shadow: none;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    color: inherit;
    appearance: none;
    -webkit-appearance: none;
}

.pm-faq-header:hover {
    background-color: #F8FAFC;
}

.pm-faq-header:focus-visible {
    background-color: #F8FAFC;
    box-shadow: inset 0 0 0 2px var(--pm-header-accent, #E82956);
}

.pm-faq-question {
    font-size: 17px;
    font-weight: 700;
    color: #0F172A; /* Slate-900 per migliore leggibilità */
    padding-right: 24px;
    line-height: 1.4;
    transition: color 0.25s ease;
}

.pm-faq-header:hover .pm-faq-question,
.pm-faq-item.active .pm-faq-question {
    color: var(--pm-header-accent, #E82956);
}

.pm-faq-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #F8FAFC;
    border: 1px solid #E2E8F0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    flex-shrink: 0;
}

.pm-faq-icon::before {
    content: '';
    width: 8px;
    height: 8px;
    border-right: 2px solid #64748B;
    border-bottom: 2px solid #64748B;
    transform: rotate(45deg);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: -3px; /* centra verticalmente il chevron */
}

/* Nasconde l'eventuale icona dashicon fallita */
.pm-faq-icon .dashicons {
    display: none !important;
}

/* Hover dell'header attiva transform e scale sull'icona */
.pm-faq-header:hover .pm-faq-icon {
    background-color: #F1F5F9;
    border-color: #CBD5E1;
    transform: scale(1.05);
}

.pm-faq-item.active .pm-faq-icon {
    background-color: var(--pm-header-accent, #E82956);
    border-color: var(--pm-header-accent, #E82956);
    transform: rotate(180deg);
}

.pm-faq-item.active .pm-faq-icon::before {
    border-color: #FFFFFF;
    margin-top: -3px;
}

.pm-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.pm-faq-item.active .pm-faq-answer {
    /* Fallback in caso JS sia disabilitato o fallisca */
    max-height: 800px;
}

.pm-faq-answer-content {
    padding: 0 28px 24px 28px;
    border-top: 1px solid #F1F5F9;
}

.pm-faq-answer-content p {
    margin: 0;
    padding-top: 16px;
    color: #475569; /* Slate 600 */
    font-size: 15px;
    line-height: 1.6;
}

/* Badge for compacted payment methods count */
.pm-more-badge {
    background-color: var(--pm-accent-color, #ff3b68);
    color: #FFFFFF;
    padding: 2px 6px;
    font-size: 11px;
    font-weight: 700;
    border-radius: 4px;
    margin-left: 5px;
    display: inline-block;
    cursor: help;
    transition: background-color var(--pm-transition-fast), transform var(--pm-transition-fast);
}

.pm-more-badge:hover {
    background-color: color-mix(in srgb, var(--pm-accent-color, #ff3b68) 80%, #000000);
    transform: translateY(-1px);
}

/* ==========================================================================
   MOBILE LAYOUT FIXES (As per user request)
   ========================================================================== */
@media (max-width: 991px) {
    /* 1. HERO SECTION */
    .pm-site-hero-content {
        display: flex !important;
        flex-direction: column !important;
    }
    .pm-site-hero-left, .pm-site-hero-right {
        display: contents !important;
    }
    .pm-site-hero-avatar-wrapper {
        display: none !important;
    }
    .pm-site-hero-title {
        order: 1 !important;
        font-size: 42px !important;
    }
    .pm-site-hero-stars-container {
        order: 2 !important;
        margin-top: 0 !important;
        margin-bottom: 20px !important;
    }
    .pm-site-hero-badges {
        order: 3 !important;
    }
    .pm-site-hero-cta {
        order: 4 !important;
        width: 100% !important;
    }
    .pm-site-hero-cta .pm-site-btn {
        width: 100% !important;
        max-width: 100% !important;
        text-align: center !important;
        box-sizing: border-box !important;
    }

    /* 2. PRO E CONTRO SU DUE COLONNE */
    .pm-site-pros-cons-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 15px !important;
    }
    .pm-pros-box, .pm-cons-box {
        padding: 15px 12px !important;
    }
    .pm-pros-box ul li, .pm-cons-box ul li {
        font-size: 13px !important;
        margin-bottom: 8px !important;
        padding-left: 20px !important;
    }
    .pm-pros-box ul li::before, .pm-cons-box ul li::before {
        font-size: 14px !important;
    }
    .pm-pros-title, .pm-cons-title {
        font-size: 14px !important;
        margin-bottom: 10px !important;
    }

    /* 3. SCREENSHOT IMMAGINI SU UNA COLONNA */
    .pm-site-gallery {
        grid-template-columns: 1fr !important;
    }
    .pm-gallery-item {
        height: auto !important;
        aspect-ratio: 16/9;
    }

    /* 4. SCHEDA DOPO LE IMMAGINI */
    .single-pm_site .pm-site-body .pm-container {
        display: flex !important;
        flex-direction: column !important;
    }
    .pm-site-layout, .pm-site-main-content, .pm-site-sidebar {
        display: contents !important;
    }
    .pm-site-main-content > * {
        order: 2 !important;
    }
    .pm-site-sidebar > * {
        order: 5 !important;
        width: 100% !important;
    }
    .pm-site-pros-cons-grid { 
        order: 1 !important; 
    }
    .pm-site-sidebar > .pm-sidebar-box { 
        order: 3 !important; 
        margin-bottom: 40px !important;
        box-sizing: border-box !important;
    }
    .pm-site-review-content { 
        order: 4 !important; 
    }

    /* 5. SISTEMA IL TESTO: MARGINI E H2 CENTRATI */
    .pm-white-box {
        padding: 24px 20px !important;
    }
    .pm-site-review-content h2 {
        text-align: center !important;
    }
}
