/* ====== MM4 Product Specs Table Styling ====== */
#tab-mm4_specs table.shop_attributes {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 15px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

#tab-mm4_specs table.shop_attributes th,
#tab-mm4_specs table.shop_attributes td {
    padding: 14px 16px;
    border-bottom: 1px solid #eee;
}

#tab-mm4_specs table.shop_attributes th {
    background: #f5f7fa;
    text-align: left;
    font-weight: 600;
    color: #222;
    width: 35%;
}

#tab-mm4_specs table.shop_attributes td {
    color: #444;
}

#tab-mm4_specs table.shop_attributes tr:last-child th,
#tab-mm4_specs table.shop_attributes tr:last-child td {
    border-bottom: none;
}

/* ====== Responsive tweaks ====== */
@media (max-width: 600px) {
    #tab-mm4_specs table.shop_attributes th,
    #tab-mm4_specs table.shop_attributes td {
        display: block;
        width: 100%;
        text-align: left;
    }
    #tab-mm4_specs table.shop_attributes th {
        background: #f9f9f9;
        border-bottom: none;
    }
}