/**
 * SINGLE REVIEW SPECIFIC STYLES
 */

/* HERO HEADER */
.review-hero-new {
    background: white;
    border-radius: 30px;
    padding: 0; /* REMOVED PADDING */
    margin-top: 0;
    margin-bottom: var(--layout-gap);
    box-shadow: 0 15px 40px -10px rgba(0,0,0,0.05);
    display: flex;
    align-items: stretch; /* MAKE IMAGE FILL HEIGHT */
    overflow: hidden; /* CLIP IMAGE CORNERS */
}

.hero-image-box {
    width: 400px; 
    height: 220px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

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

.hero-content-box {
    flex-grow: 1; 
    display: flex;
    justify-content: space-between; 
    align-items: center;
    gap: 30px;
    padding: 35px 45px; /* ADD PADDING HERE INSTEAD */
}

.hero-title-row {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 10px;
}

.hero-logo-inline {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.hero-logo-inline img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.1));
}

.hero-main-info h1 {
    font-size: 42px; /* Ingrandito leggermente */
    font-weight: 900;
    color: #0f172a; 
    margin: 0;
    font-family: var(--font-heading);
    text-transform: uppercase;
    line-height: 1;
}

.hero-logo-small { display: none; } /* Rimosso vecchio stile */

.hero-rating-stars { display: flex; align-items: center; gap: 12px; }
.hero-rating-stars .stars { color: #f59e0b; font-size: 18px; }
.hero-rating-stars .rating-val { font-weight: 900; color: #1e293b; font-size: 18px; }

.hero-btn-main {
    background: var(--brand-pink); color: white;
    padding: 22px 45px; border-radius: 18px;
    text-decoration: none; font-weight: 900;
    font-size: 18px; text-transform: uppercase;
    display: flex; align-items: center; gap: 12px;
    box-shadow: 0 15px 30px rgba(255, 77, 109, 0.3);
    transition: all 0.3s;
}

.hero-btn-main:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(255, 77, 109, 0.4); }

/* SIDEBAR DETAILS REFINEMENT */
.sidebar-details-card {
    padding: 30px;
}

.sidebar-card-header {
    display: flex; align-items: center; gap: 10px;
    margin-bottom: 25px; border-bottom: 1px solid #f1f5f9;
    padding-bottom: 15px;
}

.sidebar-card-header i { color: var(--brand-pink); font-size: 18px; }
.sidebar-card-header h3 { margin: 0 !important; color: #0f172a !important; font-size: 14px !important; letter-spacing: 1px; }

.review-info-list { list-style: none; padding: 0; margin: 0; }
.review-info-list li {
    display: flex; flex-direction: column;
    gap: 5px; padding: 15px 0;
    border-bottom: 1px solid #f8fafc;
}

.info-label { font-size: 10px; font-weight: 800; color: #94a3b8; text-transform: uppercase; letter-spacing: 1px; }
.info-value { font-size: 14px; font-weight: 900; color: #1e293b; }
.secure-val { color: #10b981 !important; display: flex; align-items: center; gap: 6px; }

.sidebar-bonus-box {
    background: linear-gradient(135deg, #FF4D6D, #FF758F);
    border-radius: 20px; padding: 25px;
    color: white; text-align: center;
}

.sidebar-bonus-box i { font-size: 30px; margin-bottom: 10px; }
.bonus-title { display: block; font-weight: 900; font-size: 12px; letter-spacing: 1px; margin-bottom: 10px; opacity: 0.9; }
.bonus-text { font-weight: 800; font-size: 16px; line-height: 1.4; margin: 0; }

/* PROS & CONS - BOLDER */
.pros-cons-modern {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 30px; margin-bottom: 50px;
}

.pc-col {
    background: white; border-radius: 28px;
    padding: 40px; box-shadow: 0 12px 30px -10px rgba(0,0,0,0.06);
}

.pc-label {
    font-size: 18px; /* LARGER */
    font-weight: 900; margin-bottom: 30px;
    display: flex; align-items: center; gap: 12px;
    font-family: var(--font-heading);
}

.pc-col.pros .pc-label { color: #22c55e; }
.pc-col.cons .pc-label { color: #ef4444; }

.pc-items { list-style: none; padding: 0; margin: 0; }
.pc-items li { 
    font-size: 15px; 
    padding: 10px 0 10px 30px; 
    position: relative;
    color: #475569;
    font-weight: 500;
}

.pc-col.pros li::before {
    content: "\f147";
    font-family: "dashicons";
    position: absolute;
    left: 0;
    color: #22c55e;
    font-size: 20px;
}

.pc-col.cons li::before {
    content: "\f158";
    font-family: "dashicons";
    position: absolute;
    left: 0;
    color: #ef4444;
    font-size: 20px;
}

/* GALLERY SECTION */
.review-gallery-section { margin-bottom: 60px; }
.screenshot-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 25px; margin-top: 30px;
}

.screenshot-item {
    display: block;
    border-radius: 18px; 
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    aspect-ratio: 16/10; /* RETTANGOLO PERFETTO */
    position: relative;
    background: #f8fafc;
    border: 1px solid #f1f5f9;
}

.screenshot-item img { 
    width: 100%; height: 100%; 
    object-fit: cover; 
    display: block;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.screenshot-zoom-icon {
    position: absolute; inset: 0;
    background: rgba(15, 23, 42, 0.4);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: all 0.3s;
    backdrop-filter: blur(4px);
}

.screenshot-zoom-icon i { 
    color: white; font-size: 32px; 
    transform: scale(0.5); transition: all 0.3s;
}

.screenshot-item:hover img { transform: scale(1.1); }
.screenshot-item:hover .screenshot-zoom-icon { opacity: 1; }
.screenshot-item:hover .screenshot-zoom-icon i { transform: scale(1); }


/* EDITORIAL CONTENT */
.review-editorial-content {
    background: white; border-radius: 28px;
    padding: 50px; margin-bottom: 60px;
    box-shadow: 0 12px 30px -10px rgba(0,0,0,0.06);
}

.editorial-seo-title {
    font-size: 32px; font-weight: 900;
    color: #0f172a; margin-bottom: 35px;
    font-family: var(--font-heading);
    letter-spacing: -1px;
}

/* SIMILAR SITES - SYNCED WITH ARCHIVE */
.similar-sites-section {
    margin-top: 80px;
}

.similar-sites-sync {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 30px;
    margin-top: 35px;
}

/* SIMILAR SITES ACTION */
.similar-sites-action {
    margin-top: 50px;
    display: flex;
    justify-content: center;
}

.btn-outline-wide {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 18px 40px;
    border: 2px solid #e2e8f0;
    border-radius: 50px;
    color: #475569;
    text-decoration: none;
    font-weight: 900;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.3s;
    background: white;
}

.btn-outline-wide i {
    font-size: 20px;
    transition: transform 0.3s;
}

.btn-outline-wide:hover {
    border-color: var(--brand-pink);
    color: var(--brand-pink);
    background: #fff5f7;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 77, 109, 0.1);
}

.btn-outline-wide:hover i {
    transform: translateX(5px);
}

/* RESPONSIVE */
@media (max-width: 1100px) {
    .similar-sites-sync { grid-template-columns: repeat(2, 1fr) !important; }
    .screenshot-grid { grid-template-columns: repeat(2, 1fr); }
    .btn-outline-wide { width: 100%; justify-content: center; }
}

/* ============================================================
   MOBILE RESPONSIVE SINGLE DIRECTORY
   ============================================================ */
@media (max-width: 768px) {

    /* Hero: impila verticalmente */
    .review-hero-new {
        flex-direction: column;
        border-radius: 20px;
    }
    .hero-image-box {
        width: 100%;
        height: 200px;
        flex-shrink: unset;
    }
    .hero-content-box {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding: 25px 20px;
    }
    .hero-main-info h1 { font-size: 28px; }
    .hero-btn-main {
        width: 100%;
        justify-content: center;
        padding: 16px 20px;
        font-size: 16px;
        border-radius: 14px;
    }

    /* Pros/Cons: 1 colonna */
    .pros-cons-modern {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .pc-col { padding: 25px 20px; border-radius: 20px; }

    /* Gallery: 1 colonna */
    .screenshot-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    /* Editorial content */
    .review-editorial-content {
        padding: 25px 16px;
        border-radius: 20px;
    }
    .editorial-seo-title { font-size: 22px; }

    /* Similar sites: 1 colonna */
    .similar-sites-sync { grid-template-columns: 1fr !important; }

    /* Sidebar details */
    .sidebar-details-card { padding: 20px 16px; }
}
