/**
 * Product Specifications Table Styles
 * Legendary Peptides Utilities
 */

.lpu-product-specs {
    margin: 20px 0;
    max-width: 100%;
}

.lpu-product-specs-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 1px;
    border: none;
    font-size: 14px;
    line-height: 1.4;
    overflow: hidden;
}

/* Blue left column (labels) */
.lpu-product-specs-table th.lpu-spec-label {
    background-color: #1a5dad;
    color: #ffffff;
    font-weight: 600;
    text-transform: uppercase;
    padding: 12px 15px;
    text-align: left;
    width: 35%;
    border: none;
    font-size: 13px;
    letter-spacing: 0.5px;
}

/* Green right column (values) - alternating shades */
.lpu-product-specs-table td.lpu-spec-value {
    padding: 12px 15px;
    text-align: left;
    border: none;
    font-weight: 500;
}

/* Round corners of the entire table */
.lpu-product-specs-table tr:first-child th.lpu-spec-label {
    border-radius: 8px 0 0 0;
}

.lpu-product-specs-table tr:first-child td.lpu-spec-value {
    border-radius: 0 8px 0 0;
}

.lpu-product-specs-table tr:last-child th.lpu-spec-label {
    border-radius: 0 0 0 8px;
}

.lpu-product-specs-table tr:last-child td.lpu-spec-value {
    border-radius: 0 0 8px 0;
}

/* Even rows - lighter green */
.lpu-product-specs-table tr.lpu-row-even td.lpu-spec-value {
    background-color: #e8f5e9;
    color: #2e7d32;
}

/* Odd rows - slightly darker green */
.lpu-product-specs-table tr.lpu-row-odd td.lpu-spec-value {
    background-color: #c8e6c9;
    color: #2e7d32;
}

/* Links in the specs table */
.lpu-product-specs-table td.lpu-spec-value a {
    color: #1a5dad;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.lpu-product-specs-table td.lpu-spec-value a:hover {
    color: #0d3a6e;
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .lpu-product-specs-table th.lpu-spec-label,
    .lpu-product-specs-table td.lpu-spec-value {
        padding: 10px 12px;
        font-size: 13px;
    }

    .lpu-product-specs-table th.lpu-spec-label {
        width: 40%;
    }
}
