/* D3D Auto-SEO - Tabla de Especificaciones */

.product-specs-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    border: 1px solid #eee;
    font-size: 14px;
}

.product-specs-table thead th {
    background-color: #f8f8f8;
    color: #333;
    padding: 12px;
    text-align: left;
    border-bottom: 2px solid #ddd;
    font-weight: bold;
    text-transform: uppercase;
}

.product-specs-table td {
    padding: 10px 12px;
    border-bottom: 1px solid #eee;
    vertical-align: top;
}

.product-specs-table tr:nth-child(even) {
    background-color: #fafafa;
}

.product-specs-table td:first-child {
    font-weight: 600;
    width: 35%;
    color: #555;
}

@media screen and (max-width: 600px) {
    .product-specs-table thead {
        display: none;
    }
    .product-specs-table tr {
        display: block;
        margin-bottom: 10px;
        border: 1px solid #eee;
    }
    .product-specs-table td {
        display: block;
        width: 100%;
        box-sizing: border-box;
    }
    .product-specs-table td:first-child {
        background-color: #f8f8f8;
        border-bottom: 1px solid #ddd;
    }
}