/* BOO Comparison Styles */
.boo-analysis {
    margin-top: 30px;
    padding: 25px;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-radius: 12px;
    border: 3px solid #fbbf24;
}

.boo-analysis h3 {
    color: #92400e;
    margin-bottom: 20px;
    text-align: center;
    font-size: 1.4rem;
}

.boo-analysis h4 {
    color: #0c4a6e;
    margin: 25px 0 15px 0;
    text-align: center;
    font-size: 1.2rem;
}

.boo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.boo-box {
    background: white;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.boo-box.featured {
    background: #0c4a6e;
}

.boo-box.comparison {
    border: 2px solid #0891b2;
}

.boo-box.savings {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.boo-label {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 8px;
    font-weight: 600;
}

.boo-box.featured .boo-label {
    color: #fbbf24;
}

.boo-box.savings .boo-label {
    color: white;
}

.boo-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0c4a6e;
}

.boo-box.featured .boo-value {
    color: white;
}

.boo-box.savings .boo-value {
    color: #fbbf24;
    font-size: 1.5rem;
}

.boo-note {
    margin-top: 20px;
    padding: 15px;
    background: white;
    border-radius: 8px;
    border-left: 4px solid #fbbf24;
}

.boo-note p {
    margin: 0;
    color: #0c4a6e;
    font-weight: 600;
    font-size: 0.95rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .boo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .boo-analysis h3 {
        font-size: 1.2rem;
    }
    
    .boo-value {
        font-size: 1.1rem;
    }
}
