/* ============================================
   SMARTVIBE - RECENSIONI STYLE
   Stile professionale per recensioni prodotti
   ============================================ */

/* ===== RECENSIONE GENERALE ===== */
.smartvibe-review {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, Arial, sans-serif;
    color: #232F3E;
}

/* ===== TITOLO ===== */
.smartvibe-review .review-title {
    font-size: 32px;
    font-weight: 700;
    color: #232F3E;
    margin-bottom: 15px;
    line-height: 1.2;
}

.smartvibe-review .review-subtitle {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* ===== IMMAGINE PRODOTTO ===== */
.smartvibe-review .product-image-wrapper {
    text-align: center;
    margin: 25px 0;
    background: #F7F7F7;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #E7E7E7;
}

.smartvibe-review .product-image-wrapper img {
    max-width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    border-radius: 8px;
}

.smartvibe-review .product-image-wrapper .caption {
    font-size: 14px;
    color: #999;
    margin-top: 10px;
}

/* ===== SCHEDA TECNICA ===== */
.smartvibe-review .tech-sheet {
    background: #F8F9FA;
    padding: 20px 25px;
    border-radius: 12px;
    margin: 25px 0;
    border: 1px solid #E7E7E7;
}

.smartvibe-review .tech-sheet table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
}

.smartvibe-review .tech-sheet td {
    padding: 10px 15px;
    border-bottom: 1px solid #E7E7E7;
}

.smartvibe-review .tech-sheet tr:last-child td {
    border-bottom: none;
}

.smartvibe-review .tech-sheet .label {
    font-weight: 600;
    width: 40%;
    color: #232F3E;
}

.smartvibe-review .tech-sheet .value {
    color: #555;
}

.smartvibe-review .tech-sheet .price {
    font-size: 22px;
    font-weight: 700;
    color: #B12704;
}

.smartvibe-review .tech-sheet .badge-available {
    color: #28A745;
    font-weight: 600;
}

/* ===== PULSANTE ACQUISTA ===== */
.smartvibe-review .cta-box {
    text-align: center;
    margin: 30px 0;
    padding: 25px;
    background: #F0F7FF;
    border-radius: 12px;
    border: 2px solid #FF9900;
}

.smartvibe-review .cta-box .price-display {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
}

.smartvibe-review .cta-box .price-display .amount {
    font-size: 24px;
    font-weight: 700;
    color: #B12704;
}

.smartvibe-review .btn-amazon {
    display: inline-block;
    background: #FF9900;
    color: #131921;
    padding: 16px 50px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.smartvibe-review .btn-amazon:hover {
    background: #E68A00;
    transform: scale(1.02);
    box-shadow: 0 4px 15px rgba(255, 153, 0, 0.3);
}

.smartvibe-review .cta-box .price-update {
    font-size: 12px;
    color: #999;
    margin-top: 10px;
}

/* ===== SEZIONI ===== */
.smartvibe-review .section-title {
    font-size: 24px;
    font-weight: 700;
    color: #232F3E;
    margin: 30px 0 15px;
    padding-bottom: 10px;
    border-bottom: 3px solid #FF9900;
}

.smartvibe-review .section-title-secondary {
    font-size: 20px;
    font-weight: 600;
    color: #232F3E;
    margin: 25px 0 12px;
}

/* ===== PRO E CONTRO ===== */
.smartvibe-review .pros-cons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin: 30px 0;
}

.smartvibe-review .pros-box {
    background: #F0FFF4;
    padding: 25px;
    border-radius: 12px;
    border-left: 5px solid #28A745;
}

.smartvibe-review .pros-box h3 {
    color: #28A745;
    font-size: 20px;
    margin-bottom: 15px;
}

.smartvibe-review .pros-box ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
    line-height: 2;
}

.smartvibe-review .pros-box ul li::before {
    content: "✔️ ";
    color: #28A745;
}

.smartvibe-review .cons-box {
    background: #FFF5F5;
    padding: 25px;
    border-radius: 12px;
    border-left: 5px solid #DC3545;
}

.smartvibe-review .cons-box h3 {
    color: #DC3545;
    font-size: 20px;
    margin-bottom: 15px;
}

.smartvibe-review .cons-box ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
    line-height: 2;
}

