/* ==========================
   === style.css content ===
   Save this as style.css in the same plugin folder
   ========================== */

/* Product Info - Simple List with Line Dividers */
.product-info-list {
    font-family: Arial, sans-serif;
    font-size: 13px;
    line-height: 1.5;
    color: #333;
    margin: 15px 0;
}

.product-info-title {
    font-size: 20px;
    font-weight: bold;
    color: #222;
    margin: 0 0 8px 0;
    padding-bottom: 4px;
}

/* Horizontal line below the title */
.product-info-title::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background-color: #ddd;
    margin-top: 6px;
}

.info-item {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px solid #eee;
}

.info-item:last-child {
    border-bottom: none;
}

.label {
    font-weight: bold;
    color: #222;
    min-width: 130px;
}

.value {
    color: #333;
    text-align: right;
    flex: 1;
    margin-left: 10px;
}

/* Force link color to #333, no underline */
.product-info-list .value a,
.product-info-list .value a:link,
.product-info-list .value a:visited {
    color: #333 !important;
    text-decoration: none !important;
}

/* No underline on hover or active */
.product-info-list .value a:hover,
.product-info-list .value a:active {
    color: #333 !important;
    text-decoration: none !important;
}
