/**
 * Product CTA Pattern Styles
 */

.product-attributes p {
    margin: 5px 0;
    padding: 5px 0;
    border-bottom: 1px solid #e0e0e0;
}

.product-attributes p:first-child {
    /* Remove border from first item */
    border-top: none;
}

.product-attributes p:last-child {
    /* Optionally remove border from last item for cleaner look */
    border-bottom: none;
}

.product-attribute-row {
    display: flex;
    margin-bottom: 8px;
    border-top: 1px solid #e0e0e0;
}

.product-attribute-row:first-child {
    border-top: none;
}

.product-attribute-label {
    width: 180px; /* Adjust this width based on your needs */
    min-width: 180px;
    font-weight: bold;
    padding-right: 10px;
}

.product-attribute-value {
    flex: 1;
}
