/*
 * Styles for WooCommerce Archive Attributes Plugin
 */

.archive-product-specs {
    /* Adds a little space above the new section */
    margin-top: 10px; 
    
    /* Adds space below, before the "Add to Cart" button */
    margin-bottom: 5px; 
    
    /* Clean, smaller text */
    font-size: 0.9em; 
    line-height: 1.5;
    
    /* Ensures it doesn't go wider than the product box */
    width: 100%; 
}

.archive-product-specs .spec-item {
    /* Puts each item on its own line */
    display: block; 
    
    /* A little space between lines */
    margin-bottom: 3px; 
}

.archive-product-specs .spec-item strong {
    /* Makes the label bold, like "Comfort:" */
    color: #333;
}

.archive-product-specs .spec-item span {
    /* Styles the value, like "4/5" */
    color: #555;
}