.smartvibe-review .cons-box ul li::before {
    content: "✖️ ";
    color: #DC3545;
}

/* ===== VERDETTO ===== */
.smartvibe-review .verdict-box {
    background: #FFF8F0;
    padding: 25px;
    border-radius: 12px;
    border-left: 5px solid #FF9900;
    margin: 25px 0;
}

.smartvibe-review .verdict-box p {
    font-size: 17px;
    color: #444;
    line-height: 1.9;
    margin: 0;
}

.smartvibe-review .verdict-box strong {
    color: #232F3E;
}

/* ===== PUNTEGGIO ===== */
.smartvibe-review .rating-box {
    text-align: center;
    padding: 25px;
    background: #232F3E;
    border-radius: 12px;
    color: white;
    margin: 25px 0;
}

.smartvibe-review .rating-box .label {
    font-size: 16px;
    opacity: 0.8;
    margin-bottom: 5px;
}

.smartvibe-review .rating-box .score {
    font-size: 48px;
    font-weight: 700;
    color: #FF9900;
}

.smartvibe-review .rating-box .stars {
    font-size: 14px;
    opacity: 0.7;
}

/* ===== TABELLA CONFRONTO ===== */
.smartvibe-review .comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    margin: 20px 0;
}

.smartvibe-review .comparison-table thead {
    background: #232F3E;
    color: white;
}

.smartvibe-review .comparison-table th {
    padding: 12px 15px;
    text-align: left;
}

.smartvibe-review .comparison-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #E7E7E7;
}

.smartvibe-review .comparison-table .product-name {
    font-weight: 600;
}

.smartvibe-review .comparison-table .product-price {
    font-weight: 700;
    color: #B12704;
    text-align: center;
}

.smartvibe-review .comparison-table .product-rating {
    text-align: center;
}

.smartvibe-review .comparison-table .btn-small {
    background: #FF9900;
    color: #131921;
    padding: 6px 15px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    font-size: 13px;
    display: inline-block;
}

.smartvibe-review .comparison-table .btn-small:hover {
    background: #E68A00;
}

.smartvibe-review .comparison-table .btn-small-dark {
    background: #232F3E;
    color: white;
    padding: 6px 15px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    font-size: 13px;
    display: inline-block;
}

.smartvibe-review .comparison-table .btn-small-dark:hover {
    background: #3A4A5E;
}

/* ===== FAQ ===== */
.smartvibe-review .faq-item {
    background: #F8F9FA;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 10px;
}

.smartvibe-review .faq-item .question {
    font-weight: 600;
    margin-bottom: 5px;
    color: #232F3E;
}

.smartvibe-review .faq-item .answer {
    color: #555;
    margin: 0;
}

/* ===== DISCLAIMER ===== */
.smartvibe-review .disclaimer {
    background: #FFF8F0;
    padding: 15px 20px;
    border-radius: 8px;
    border: 1px solid #FF9900;
    margin: 30px 0;
    font-size: 13px;
    color: #666;
}

.smartvibe-review .disclaimer p {
    margin: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .smartvibe-review .review-title {
        font-size: 26px;
    }
    
    .smartvibe-review .pros-cons-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .smartvibe-review .tech-sheet {
        padding: 15px;
    }
    
    .smartvibe-review .tech-sheet td {
        padding: 8px 10px;
        font-size: 14px;
    }
    
    .smartvibe-review .comparison-table {
        font-size: 12px;
    }
    
    .smartvibe-review .comparison-table th,
    .smartvibe-review .comparison-table td {
        padding: 8px 10px;
    }
    
    .smartvibe-review .btn-amazon {
        padding: 14px 30px;
        font-size: 16px;
    }
    
    .smartvibe-review .rating-box .score {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .smartvibe-review .review-title {
        font-size: 22px;
    }
    
    .smartvibe-review .section-title {
        font-size: 20px;
    }
    
    .smartvibe-review .tech-sheet td {
        display: block;
        padding: 6px 10px;
    }
    
    .smartvibe-review .tech-sheet .label {
        width: 100%;
    }
    
    .smartvibe-review .comparison-table {
        font-size: 11px;
    }
    
    .smartvibe-review .comparison-table th,
    .smartvibe-review .comparison-table td {
        display: block;
        text-align: left;
    }
}