/* =========================================
   1. CONTAINER E STRUTTURA CARD
   ========================================= */
.finvelora-card-box {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #111111;
    line-height: 1.5;
}

.finvelora-card-box .fv-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.03);
    max-width: 1000px;
    margin: 0 auto 2rem;
    overflow: hidden;
    transition: transform 0.2s ease;
}

.finvelora-card-box .fv-card:hover {
    border-color: #ccc;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* =========================================
   2. HEADER (Clean & Light)
   ========================================= */
.finvelora-card-box .fv-card-header {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    background-color: #fff; 
}

/* Gruppo Sinistro */
.finvelora-card-box .fv-header-main {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.finvelora-card-box .fv-logo {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.finvelora-card-box .fv-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.finvelora-card-box .fv-header-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.finvelora-card-box .fv-badge {
    font-size: 10px;
    font-weight: 700; /* Ridotto da 800 */
    text-transform: uppercase;
    color: #0056b3;
    background-color: #e6f0ff;
    padding: 2px 6px;
    border-radius: 4px;
    align-self: flex-start;
    margin-bottom: 3px;
}

.finvelora-card-box .fv-title {
    font-size: 1.5rem;
    font-weight: 700; /* Ridotto da 800 (Bold standard) */
    margin: 0;
    color: #000000;
    line-height: 1.1;
}

.finvelora-card-box .fv-rating-row {
    font-size: 0.9rem;
    color: #222222;
    font-weight: 500; /* Ridotto da 600 (Medium) */
    display: flex;
    align-items: center;
    gap: 5px;
}
.finvelora-card-box .fv-stars {
    color: #ffc107;
    letter-spacing: -2px;
}

/* Gruppo Destro: CTA */
.finvelora-card-box .fv-header-cta {
    text-align: right;
    min-width: 200px;
}

.finvelora-card-box .fv-btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    font-weight: 600; /* Ridotto da 700 (Semi-Bold) */
    text-decoration: none;
    border-radius: 6px;
    text-align: center;
    transition: background 0.2s;
    font-size: 1rem;
}

.finvelora-card-box .fv-btn-primary {
    background-color: #0066cc;
    color: #fff;
}
.finvelora-card-box .fv-btn-primary:hover {
    background-color: #004c99;
}

/* Testo Promo (Verde) */
.finvelora-card-box .fv-cta-subtext {
    font-size: 0.8rem;
    color: #059669;
    margin-top: 6px;
    font-weight: 600; /* Ridotto da 700 */
    letter-spacing: -0.2px;
}

/* =========================================
   3. CORPO DELLA CARD
   ========================================= */
.finvelora-card-box .fv-card-body {
    padding: 1.5rem;
}

.finvelora-card-box .fv-description {
    font-size: 1rem;
    color: #111111;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-weight: 400; /* Normal */
}

/* =========================================
   4. GRIGLIA FEATURES (Alleggerita)
   ========================================= */
.finvelora-card-box .fv-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-bottom: 1.8rem;
    border-top: none;
    border-bottom: none;
    padding-top: 10px;
}

.finvelora-card-box .fv-feature {
    padding: 0.5rem 1.2rem;
    border-right: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.finvelora-card-box .fv-feature:last-child {
    border-right: none;
}

.finvelora-card-box .fv-feature-title {
    font-size: 0.75rem;
    font-weight: 600; /* Ridotto da 700 a 600 (Semi-Bold) */
    color: #222222;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.finvelora-card-box .fv-feature-value {
    font-size: 0.95rem;
    font-weight: 600; /* Ridotto drasticamente da 800 a 600 */
    color: #000000;
    line-height: 1.2;
}

/* =========================================
   5. ACCORDION (Alleggerito)
   ========================================= */
.finvelora-card-box .fv-accordion-simple details {
    border-top: 1px solid #eee;
    padding: 14px 0;
}

.finvelora-card-box .fv-accordion-simple summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600; /* Ridotto da 700 */
    color: #000000;
    cursor: pointer;
    font-size: 0.95rem;
    outline: none;
    list-style: none;
    gap: 15px;
}

.finvelora-card-box .fv-accordion-simple summary::-webkit-details-marker {
  display: none;
}

/* Icona + */
.finvelora-card-box .fv-accordion-simple summary::after {
    content: '+';
    font-weight: 700; /* Ridotto da 800 */
    color: #0066cc;
    font-size: 1.4rem;
    line-height: 1;
    flex-shrink: 0;
    width: 20px;
    text-align: center;
}

/* Icona - */
.finvelora-card-box .fv-accordion-simple details[open] summary::after {
    content: '−';
    color: #0066cc;
}

.finvelora-card-box .fv-details-content {
    margin-top: 10px;
    font-size: 0.95rem;
    color: #111111;
    line-height: 1.6;
    padding-right: 10px;
    font-weight: 400;
}

/* Griglia Pro e Contro */
.finvelora-card-box .fv-pros-cons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.finvelora-card-box .fv-pc-title {
    font-size: 0.85rem;
    font-weight: 700; /* Ridotto da 800 */
    margin-bottom: 8px;
    color: #000;
}

.finvelora-card-box .fv-pros ul, .finvelora-card-box .fv-cons ul {
    margin: 0; padding: 0; list-style: none;
}
.finvelora-card-box .fv-pros li, .finvelora-card-box .fv-cons li {
    margin-bottom: 6px;
    font-size: 0.9rem;
    position: relative;
    padding-left: 18px;
    color: #111;
    font-weight: 400;
}
.finvelora-card-box .fv-pros li::before {
    content: "•"; color: #28a745; position: absolute; left: 0; font-weight: bold; font-size: 1.4em; line-height: 1; top: -2px;
}
.finvelora-card-box .fv-cons li::before {
    content: "•"; color: #dc3545; position: absolute; left: 0; font-weight: bold; font-size: 1.4em; line-height: 1; top: -2px;
}

/* =========================================
   6. RESPONSIVE (Mobile)
   ========================================= */
.finvelora-card-box .fv-mobile-cta {
    display: none;
    margin-top: 1.5rem;
}

@media (max-width: 768px) {
    .finvelora-card-box .fv-card-header {
        flex-direction: column;
        align-items: flex-start;
        padding: 1.2rem;
    }
    
    .finvelora-card-box .fv-header-cta { display: none; }
    .finvelora-card-box .fv-mobile-cta { display: block; }
    
    .finvelora-card-box .fv-btn-full {
        width: 100%;
        display: block;
        padding: 1rem;
        font-size: 1.1rem;
    }
    
    /* Features in colonna */
    .finvelora-card-box .fv-features {
        grid-template-columns: 1fr;
        border-top: 1px solid #f0f0f0; 
    }
    .finvelora-card-box .fv-feature {
        border-right: none; 
        border-bottom: 1px solid #f0f0f0; 
        padding: 0.9rem 0;
        flex-direction: row; 
        justify-content: space-between;
        align-items: center;
    }
    .finvelora-card-box .fv-feature:last-child {
        border-bottom: none;
    }
    .finvelora-card-box .fv-feature-title { margin-bottom: 0; }

    /* Pro e Contro in colonna */
    .finvelora-card-box .fv-pros-cons-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}