/**
 * Product Technical Specifications - Compact & Elegant
 * MAX: 55 lines - Reduces excessive spacing for specs display
 */

.product-technical-specs {
    margin-top: 24px;
    padding: 16px 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #D4AF37;
}

.technical-specs-content {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
}

.technical-specs-content p {
    margin: 0 0 8px 0;
    padding-left: 12px;
    position: relative;
}

.technical-specs-content p:last-child {
    margin-bottom: 0;
}

/* Bullet point élégant */
.technical-specs-content p::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #D4AF37;
    font-weight: bold;
}

/* Responsive compact */
@media (max-width: 768px) {
    .product-technical-specs {
        padding: 12px 16px;
    }
    
    .technical-specs-content {
        font-size: 13px;
        line-height: 1.5;
    }
    
    .technical-specs-content p {
        margin-bottom: 6px;
    }
}
